adds the del() log to world.log at roundend and allows the runtime condenser to parse and condense it

This commit is contained in:
duncathan
2015-10-05 18:52:44 -06:00
parent 52e072ceb3
commit e2ed83b6a5
3 changed files with 77 additions and 3 deletions
+8
View File
@@ -431,6 +431,14 @@ var/datum/subsystem/ticker/ticker
for(var/i in total_antagonists)
log_game("[i]s[total_antagonists[i]].")
//Adds the del() log to world.log in a format condensable by the runtime condenser found in tools
if(SSgarbage.didntgc.len)
var/dellog = ""
for(var/path in SSgarbage.didntgc)
dellog += "Path : [path] \n"
dellog += "Failures : [SSgarbage.didntgc[path]] \n"
world.log << dellog
return 1
/datum/subsystem/ticker/proc/send_random_tip()