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

Function logError

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

Source from the content-addressed store, hash-verified

189 });
190}
191function 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
198function logWarning(message: string, ...args: Arguments): void {
199 if (globalLoggingLevel <= LogLevel.Warning) {

Callers 1

index.tsFile · 0.85

Calls 3

formatErrorsFunction · 0.85
errorMethod · 0.65
forEachMethod · 0.45

Tested by

no test coverage detected