We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e17bb commit 43c6f7aCopy full SHA for 43c6f7a
src/lib/utils.ts
@@ -869,12 +869,12 @@ export async function startSSEListener(ctx: Context) {
869
case 'DOTUIError':
870
if (data.buildId== ctx.build.id) {
871
errorCount++;
872
- ctx.log.info(chalk.red.bold(`Error in build: ${data.message}`));
+ ctx.log.info(chalk.red.bold(`Error: ${data.message}`));
873
}
874
break;
875
case 'DOTUIWarning':
876
877
- ctx.log.info(chalk.yellow.bold(`Warning in build: ${data.message}`));
+ ctx.log.info(chalk.yellow.bold(`Warning: ${data.message}`));
878
879
880
case 'error':
0 commit comments