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

Function logInfo

src/background/utils/log.ts:6–11  ·  view source on GitHub ↗
(...args: any[])

Source from the content-addressed store, hash-verified

4declare const __TEST__: boolean;
5
6export function logInfo(...args: any[]): void {
7 if (__DEBUG__) {
8 console.info(...args);
9 sendLog('info', args);
10 }
11}
12
13export function logWarn(...args: any[]): void {
14 if (__DEBUG__) {

Callers 5

updateContentScriptMethod · 0.90
startMethod · 0.90
ExtensionClass · 0.90
saveUserSettingsMethod · 0.90
getMethod · 0.90

Calls 1

sendLogFunction · 0.90

Tested by

no test coverage detected