Creates a new Logger instance with the specified configuration. This is independent of the global singleton logger.
Optional
Optional configuration for the logger
A new Logger instance
const customLogger = createLogger({ level: LogLevel.DEBUG, prefix: 'Custom' });customLogger.debug('This is a debug message'); Copy
const customLogger = createLogger({ level: LogLevel.DEBUG, prefix: 'Custom' });customLogger.debug('This is a debug message');
Creates a new Logger instance with the specified configuration. This is independent of the global singleton logger.