del logging again

This commit is contained in:
D3athrow
2015-02-01 22:53:27 -06:00
parent a30d6f5742
commit f89419da72
2 changed files with 11 additions and 10 deletions

View File

@@ -1128,12 +1128,12 @@ Pressure: [env.return_pressure()]"}
F << "[typepath],[ns]"
usr << "\blue Dumped to machine_profiling.csv."
F = file("object_profiling.csv")
fdel(F)
F << "type,nanoseconds"
var/FF = file("object_profiling.csv")
fdel(FF)
FF << "type,nanoseconds"
for(var/typepath in object_profiling)
var/ns = object_profiling[typepath]
F << "[typepath],[ns]"
FF << "[typepath],[ns]"
usr << "\blue Dumped to object_profiling.csv."
#endif