(module: string, config?: LoggerConfig)
| 369 | * @returns A Logger instance |
| 370 | */ |
| 371 | export function createLogger(module: string, config?: LoggerConfig): Logger { |
| 372 | return new Logger(module, config) |
| 373 | } |
| 374 | |
| 375 | export type { RequestContext } from './request-context' |
| 376 | export { getRequestContext, runWithRequestContext } from './request-context' |
no outgoing calls
no test coverage detected