MCPcopy Create free account
hub / github.com/CoderLine/alphaTab / debug

Method debug

packages/alphatab/src/Logger.ts:51–55  ·  view source on GitHub ↗
(category: string, msg: string, ...details: unknown[])

Source from the content-addressed store, hash-verified

49 }
50
51 public static debug(category: string, msg: string, ...details: unknown[]): void {
52 if (Logger._shouldLog(LogLevel.Debug)) {
53 Logger.log.debug(category, msg, ...details);
54 }
55 }
56
57 public static warning(category: string, msg: string, ...details: unknown[]): void {
58 if (Logger._shouldLog(LogLevel.Warning)) {

Callers

nothing calls this directly

Calls 2

_shouldLogMethod · 0.80
debugMethod · 0.65

Tested by

no test coverage detected