MCPcopy Index your code
hub / github.com/darkreader/darkreader / logInfoCollapsed

Function logInfoCollapsed

src/inject/utils/log.ts:32–38  ·  view source on GitHub ↗
(title: string, ...args: any[])

Source from the content-addressed store, hash-verified

30}
31
32export function logInfoCollapsed(title: string, ...args: any[]): void {
33 if (__DEBUG__) {
34 console.groupCollapsed(`DARK READER ${title}`);
35 console.log(...args);
36 console.groupEnd();
37 }
38}
39
40function logAssert(...args: any[]): void {
41 if ((__TEST__ || __DEBUG__)) {

Callers 1

onMessageFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected