(message: string, ...args: Arguments)
| 196 | } |
| 197 | |
| 198 | function logWarning(message: string, ...args: Arguments): void { |
| 199 | if (globalLoggingLevel <= LogLevel.Warning) { |
| 200 | args = formatErrors(...args); |
| 201 | loggers.forEach((l) => l.warn(message, ...args)); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | function logInfo(message: string, ...args: Arguments): void { |
| 206 | if (globalLoggingLevel <= LogLevel.Info) { |
no test coverage detected