MCPcopy
hub / github.com/visgl/deck.gl / debug

Function debug

modules/core/src/debug/index.ts:22–27  ·  view source on GitHub ↗
(eventType: string, arg1?: any, arg2?: any, arg3?: any)

Source from the content-addressed store, hash-verified

20}
21
22export default function debug(eventType: string, arg1?: any, arg2?: any, arg3?: any): void {
23 if (deckLog.level > 0 && loggers[eventType]) {
24 // Not using rest parameters to defeat perf hit from array construction
25 loggers[eventType].call(null, arg1, arg2, arg3);
26 }
27}

Callers 13

_postUpdateFunction · 0.85
setLayersMethod · 0.85
LayerManagerClass · 0.85
renderLayersMethod · 0.85
_initializeFunction · 0.85
_transferStateFunction · 0.85
_updateFunction · 0.85
_finalizeFunction · 0.85
setChangeFlagsFunction · 0.85
invalidateMethod · 0.85
invalidateAllMethod · 0.85
updateMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…