MCPcopy
hub / github.com/darkreader/darkreader / logInfoCollapsed

Function logInfoCollapsed

src/background/utils/log.ts:20–27  ·  view source on GitHub ↗
(title: string, ...args: any[])

Source from the content-addressed store, hash-verified

18}
19
20export function logInfoCollapsed(title: string, ...args: any[]): void {
21 if (__DEBUG__) {
22 console.groupCollapsed(title);
23 console.log(...args);
24 console.groupEnd();
25 sendLog('info', args);
26 }
27}
28
29function logAssert(...args: any[]): void {
30 if ((__TEST__ || __DEBUG__)) {

Callers

nothing calls this directly

Calls 1

sendLogFunction · 0.90

Tested by

no test coverage detected