Skip to content

Commit cc46fed

Browse files
committed
fix logs
Signed-off-by: shmck <[email protected]>
1 parent 60d8807 commit cc46fed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/utils/logs.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ const _info = console.info;
77

88
console.error = function () {
99
// @ts-ignore
10-
_error(red.apply(console, arguments));
10+
_error(red.bold.apply(console, arguments));
1111
};
1212

1313
console.warn = function () {
1414
// @ts-ignore
15-
_warn(yellow.apply(console, arguments));
15+
_warn(yellow.bold.apply(console, arguments));
1616
};
1717

1818
console.info = function () {

0 commit comments

Comments
 (0)