Skip to content

Commit 3414574

Browse files
Update logger text
1 parent ebff1db commit 3414574

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/logger.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ class Logger {
3131

3232
warn(message: string, ...args: any[]) {
3333
if (this.shouldLog('warn')) {
34-
console.warn('[Live2D Widget][WARN ]', message, ...args);
34+
console.warn('[Live2D Widget][WARN]', message, ...args);
3535
}
3636
}
3737

3838
info(message: string, ...args: any[]) {
3939
if (this.shouldLog('info')) {
40-
console.log('[Live2D Widget][INFO ]', message, ...args);
40+
console.log('[Live2D Widget][INFO]', message, ...args);
4141
}
4242
}
4343

0 commit comments

Comments
 (0)