| 43 | // spdlog::create<daily_file_sink_st>("logger_name", "dailylog_filename", 11, 59); |
| 44 | template<typename Sink, typename... SinkArgs> |
| 45 | inline std::shared_ptr<spdlog::logger> create(std::string logger_name, SinkArgs &&... sink_args) |
| 46 | { |
| 47 | return default_factory::create<Sink>(std::move(logger_name), std::forward<SinkArgs>(sink_args)...); |
| 48 | } |
| 49 | |
| 50 | // Return an existing logger or nullptr if a logger with such name doesn't |
| 51 | // exist. |
nothing calls this directly
no outgoing calls
no test coverage detected