MCPcopy Create free account
hub / github.com/PeterFWS/Structure-PLP-SLAM / create

Function create

3rd/spdlog/include/spdlog/spdlog.h:45–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43// spdlog::create<daily_file_sink_st>("logger_name", "dailylog_filename", 11, 59);
44template<typename Sink, typename... SinkArgs>
45inline 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected