MCPcopy Create free account
hub / github.com/deepnote/vscode-deepnote / logWarning

Function logWarning

src/platform/logging/index.ts:198–203  ·  view source on GitHub ↗
(message: string, ...args: Arguments)

Source from the content-addressed store, hash-verified

196}
197
198function 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
205function logInfo(message: string, ...args: Arguments): void {
206 if (globalLoggingLevel <= LogLevel.Info) {

Callers 2

index.tsFile · 0.85
logToFunction · 0.85

Calls 3

formatErrorsFunction · 0.85
warnMethod · 0.65
forEachMethod · 0.45

Tested by

no test coverage detected