(message: string, ...args: Arguments)
| 189 | }); |
| 190 | } |
| 191 | function logError(message: string, ...args: Arguments): void { |
| 192 | if (globalLoggingLevel <= LogLevel.Error) { |
| 193 | args = formatErrors(...args); |
| 194 | loggers.forEach((l) => l.error(message, ...args)); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | function logWarning(message: string, ...args: Arguments): void { |
| 199 | if (globalLoggingLevel <= LogLevel.Warning) { |
no test coverage detected