Type alias LoggerOptions

LoggerOptions: {
    context?: Record<string, unknown>;
    impl: LoggingImplementation | Console;
    logFormat: "json" | null;
    metricsCounter?: Counter<"level">;
    minLogLevel: LoggingLevels;
    name: string;
}

Type declaration

  • Optional context?: Record<string, unknown>
  • impl: LoggingImplementation | Console
  • logFormat: "json" | null
  • Optional metricsCounter?: Counter<"level">
  • minLogLevel: LoggingLevels
  • name: string