Skip to content

Commit 9312707

Browse files
committed
fix: bug
1 parent b5405ee commit 9312707

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/logUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Logger {
2828
}
2929

3030
private static formatMessage(color: string, label: string, message: unknown): string {
31-
return `\x1b[${color}m${label} ${message}\x1b[0m`;
31+
return `\x1b[${color}m${label} ${String(message)}\x1b[0m`;
3232
}
3333
}
3434

0 commit comments

Comments
 (0)