From 9557ae66956e59c390571bdf48cb9cdf9c0a6bec Mon Sep 17 00:00:00 2001 From: rdbsolutions Date: Thu, 23 Sep 2021 07:09:51 +0100 Subject: [PATCH] debug for environments deployement --- actions/index.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/actions/index.js b/actions/index.js index 8734b0a6..962a5ae7 100644 --- a/actions/index.js +++ b/actions/index.js @@ -39,6 +39,14 @@ export const getSASToken = () => { "https://" + m_ResourceURI + "/" + m_Path + "/" ); + console.log("///////////////////////"); + console.log("WEBAPI_URL: " + WEBAPI_URL); + console.log("m_ResourceURI: " + m_ResourceURI); + console.log("m_Path: " + m_Path); + console.log("m_SasKey: " + m_SasKey); + console.log("m_SasKeyName: " + m_SasKeyName); + console.log("///////////////////////"); + var t0 = new Date(1970, 1, 1, 0, 0, 0, 0); var t1 = new Date(); var expireInSeconds = @@ -62,6 +70,9 @@ export const getSASToken = () => { "&skn=" + m_SasKeyName; + console.log("///////////////////////"); + console.log("token: " + token); + console.log("///////////////////////"); return token; };