From 47cbf5a0d768e59b67ae62db38d2d73a82c45ff5 Mon Sep 17 00:00:00 2001 From: Thomas Boop <52323235+thboop@users.noreply.github.com> Date: Wed, 15 Jun 2022 09:28:43 -0400 Subject: [PATCH] Misc Tracing cleanup (#15) * cleanup final bits * fix import --- packages/hooklib/src/utils.ts | 2 -- packages/k8s/src/hooks/run-container-step.ts | 1 - 2 files changed, 3 deletions(-) diff --git a/packages/hooklib/src/utils.ts b/packages/hooklib/src/utils.ts index 9d97441..12b9c7c 100644 --- a/packages/hooklib/src/utils.ts +++ b/packages/hooklib/src/utils.ts @@ -1,4 +1,3 @@ -import * as core from '@actions/core' import * as events from 'events' import * as fs from 'fs' import * as os from 'os' @@ -13,7 +12,6 @@ export async function getInputFromStdin(): Promise { }) rl.on('line', line => { - core.debug(`Line from STDIN: ${line}`) input = line }) await events.default.once(rl, 'close') diff --git a/packages/k8s/src/hooks/run-container-step.ts b/packages/k8s/src/hooks/run-container-step.ts index adaf6b6..3fc1ee6 100644 --- a/packages/k8s/src/hooks/run-container-step.ts +++ b/packages/k8s/src/hooks/run-container-step.ts @@ -27,7 +27,6 @@ export async function runContainerStep( } let secretName: string | undefined = undefined - core.debug('') if (stepContainer.environmentVariables) { secretName = await createSecretForEnvs(stepContainer.environmentVariables) }