fix logger

This commit is contained in:
2025-12-15 22:39:17 +01:00
parent 7a11daa878
commit 3b566c973d
110 changed files with 1413 additions and 903 deletions

View File

@@ -0,0 +1,6 @@
export interface Logger {
debug(message: string, context?: Record<string, any>): void;
info(message: string, context?: Record<string, any>): void;
warn(message: string, context?: Record<string, any>): void;
error(message: string, error?: Error, context?: Record<string, any>): void;
}

View File

@@ -1,3 +1,4 @@
export * from './UseCase';
export * from './AsyncUseCase';
export * from './Service';
export * from './Service';
export * from './Logger';