Files
Bubberstation/code/__HELPERS/~skyrat_helpers/logging.dm
SkyratBot 649c250702 [MIRROR] JSON Logging Take Two [MDB IGNORE] (#21329)
* JSON Logging Take Two

* Fixes the conflicts and makes our logs all comply with the new logging framework, hopefully.

---------

Co-authored-by: Zephyr <12817816+ZephyrTFA@users.noreply.github.com>
Co-authored-by: GoldenAlpharex <jerego1234@hotmail.com>
2023-05-28 18:10:07 -04:00

16 lines
596 B
Plaintext

/// This logs subtle emotes in game.log
/proc/log_subtle(text, list/data)
logger.Log(LOG_CATEGORY_GAME_SUBTLE, text, data)
/// This logs subtler emotes in game.log, if the conflig flag in config\skyrat\skyrat_config.txt is true.
/proc/log_subtler(text, list/data)
logger.Log(LOG_CATEGORY_GAME_SUBTLER, text, data)
/// This logs character creator changes in debug.log
/proc/log_creator(text, list/data)
logger.Log(LOG_CATEGORY_DEBUG_CHARACTER_CREATOR, text, data)
/// Logging for borer evolutions
/proc/log_borer_evolution(text, list/data)
logger.Log(LOG_CATEGORY_UPLINK_BORER, text, data)