Skip to content

Commit 43c6f7a

Browse files
committed
changed log
1 parent 94e17bb commit 43c6f7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -869,12 +869,12 @@ export async function startSSEListener(ctx: Context) {
869869
case 'DOTUIError':
870870
if (data.buildId== ctx.build.id) {
871871
errorCount++;
872-
ctx.log.info(chalk.red.bold(`Error in build: ${data.message}`));
872+
ctx.log.info(chalk.red.bold(`Error: ${data.message}`));
873873
}
874874
break;
875875
case 'DOTUIWarning':
876876
if (data.buildId== ctx.build.id) {
877-
ctx.log.info(chalk.yellow.bold(`Warning in build: ${data.message}`));
877+
ctx.log.info(chalk.yellow.bold(`Warning: ${data.message}`));
878878
}
879879
break;
880880
case 'error':

0 commit comments

Comments
 (0)