Files
VOREStation/code/_helpers/logging/debug.dm
Selis 28e969778c code/global.dm => code/_global_vars/ (#17244)
* 1

* Full conversion

* .

* .

---------

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
2025-04-21 05:55:25 -04:00

12 lines
261 B
Plaintext

/// Logging for config errors
/// Rarely gets called; just here in case the config breaks.
/proc/log_config(text, list/data)
var/entry = "CONFIG: "
entry += text
entry += " | DATA: "
entry += data
WRITE_LOG(GLOB.diary, entry)
SEND_TEXT(world.log, text)