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

Method info

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

Source from the content-addressed store, hash-verified

61 }
62
63 public static info(category: string, msg: string, ...details: unknown[]): void {
64 if (Logger._shouldLog(LogLevel.Info)) {
65 Logger.log.info(category, msg, ...details);
66 }
67 }
68
69 public static error(category: string, msg: string, ...details: unknown[]): void {
70 if (Logger._shouldLog(LogLevel.Error)) {

Callers

nothing calls this directly

Calls 2

_shouldLogMethod · 0.80
infoMethod · 0.65

Tested by

no test coverage detected