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

Function logTrace

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

Source from the content-addressed store, hash-verified

213 }
214}
215function logTrace(message: string, ...args: Arguments): void {
216 if (globalLoggingLevel <= LogLevel.Trace) {
217 loggers.forEach((l) => l.trace(message, ...args));
218 }
219}
220function logInfoIfCI(msg: () => [message: string, ...args: string[]] | string): void;
221function logInfoIfCI(message: string, ...args: string[]): void;
222function logInfoIfCI(arg1: any, ...args: Arguments): void {

Callers 1

index.tsFile · 0.85

Calls 2

traceMethod · 0.65
forEachMethod · 0.45

Tested by

no test coverage detected