(message: string, attributes?: ExtendedAttributes)
| 42 | * @throws {Error} if no active logger is found |
| 43 | */ |
| 44 | export function warn(message: string, attributes?: ExtendedAttributes) { |
| 45 | getActiveLogger().warn(message, attributes) |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Logs an error message using the active logger. |
no test coverage detected