Update logs

This commit is contained in:
redphx
2024-05-05 11:54:59 +07:00
parent ba05eab47b
commit 4231d7e9c6
2 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ export class BxLogger {
}
static #log(color: TextColor, tag: string, ...args: any) {
console.log('%c' + BxLogger.#PREFIX, 'color:' + color + ';font-weight:bold;', tag, '-', ...args);
console.log(`%c${BxLogger.#PREFIX}`, `color:${color};font-weight:bold;`, tag, '//', ...args);
}
}