From 5c33787213415c26bba668f53187f21ede60e999 Mon Sep 17 00:00:00 2001
From: Norihiro Watanabe <norihiro.watanabe@ufz.de>
Date: Tue, 14 Jun 2016 12:23:30 +0200
Subject: [PATCH] set logog level to all instead of aborting when incorrect
 logog level is specified

---
 Applications/ApplicationsLib/LogogSetup.h | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/Applications/ApplicationsLib/LogogSetup.h b/Applications/ApplicationsLib/LogogSetup.h
index 2a67d5c638b..88b6a81ba71 100644
--- a/Applications/ApplicationsLib/LogogSetup.h
+++ b/Applications/ApplicationsLib/LogogSetup.h
@@ -10,12 +10,12 @@
 #ifndef APPLICATIONSLIB_LOGOGSETUP_H_
 #define APPLICATIONSLIB_LOGOGSETUP_H_
 
-#include <logog/include/logog.hpp>
-
 #include <map>
 #include <memory>
 #include <string>
 
+#include <logog/include/logog.hpp>
+
 #include "BaseLib/LogogSimpleFormatter.h"
 
 namespace ApplicationsLib
@@ -69,14 +69,12 @@ public:
         };
 
 
-        //LOGOG_LEVEL_TYPE level_type;
+        LOGOG_LEVEL_TYPE level_type = LOGOG_LEVEL_ALL;
         if(foo.find(level) != foo.end())
-            setLevel(foo[level]);
+            level_type = foo[level];
         else
-        {
-            ERR("%s is not a valid log level! Aborting.", level.c_str());
-            std::abort();
-        }
+            WARN("'%s' is not a valid log level! 'all' is used instead.", level.c_str());
+        setLevel(level_type);
     }
 
 private:
-- 
GitLab