alpha wip

This commit is contained in:
2025-12-03 01:16:37 +01:00
parent 97e29d3d80
commit a572e6edce
104 changed files with 187 additions and 68 deletions

View File

@@ -0,0 +1,19 @@
import type { ILogger, LogContext } from '../../../application/ports/ILogger';
export class NoOpLogAdapter implements ILogger {
debug(_message: string, _context?: LogContext): void {}
info(_message: string, _context?: LogContext): void {}
warn(_message: string, _context?: LogContext): void {}
error(_message: string, _error?: Error, _context?: LogContext): void {}
fatal(_message: string, _error?: Error, _context?: LogContext): void {}
child(_context: LogContext): ILogger {
return this;
}
async flush(): Promise<void> {}
}