diff --git a/core/src/plugins/exec/deploy.ts b/core/src/plugins/exec/deploy.ts index edf03da223..6e98f79d1a 100644 --- a/core/src/plugins/exec/deploy.ts +++ b/core/src/plugins/exec/deploy.ts @@ -195,7 +195,7 @@ execDeploy.addHandler("deploy", async (params) => { }) if (result.outputLog) { - const prefix = `Finished deploying service ${chalk.white(action.name)}. Here is the output:` + const prefix = `Finished deploying ${chalk.white(action.name)}. Here is the output:` log.verbose( renderMessageWithDivider({ prefix, diff --git a/core/src/plugins/exec/run.ts b/core/src/plugins/exec/run.ts index 5d69fceb2e..2d64e0c048 100644 --- a/core/src/plugins/exec/run.ts +++ b/core/src/plugins/exec/run.ts @@ -49,8 +49,8 @@ execRun.addHandler("run", async ({ artifactsPath, log, action, ctx }) => { const { chalk } = sdk.util if (outputLog) { - const prefix = `Finished running task ${chalk.white(action.name)}. Here is the full output:` - log.verbose( + const prefix = `Finished running ${chalk.white(action.name)}. Here is the full output:` + log.info( renderMessageWithDivider({ prefix, msg: outputLog, diff --git a/core/src/plugins/exec/test.ts b/core/src/plugins/exec/test.ts index 6565b86ed1..5d2f883360 100644 --- a/core/src/plugins/exec/test.ts +++ b/core/src/plugins/exec/test.ts @@ -44,7 +44,7 @@ execTest.addHandler("run", async ({ log, action, artifactsPath, ctx }) => { if (result.outputLog) { const prefix = `Finished executing ${chalk.white(action.key())}. Here is the full output:` - log.verbose( + log.info( renderMessageWithDivider({ prefix, msg: result.outputLog,