Files
gridpilot.gg/packages/automation/application/ports/ILogger.ts
2025-12-14 18:11:59 +01:00

8 lines
360 B
TypeScript

export interface ILogger {
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;
verbose?(message: string, context?: Record<string, any>): void;
}