Files
Bubberstation/code/__HELPERS/logging/pda.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

12 lines
363 B
Plaintext

/// Logging for PDA messages sent
/proc/log_pda(text, list/data)
logger.Log(LOG_CATEGORY_PDA, text, data)
/// Logging for newscaster comments
/proc/log_comment(text, list/data)
logger.Log(LOG_CATEGORY_PDA_COMMENT, text, data)
/// Logging for chatting on modular computer channels
/proc/log_chat(text, list/data)
logger.Log(LOG_CATEGORY_PDA_CHAT, text, data)