|
|
@ -33,6 +33,8 @@ std::shared_ptr<logger> stderr_color_st(const std::string &logger_name, color_mo
|
|
|
|
return Factory::template create<sinks::stderr_color_sink_st>(logger_name, mode);
|
|
|
|
return Factory::template create<sinks::stderr_color_sink_st>(logger_name, mode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace spdlog
|
|
|
|
|
|
|
|
|
|
|
|
// template instantiations
|
|
|
|
// template instantiations
|
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stdout_color_mt<spdlog::synchronous_factory>(
|
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stdout_color_mt<spdlog::synchronous_factory>(
|
|
|
|
const std::string &logger_name, color_mode mode);
|
|
|
|
const std::string &logger_name, color_mode mode);
|
|
|
@ -51,5 +53,3 @@ template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stderr_color_mt<spdl
|
|
|
|
const std::string &logger_name, color_mode mode);
|
|
|
|
const std::string &logger_name, color_mode mode);
|
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stderr_color_st<spdlog::async_factory>(
|
|
|
|
template SPDLOG_API std::shared_ptr<spdlog::logger> spdlog::stderr_color_st<spdlog::async_factory>(
|
|
|
|
const std::string &logger_name, color_mode mode);
|
|
|
|
const std::string &logger_name, color_mode mode);
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace spdlog
|
|
|
|
|