This commit is contained in:
2025-12-14 18:11:59 +01:00
parent acc15e8d8d
commit 217337862c
91 changed files with 5919 additions and 1999 deletions

View File

@@ -0,0 +1,20 @@
import { ILogger } from './ILogger';
export class ConsoleLogger implements ILogger {
debug(message: string, ...args: any[]): void {
console.debug(message, ...args);
}
info(message: string, ...args: any[]): void {
console.info(message, ...args);
}
warn(message: string, ...args: any[]): void {
console.warn(message, ...args);
}
error(message: string, ...args: any[]): void {
console.error(message, ...args);
}
}