mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-18 21:53:22 +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>
9 lines
269 B
Plaintext
9 lines
269 B
Plaintext
/// Log to dynamic and message admins
|
|
/datum/game_mode/dynamic/proc/log_dynamic_and_announce(text)
|
|
message_admins("DYNAMIC: [text]")
|
|
log_dynamic("[text]")
|
|
|
|
/// Logging for dynamic procs
|
|
/proc/log_dynamic(text, list/data)
|
|
logger.Log(LOG_CATEGORY_DYNAMIC, text, data)
|