Files
silicons 4ab234f10c maploader / overmaps update - struct system, overmaps location bindings, misc backend improvements (#6403)
tl;dr level collections that can easily be logically restructured/moved
as necessary

will eventually be used for radio and overmaps location resolution.

this is the last part of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP/pull/4841
that has not yet been integrated.
this will be a draft for a while.

---------

Co-authored-by: LetterN <24603524+LetterN@users.noreply.github.com>
2025-11-06 17:49:23 -08:00

36 lines
1.1 KiB
Plaintext

/datum/controller/subsystem/proc/subsystem_log(msg)
return log_subsystem(name, msg)
/datum/controller/subsystem/proc/emit_debug_log(msg)
subsystem_log("debug: [msg]")
/datum/controller/subsystem/proc/emit_info_log(msg)
subsystem_log("info: [msg]")
/datum/controller/subsystem/proc/emit_warn_log(msg)
subsystem_log("warn: [msg]")
/datum/controller/subsystem/proc/emit_error_log(msg)
subsystem_log("error: [msg]")
/datum/controller/subsystem/proc/emit_fatal_log(msg)
subsystem_log("fatal: [msg]")
/datum/controller/subsystem/proc/emit_init_debug(msg)
subsystem_log("init-debug: [msg]")
/datum/controller/subsystem/proc/emit_init_info(msg)
subsystem_log("init-info: [msg]")
/datum/controller/subsystem/proc/emit_init_warn(msg)
subsystem_log("init-warn: [msg]")
message_admins("[src] load warning: [msg]")
/datum/controller/subsystem/proc/emit_init_error(msg)
subsystem_log("init-error: [msg]")
message_admins(SPAN_BOLDANNOUNCE("Init error - [src]: [msg]"))
/datum/controller/subsystem/proc/emit_init_fatal(msg)
subsystem_log("init-fatal: [msg]")
to_chat(world, SPAN_BOLDANNOUNCE("Init fatal - [src]: [msg]"))