Skip to content

Commit ad3d318

Browse files
committed
fix: make webpack output not look like errors
1 parent e539932 commit ad3d318

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/src/services/DevWatcherService.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ class DevWatcherService extends BaseService {
8989
log_ (name, isErr, line) {
9090
let txt = `[${name}:`;
9191
txt += isErr
92-
? `\x1B[31;1merr\x1B[0m`
93-
: `\x1B[32;1mout\x1B[0m`;
92+
? `\x1B[34;1m2\x1B[0m`
93+
: `\x1B[32;1m1\x1B[0m`;
9494
txt += '] ' + line;
9595
this.log.info(txt);
9696
}

0 commit comments

Comments
 (0)