mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-17 09:07:10 +01:00
* Refactors Investigate Log * Speedup character loading * Optimise SSinstancing * Removes both path images * Optimises SSdebugview * CRLF --> LF * Update config/example/config.toml
52 lines
1.2 KiB
Plaintext
52 lines
1.2 KiB
Plaintext
// Everything in this file should be protected
|
|
GLOBAL_VAR(log_directory)
|
|
GLOBAL_PROTECT(log_directory)
|
|
GLOBAL_VAR(world_game_log)
|
|
GLOBAL_PROTECT(world_game_log)
|
|
GLOBAL_VAR(config_error_log)
|
|
GLOBAL_PROTECT(config_error_log)
|
|
GLOBAL_VAR(world_runtime_log)
|
|
GLOBAL_PROTECT(world_runtime_log)
|
|
GLOBAL_VAR(world_qdel_log)
|
|
GLOBAL_PROTECT(world_qdel_log)
|
|
GLOBAL_VAR(world_href_log)
|
|
GLOBAL_PROTECT(world_href_log)
|
|
GLOBAL_VAR(runtime_summary_log)
|
|
GLOBAL_PROTECT(runtime_summary_log)
|
|
GLOBAL_VAR(tgui_log)
|
|
GLOBAL_PROTECT(tgui_log)
|
|
GLOBAL_VAR(http_log)
|
|
GLOBAL_PROTECT(http_log)
|
|
GLOBAL_VAR(sql_log)
|
|
GLOBAL_PROTECT(sql_log)
|
|
GLOBAL_VAR(chat_debug_log)
|
|
GLOBAL_PROTECT(chat_debug_log)
|
|
GLOBAL_VAR(round_id)
|
|
GLOBAL_PROTECT(round_id)
|
|
GLOBAL_VAR(karma_log)
|
|
GLOBAL_PROTECT(karma_log)
|
|
|
|
#ifdef REFERENCE_TRACKING
|
|
GLOBAL_VAR(gc_log)
|
|
GLOBAL_PROTECT(gc_log)
|
|
#endif
|
|
|
|
GLOBAL_LIST_EMPTY(jobMax)
|
|
GLOBAL_PROTECT(jobMax)
|
|
GLOBAL_LIST_EMPTY(admin_log)
|
|
GLOBAL_PROTECT(admin_log)
|
|
GLOBAL_LIST_EMPTY(lastsignalers)
|
|
GLOBAL_PROTECT(lastsignalers)
|
|
GLOBAL_LIST_EMPTY(lawchanges)
|
|
GLOBAL_PROTECT(lawchanges)
|
|
|
|
GLOBAL_LIST_EMPTY(combatlog)
|
|
GLOBAL_PROTECT(combatlog)
|
|
GLOBAL_LIST_EMPTY(IClog)
|
|
GLOBAL_PROTECT(IClog)
|
|
GLOBAL_LIST_EMPTY(OOClog)
|
|
GLOBAL_PROTECT(OOClog)
|
|
|
|
GLOBAL_DATUM_INIT(logging, /datum/logging, new /datum/logging())
|
|
|