mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-22 16:36:56 +01:00
53 lines
1.7 KiB
Plaintext
53 lines
1.7 KiB
Plaintext
/// Base directory at where logs are placed
|
|
GLOBAL_VAR(log_directory)
|
|
GLOBAL_PROTECT(log_directory)
|
|
/// General game log for anything that doesn't fit elsewhere
|
|
GLOBAL_VAR(world_game_log)
|
|
GLOBAL_PROTECT(world_game_log)
|
|
GLOBAL_VAR(world_asset_log)
|
|
GLOBAL_PROTECT(world_asset_log)
|
|
/// Runtimes go in here
|
|
GLOBAL_VAR(world_runtime_log)
|
|
GLOBAL_PROTECT(world_runtime_log)
|
|
/// qdel() performance logging
|
|
GLOBAL_VAR(world_qdel_log)
|
|
GLOBAL_PROTECT(world_qdel_log)
|
|
/// Attack logs/actions go in here
|
|
GLOBAL_VAR(world_attack_log)
|
|
GLOBAL_PROTECT(world_attack_log)
|
|
/// Href logs go in here
|
|
GLOBAL_VAR(world_href_log)
|
|
GLOBAL_PROTECT(world_href_log)
|
|
/// Current round ID. If unset, logs will use the old timestamp-directory format.
|
|
GLOBAL_VAR(round_id)
|
|
GLOBAL_PROTECT(round_id)
|
|
/// Sequential numerical round ID. Can be null if unset. Requires database.
|
|
GLOBAL_VAR(round_number)
|
|
GLOBAL_PROTECT(round_number)
|
|
/// Config loading error/config validation errors
|
|
GLOBAL_VAR(config_error_log)
|
|
GLOBAL_PROTECT(config_error_log)
|
|
/// logs sql events
|
|
GLOBAL_VAR(sql_error_log)
|
|
GLOBAL_PROTECT(sql_error_log)
|
|
/// Map error logging
|
|
GLOBAL_VAR(world_map_error_log)
|
|
GLOBAL_PROTECT(world_map_error_log)
|
|
GLOBAL_VAR(world_reagent_log)
|
|
GLOBAL_PROTECT(world_reagent_log)
|
|
/// Reagent logging
|
|
/// datum/controller/subsystem logging in general
|
|
GLOBAL_VAR(subsystem_log)
|
|
GLOBAL_PROTECT(subsystem_log)
|
|
GLOBAL_VAR(tgui_log)
|
|
GLOBAL_PROTECT(tgui_log)
|
|
|
|
SIMPLE_LOG_BOILERPLATE(inventory_log, inventory)
|
|
SIMPLE_LOG_BOILERPLATE(click_log, click)
|
|
|
|
/// Log associated with [/proc/log_suspicious_login()]
|
|
/// Intended to hold all logins that failed due to suspicious circumstances such as ban detection, CID randomisation etc.
|
|
GLOBAL_VAR(world_suspicious_login_log)
|
|
GLOBAL_PROTECT(world_suspicious_login_log)
|
|
|