(message: string, attributes?: ExtendedAttributes)
| 31 | * @throws {Error} if no active logger is found |
| 32 | */ |
| 33 | export function info(message: string, attributes?: ExtendedAttributes) { |
| 34 | getActiveLogger().info(message, attributes) |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Logs a warning message using the active logger. |
no test coverage detected