mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
12 lines
256 B
Plaintext
12 lines
256 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(diary, entry)
|
|
SEND_TEXT(world.log, text)
|