Moves from log_debug to log_runtime for non-fatal abberant states

This commit is contained in:
Crazylemon64
2016-08-23 17:03:52 -07:00
parent 1b4565d1c3
commit b633cf53af
21 changed files with 45 additions and 45 deletions
@@ -277,7 +277,7 @@ var/global/list/default_medbay_channels = list(
..()
/mob/living/automatedannouncer/proc/autocleanup()
log_debug("An announcer somehow managed to outlive the radio! Deleting! Area: [get_area(src)], Name: \"[name]\", Message: \"[message]\"")
log_runtime(EXCEPTION("An announcer somehow managed to outlive the radio! Deleting!"), src, list("Message: '[message]'"))
qdel(src)
// Interprets the message mode when talking into a radio, possibly returning a connection datum
@@ -576,5 +576,5 @@
if(islist(thing))
list_to_object(thing, src)
else
log_debug("Non-list thing: [thing]. We are a [name]")
log_runtime(EXCEPTION("Non-list thing found in storage/deserialize."), src, list("Thing: [thing]"))
..()