summaryrefslogtreecommitdiffstats
path: root/contrib/src
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-06-16 14:51:27 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-06-16 14:51:27 (GMT)
commitfa6b4f074d4be04d913d8b7dc062920341c34ecb (patch)
tree83ae475b184a3b1bccca2a69addcefb6c12d924e /contrib/src
parented6aee05e2843be65c4ab445d79e70dc8dacc07b (diff)
downloaduscxml-fa6b4f074d4be04d913d8b7dc062920341c34ecb.zip
uscxml-fa6b4f074d4be04d913d8b7dc062920341c34ecb.tar.gz
uscxml-fa6b4f074d4be04d913d8b7dc062920341c34ecb.tar.bz2
Fixed issue86 and some more bug fixes
Diffstat (limited to 'contrib/src')
-rw-r--r--contrib/src/easylogging++.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/src/easylogging++.h b/contrib/src/easylogging++.h
index 7378d41..b00f074 100644
--- a/contrib/src/easylogging++.h
+++ b/contrib/src/easylogging++.h
@@ -2611,9 +2611,9 @@ public:
setGlobally(ConfigurationType::Format, std::string("%datetime %level %fbase:%line: %msg"), true);
set(Level::Debug, ConfigurationType::Format, std::string("%datetime %level [%logger] [%user@%host] [%func] [%loc] %msg"));
// INFO and WARNING are set to default by Level::Global
- set(Level::Error, ConfigurationType::Format, std::string("%datetime %level [%logger] %msg"));
- set(Level::Fatal, ConfigurationType::Format, std::string("%datetime %level [%logger] %msg"));
- set(Level::Verbose, ConfigurationType::Format, std::string("%datetime %level-%vlevel [%logger] %msg"));
+ set(Level::Error, ConfigurationType::Format, std::string("%datetime %level %fbase:%line: %msg"));
+ set(Level::Fatal, ConfigurationType::Format, std::string("%datetime %level %fbase:%line: %msg"));
+ set(Level::Verbose, ConfigurationType::Format, std::string("%datetime %level-%vlevel %fbase:%line: %msg"));
set(Level::Trace, ConfigurationType::Format, std::string("%datetime %level [%logger] [%func] [%loc] %msg"));
}