mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 12:02:31 +01:00
* sdf * fsda * fuck * fuck2 * toolz * sdaf * sdfa * saf * sdfa * sdfa * sdf * sdfa * temp rename * temp rename * temp rename * sdaf * the pain is immensurable in the land of byond * the curse of rah * safd * sadf * sadf * gf * asf * fssdfa * sfd * sadf * sfda * brah * brah * it's easier for you to fix this * ffs * brah * brah
18 lines
605 B
Plaintext
18 lines
605 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 (GLOB.config.logsettings["log_subsystems_zas"])
|
|
WRITE_LOG(GLOB.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 (GLOB.config.logsettings["log_subsystems_zas_debug"])
|
|
WRITE_LOG(GLOB.config.logfiles["log_subsystems_zas_debug"], "ZAS-Debug: [text]")
|
|
#endif
|