Files
Aurora.3/code/_helpers/logging/subsystems/ZAS.dm
Fluffy 9d2f950e8e Fixed ZASDBG, Added ZAS logging subsystem, Removed FIREDBG and consolidated it under ZASDBG (#17386)
* Atomization

* asfsa

* sdaf

* sdfas

---------

Co-authored-by: FluffyGhost <FluffyGhost>
2023-09-23 19:25:13 +00:00

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