MCPcopy Index your code
hub / github.com/github/copilot-sdk / logDebugTiming

Method logDebugTiming

nodejs/src/client.ts:547–552  ·  view source on GitHub ↗
(message: string, startMs: number)

Source from the content-addressed store, hash-verified

545 }
546
547 private logDebugTiming(message: string, startMs: number): void {
548 const level = this.options.logLevel?.toLowerCase();
549 if (level === "debug" || level === "all") {
550 process.stderr.write(`[copilot-sdk] ${message}. Elapsed=${Date.now() - startMs}ms\n`);
551 }
552 }
553
554 private logDebug(message: string): void {
555 const level = this.options.logLevel?.toLowerCase();

Callers 1

stopMethod · 0.95

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected