From c66f3b8856521f8f0280e5e93386ce7842a0995e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Fri, 3 Dec 2021 03:32:52 -0600 Subject: [PATCH] chore(repo): align verbose logging parameter names (#7984) --- .github/workflows/e2e-matrix.yml | 2 +- e2e/utils/index.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-matrix.yml b/.github/workflows/e2e-matrix.yml index 6ee424b6bb..5b44246388 100644 --- a/.github/workflows/e2e-matrix.yml +++ b/.github/workflows/e2e-matrix.yml @@ -159,7 +159,7 @@ jobs: SELECTED_PM: ${{ matrix.package_manager }} npm_config_registry: http://localhost:4872 YARN_REGISTRY: http://localhost:4872 - VERBOSE_OUTPUT: ${{ 'true' }} + NX_VERBOSE_LOGGING: ${{ 'true' }} NX_E2E_SKIP_BUILD_CLEANUP: ${{ 'true' }} NX_CACHE_DIRECTORY: ${{ matrix.os-cache-dir }} diff --git a/e2e/utils/index.ts b/e2e/utils/index.ts index aaca9e8209..14b57b0a02 100644 --- a/e2e/utils/index.ts +++ b/e2e/utils/index.ts @@ -438,7 +438,7 @@ export function runCLI( maxBuffer: 50 * 1024 * 1024, }) ); - if (process.env.VERBOSE_OUTPUT) { + if (process.env.NX_VERBOSE_LOGGING) { logInfo(`result of running: ${command}`, r); } @@ -490,7 +490,7 @@ export function runCommand(command: string): string { }, encoding: 'utf-8', }).toString(); - if (process.env.VERBOSE_OUTPUT) { + if (process.env.NX_VERBOSE_LOGGING) { console.log(r); } return r;