aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-05-05 11:24:04 +0200
committerRiccardo Spagni <ric@spagni.net>2017-05-05 11:24:04 +0200
commitf76fd38baa736822b9d13dfd6afd861f53bc1684 (patch)
treee0c67191341da54e0357297b21fb1b9ec7347748
parentMerge pull request #1995 (diff)
parenteasylogging++: default to creating categories by default (diff)
downloadmonero-f76fd38baa736822b9d13dfd6afd861f53bc1684.tar.xz
Merge pull request #1997
5d86c9f4 easylogging++: default to creating categories by default (moneromooo-monero)
-rw-r--r--external/easylogging++/easylogging++.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/external/easylogging++/easylogging++.cc b/external/easylogging++/easylogging++.cc
index 4fbb94b25..efa876664 100644
--- a/external/easylogging++/easylogging++.cc
+++ b/external/easylogging++/easylogging++.cc
@@ -2095,6 +2095,7 @@ Storage::Storage(const LogBuilderPtr& defaultLogBuilder) :
sysLogLogger->reconfigure();
#endif // defined(ELPP_SYSLOG)
addFlag(LoggingFlag::AllowVerboseIfModuleNotSpecified);
+ addFlag(LoggingFlag::CreateLoggerAutomatically);
#if ELPP_ASYNC_LOGGING
installLogDispatchCallback<base::AsyncLogDispatchCallback>(std::string("AsyncLogDispatchCallback"));
#else