KF2-YetAnotherScoreboard/ScoreboardExt/Logger.uci

9 lines
443 B
Plaintext
Raw Normal View History

2021-06-12 20:11:37 +00:00
`define scelog(text, cond) `log(`text, `cond, 'ScoreboardExt')
`define info(text) `scelog("[INFO]"@`text, true)
`define warning(text) `scelog("[WARNING]"@`text, true)
`define error(text) `scelog("[ERROR]"@`text, true)
2021-06-13 00:02:17 +00:00
`define debug(text) `scelog("[DEBUG]"@`text, `bEnableDebug)
2021-06-12 20:11:37 +00:00
`define callstack() `scelog("[CALLSTACK]"@`Location@"ROLE="$ROLE, `bEnableCallstack)
`define callstack_static(text) `scelog("[CALLSTACK]"@`text, `bEnableCallstack)