easylogging++: default to creating categories by default

This avoids error spews from easylogging++ when we try to log
something before easylogging is initialized, which can happen
when errors happen at command line parsing time
release-v0.4.0.1
moneromooo-monero 7 years ago
parent 9ed496bbc5
commit 5d86c9f4d5
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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

Loading…
Cancel
Save