Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x 1x 1x 16x 16x 16x 10x 10x 16x 16x 4x 4x 4x 4x 16x 16x 1x 1x 16x 1x 1x 16x 16x | import { white } from "ansis";
export class Logger {
constructor(private readonly prefix: string) {}
info(...logData: string[]): void {
console.log([white.bgGreen` ${this.prefix}: `, ...logData].join(" "));
}
warn(...logData: string[]) {
console.log(
[white.bgYellow` ${this.prefix} WARNING: `, ...logData].join(" "),
);
}
error(...logData: string[]) {
console.error([white.bgRed` ${this.prefix} ERROR: `, ...logData].join(" "));
}
}
export function createLogger(prefix: string) {
return new Logger(prefix);
}
|