mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-21 23:52:12 +00:00
18 lines
585 B
Plaintext
18 lines
585 B
Plaintext
/proc/log_subsystem_zas(text)
|
|
// SUppress this in case of unit tests, it's essentially useless
|
|
#if defined(UNIT_TEST)
|
|
LOG_GITHUB_DEBUG("ZAS: [text]")
|
|
#else
|
|
if (config.logsettings["log_subsystems_zas"])
|
|
WRITE_LOG(config.logfiles["log_subsystems_zas"], "ZAS: [text]")
|
|
#endif
|
|
|
|
/proc/log_subsystem_zas_debug(text)
|
|
// SUppress this in case of unit tests, it's essentially useless
|
|
#if defined(UNIT_TEST)
|
|
LOG_GITHUB_DEBUG("ZAS-Debug: [text]")
|
|
#else
|
|
if (config.logsettings["log_subsystems_zas_debug"])
|
|
WRITE_LOG(config.logfiles["log_subsystems_zas_debug"], "ZAS-Debug: [text]")
|
|
#endif
|