Skip to content

Commit 1a2ba2f

Browse files
chore: Update logging level for copy completion time
1 parent c3703f4 commit 1a2ba2f

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

packages/k8s/src/hooks/run-script-step.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ import { execPodStep, copyToPod } from '../k8s'
77
import { writeEntryPointScript } from '../k8s/utils'
88
import { JOB_CONTAINER_NAME } from './constants'
99

10-
process.on('unhandledRejection', (reason, promise) => {
11-
core.error(`Unhandled Rejection at: ${promise}, reason: ${reason}`)
12-
// Handle the rejection or log more details here
13-
})
14-
1510
export async function runScriptStep(
1611
args: RunScriptStepArgs,
1712
state,

packages/k8s/src/k8s/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ export async function copyToPod(
248248

249249
const endTime = Date.now()
250250
const elapsedTime = endTime - startTime
251-
core.info(`Copy completed in ${elapsedTime} milliseconds`)
251+
core.debug(`Copy completed in ${elapsedTime} milliseconds`)
252252
}
253253

254254
export async function execPodStep(

0 commit comments

Comments
 (0)