fix: make webpack output not look like errors

This commit is contained in:
KernelDeimos 2024-07-18 14:50:53 -04:00
parent e539932070
commit ad3d318d07

View File

@ -89,8 +89,8 @@ class DevWatcherService extends BaseService {
log_ (name, isErr, line) {
let txt = `[${name}:`;
txt += isErr
? `\x1B[31;1merr\x1B[0m`
: `\x1B[32;1mout\x1B[0m`;
? `\x1B[34;1m2\x1B[0m`
: `\x1B[32;1m1\x1B[0m`;
txt += '] ' + line;
this.log.info(txt);
}