Added a global option in tweakme.h that disabled global registration of

loggers. fixes #712
This commit is contained in:
Pablo Arias
2018-11-04 20:12:42 +01:00
parent 1aace95c8d
commit f95b189fe3
4 changed files with 17 additions and 11 deletions

View File

@@ -52,7 +52,10 @@ struct async_factory_impl
auto sink = std::make_shared<Sink>(std::forward<SinkArgs>(args)...);
auto new_logger = std::make_shared<async_logger>(std::move(logger_name), std::move(sink), std::move(tp), OverflowPolicy);
registry_inst.register_and_init(new_logger);
registry_inst.init_with_global_defaults(new_logger);
#ifndef SPDLOG_DISABLE_GLOBAL_REGISTRATION
registry_inst.register_logger(new_logger);
#endif
return new_logger;
}
};