From: TimePath Date: Tue, 27 Oct 2015 09:28:47 +0000 (+1100) Subject: Logging: remove remaining uses of print and printf X-Git-Tag: xonotic-v0.8.2~1777 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2b648ce3fb116f3bdfa69e22348a989ecb000e4d;p=xonotic%2Fxonotic-data.pk3dir.git Logging: remove remaining uses of print and printf --- diff --git a/qcsrc/client/quickmenu.qc b/qcsrc/client/quickmenu.qc index 1f7be0c50..1d229279a 100644 --- a/qcsrc/client/quickmenu.qc +++ b/qcsrc/client/quickmenu.qc @@ -75,12 +75,12 @@ bool QuickMenu_Open(string mode, string submenu) if(mode == "file") { if(autocvar_hud_panel_quickmenu_file == "" || autocvar_hud_panel_quickmenu_file == "0") - printf("No file name is set in hud_panel_quickmenu_file, loading default quickmenu\n"); + LOG_INFO("No file name is set in hud_panel_quickmenu_file, loading default quickmenu\n"); else { fh = fopen(autocvar_hud_panel_quickmenu_file, FILE_READ); if(fh < 0) - printf("Couldn't open file \"%s\", loading default quickmenu\n", autocvar_hud_panel_quickmenu_file); + LOG_INFO("Couldn't open file \"%s\", loading default quickmenu\n", autocvar_hud_panel_quickmenu_file); } if(fh < 0) mode = "default"; @@ -152,7 +152,7 @@ bool QuickMenu_Open(string mode, string submenu) } else { - printf("Unrecognized mode %s\n", mode); + LOG_WARNING("Unrecognized mode %s\n", mode); return false; } @@ -286,7 +286,7 @@ bool QuickMenu_Page_Load(string target_submenu, int new_page) // printf("^1 skipping %s\n", s); } if(QuickMenu_Buffer_Index == QuickMenu_Buffer_Size) - printf("Couldn't find submenu \"%s\"\n", z_submenu); + LOG_WARNING("Couldn't find submenu \"%s\"\n", z_submenu); } // only the last page can contain up to QUICKMENU_MAXLINES entries @@ -859,9 +859,9 @@ void QuickMenu_Default(string target_submenu) if(target_submenu != "" && !target_submenu_found) { - printf("Couldn't find submenu \"%s\"\n", target_submenu); + LOG_WARNING("Couldn't find submenu \"%s\"\n", target_submenu); if(prvm_language != "en") - printf("^3Warning: submenu must be in English\n", target_submenu); + LOG_WARNING("^3Warning: submenu must be in English\n", target_submenu); QuickMenu_Buffer_Size = 0; } } diff --git a/qcsrc/server/mutators/mutator/gamemode_deathmatch.qc b/qcsrc/server/mutators/mutator/gamemode_deathmatch.qc index 5ebd7c6b6..d05bc18bd 100644 --- a/qcsrc/server/mutators/mutator/gamemode_deathmatch.qc +++ b/qcsrc/server/mutators/mutator/gamemode_deathmatch.qc @@ -18,7 +18,7 @@ REGISTER_MUTATOR(dm, false) MUTATOR_ONREMOVE { - print("This is a game type and it cannot be removed at runtime."); + error("This is a game type and it cannot be removed at runtime."); return -1; }