mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-21 23:52:12 +00:00
* Initial * Cleared duplicates * More work, get rid of log_error * more * log_debug() to macro LOG_DEBUG * More work * More * Guh * Maybe better? * More work * gah * Dear lord * *inserts swears here* * gdi * More work * More * dear lord * fsdfsdafs * rsdaf * sadfasf * sdafsad * fgsd * small fuckup fix * jfsd * sdafasf * gdi * sdfa * sfdafgds * sdafasdvf * sdfasdfg * sdfsga * asdf * dsfasfsagf * ihibhbjh * fsadf * adfas * sdafsad * sdfasd * fsda * vhb * asf * for arrow * removed source file-line logging, added header for tgui
19 lines
628 B
Plaintext
19 lines
628 B
Plaintext
/proc/log_subsystem_mapfinalization(text)
|
|
#if defined(UNIT_TEST)
|
|
LOG_GITHUB_NOTICE("SSMapfinalization: [text]")
|
|
#else
|
|
if (config?.logsettings["log_subsystems_mapfinalization"])
|
|
WRITE_LOG(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 (config?.logsettings["log_subsystems_mapfinalization"])
|
|
WRITE_LOG(config.logfiles["world_subsystems_mapfinalization_log"], "SSMapfinalization: [text]")
|
|
#endif
|