This commit is contained in:
2025-12-03 16:33:12 +01:00
parent a572e6edce
commit c0fdae3d3c
157 changed files with 7824 additions and 1042 deletions

View File

@@ -1,4 +1,4 @@
import type { ILogger, LogContext } from '../../../application/ports/ILogger';
import type { ILogger, LogContext } from '../../../automation-application/ports/ILogger';
export class NoOpLogAdapter implements ILogger {
debug(_message: string, _context?: LogContext): void {}

View File

@@ -1,4 +1,4 @@
import type { ILogger, LogContext, LogLevel } from '../../../application/ports/ILogger';
import type { ILogger, LogContext, LogLevel } from '../../../automation-application/ports/ILogger';
import { loadLoggingConfig, type LoggingEnvironmentConfig } from '../../config/LoggingConfig';
const LOG_LEVEL_PRIORITY: Record<LogLevel, number> = {