mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-20 15:12:19 +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
22 lines
569 B
Plaintext
22 lines
569 B
Plaintext
/// Logging for mapping
|
|
/proc/log_mapping(text, skip_world_log)
|
|
#if defined(UNIT_TEST)
|
|
LOG_GITHUB_NOTICE("Mapping: [text]")
|
|
#else
|
|
WRITE_LOG(config.logfiles["world_map_error_log"], "MAPPING: [text]")
|
|
if(skip_world_log)
|
|
return
|
|
SEND_TEXT(world.log, "MAPPING: [text]")
|
|
#endif
|
|
|
|
/// Logging for mapping errors
|
|
/proc/log_mapping_error(text, skip_world_log)
|
|
#if defined(UNIT_TEST)
|
|
LOG_GITHUB_ERROR("Mapping: [text]")
|
|
#else
|
|
WRITE_LOG(config.logfiles["world_map_error_log"], "MAPPING: [text]")
|
|
if(skip_world_log)
|
|
return
|
|
SEND_TEXT(world.log, "MAPPING: [text]")
|
|
#endif
|