mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-20 20:37:34 +01:00
e867030c2e
* 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
19 lines
538 B
Plaintext
19 lines
538 B
Plaintext
/proc/log_module_ruins(text)
|
|
#if defined(UNIT_TEST)
|
|
LOG_GITHUB_NOTICE("Ruins: [text]")
|
|
#else
|
|
if (GLOB.config?.logsettings["log_modules_ruins"])
|
|
WRITE_LOG(GLOB.config.logfiles["world_modules_ruins_log"], "Ruins: [text]")
|
|
#endif
|
|
|
|
/**
|
|
* Used to highlight warnings on Github during Unit Tests
|
|
*/
|
|
/proc/log_module_ruins_warning(text)
|
|
#if defined(UNIT_TEST)
|
|
LOG_GITHUB_WARNING("Ruins: [text]")
|
|
#else
|
|
if (GLOB.config?.logsettings["log_modules_ruins"])
|
|
WRITE_LOG(GLOB.config.logfiles["world_modules_ruins_log"], "Ruins: [text]")
|
|
#endif
|