diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-05-05 11:24:04 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-05-05 11:24:04 +0200 |
commit | f76fd38baa736822b9d13dfd6afd861f53bc1684 (patch) | |
tree | e0c67191341da54e0357297b21fb1b9ec7347748 | |
parent | Merge pull request #1995 (diff) | |
parent | easylogging++: default to creating categories by default (diff) | |
download | monero-f76fd38baa736822b9d13dfd6afd861f53bc1684.tar.xz |
Merge pull request #1997
5d86c9f4 easylogging++: default to creating categories by default (moneromooo-monero)
-rw-r--r-- | external/easylogging++/easylogging++.cc | 1 |
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 |