Files
Aurora.3/code/__HELPERS/logging/subsystems/mapfinalization.dm
Fluffy e867030c2e Update MC (#18112)
* 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
2024-01-06 17:03:57 +01:00

19 lines
648 B
Plaintext

/proc/log_subsystem_mapfinalization(text)
#if defined(UNIT_TEST)
LOG_GITHUB_NOTICE("SSMapfinalization: [text]")
#else
if (GLOB.config?.logsettings["log_subsystems_mapfinalization"])
WRITE_LOG(GLOB.config.logfiles["world_subsystems_mapfinalization_log"], "SSMapfinalization: [text]")
#endif
/**
* This is used to highlight errors in github
*/
/proc/log_subsystem_mapfinalization_error(text)
#if defined(UNIT_TEST)
LOG_GITHUB_ERROR("SSMapfinalization: [text]")
#else
if (GLOB.config?.logsettings["log_subsystems_mapfinalization"])
WRITE_LOG(GLOB.config.logfiles["world_subsystems_mapfinalization_log"], "SSMapfinalization: [text]")
#endif