From ba1b3374333324262d870d1d0176f1a2ce10556e Mon Sep 17 00:00:00 2001 From: Adina Parpalita Date: Tue, 27 Apr 2021 16:41:32 +0300 Subject: [PATCH] rename env variable (#6956) * rename env variable LOG_LEVEL to E2E_LOG_LEVEL in order to be consistent with the rest of the apps * revert part of the renaming --- e2e/test.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/test.config.js b/e2e/test.config.js index 46e4709f35..edd4287d96 100644 --- a/e2e/test.config.js +++ b/e2e/test.config.js @@ -34,10 +34,10 @@ const REDIRECT_URI = process.env.REDIRECT_URI || "/"; const REDIRECT_URI_LOGOUT = process.env.REDIRECT_URI_LOGOUT || "#/logout"; const EXTERNAL_ACS_HOST = process.env.EXTERNAL_ACS_HOST; -const LOG_LEVEL = process.env.LOG_LEVEL || 'ERROR'; +const E2E_LOG_LEVEL = process.env.E2E_LOG_LEVEL || 'ERROR'; const appConfig = { - "log": LOG_LEVEL, + "log": E2E_LOG_LEVEL, "ecmHost": HOST_ECM, "bpmHost": HOST_BPM, "identityHost": `${HOST_SSO}/auth/admin/realms/alfresco`,