get rid of the 'is in game -- showing quit message' message in the console

(downgrade it to debug level)
This commit is contained in:
uso 2008-02-01 06:01:18 +00:00
parent 947a527c84
commit 5252b564d8

View file

@ -831,7 +831,7 @@ void execute_command(display& disp, HOTKEY_COMMAND command, command_executor* ex
break;
case HOTKEY_QUIT_GAME: {
if(disp.in_game()) {
ERR_G << "is in game -- showing quit message\n";
DBG_G << "is in game -- showing quit message\n";
const int res = gui::dialog(disp,_("Quit"),_("Do you really want to quit?"),gui::YES_NO).show();
if(res == 0) {
throw end_level_exception(QUIT);