mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-12 18:51:53 +00:00
* 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>
16 lines
596 B
Plaintext
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)
|