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

Method warning

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

Source from the content-addressed store, hash-verified

55 }
56
57 public static warning(category: string, msg: string, ...details: unknown[]): void {
58 if (Logger._shouldLog(LogLevel.Warning)) {
59 Logger.log.warning(category, msg, ...details);
60 }
61 }
62
63 public static info(category: string, msg: string, ...details: unknown[]): void {
64 if (Logger._shouldLog(LogLevel.Info)) {

Callers

nothing calls this directly

Calls 2

_shouldLogMethod · 0.80
warningMethod · 0.65

Tested by

no test coverage detected