Added --debug and --verbose command line arguments
[supertux.git] / src / supertux / command_line_arguments.cpp
index 50d16ca..f69496c 100644 (file)
 #include "supertux/gameconfig.hpp"
 #include "supertux/main.hpp"
 #include "util/gettext.hpp"
-#include "util/log.hpp"
 #include "version.h"
 
 CommandLineArguments::CommandLineArguments() :
   m_action(NO_ACTION),
+  m_log_level(LOG_WARNING),
   fullscreen_size(),
   fullscreen_refresh_rate(),
   window_size(),
@@ -73,6 +73,8 @@ CommandLineArguments::print_help(const char* argv0)
                  "\n"
                  "Usage: %s [OPTIONS] [LEVELFILE]\n\n"
                  "CommandLineArguments:\n"
+                 "  --verbose                    Print verbose messages\n"
+                 "  --debug                      Print extra verbose messages\n"
                  "  -f, --fullscreen             Run in fullscreen mode\n"
                  "  -w, --window                 Run in window mode\n"
                  "  -g, --geometry WIDTHxHEIGHT  Run SuperTux in given resolution\n"
@@ -127,6 +129,17 @@ CommandLineArguments::parse_args(int argc, char** argv)
     {
       m_action = PRINT_DATADIR;
     }
+    else if (arg == "--debug")
+    {
+      m_log_level = LOG_DEBUG;
+    }
+    else if (arg == "--verbose")
+    {
+      if (m_log_level < LOG_INFO)
+      {
+        m_log_level = LOG_INFO;
+      }
+    }
     else if (arg == "--fullscreen" || arg == "-f")
     {
       use_fullscreen = true;