From df13e9c37aa87f57ebd2b59f2acf98149b4d544a Mon Sep 17 00:00:00 2001 From: Koncord Date: Sat, 17 Sep 2016 13:59:00 +0800 Subject: [PATCH] Fix verbose log level in server --- apps/openmw-mp/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw-mp/main.cpp b/apps/openmw-mp/main.cpp index 83a6f2a6b..565744327 100644 --- a/apps/openmw-mp/main.cpp +++ b/apps/openmw-mp/main.cpp @@ -105,8 +105,8 @@ int main(int argc, char *argv[]) loadSettings(mgr); int logLevel = mgr.getInt("loglevel", "General"); - if (logLevel < Log::LOG_INFO || logLevel > Log::LOG_FATAL) - logLevel = Log::LOG_INFO; + if (logLevel < Log::LOG_VERBOSE || logLevel > Log::LOG_FATAL) + logLevel = Log::LOG_VERBOSE; // Some objects used to redirect cout and cerr // Scope must be here, so this still works inside the catch block for logging exceptions