// // Copyright(c) 2015-2108 Gabi Melman. // Distributed under the MIT License (http://opensource.org/licenses/MIT) // #pragma once // Thread safe logger (except for set_pattern(..), set_formatter(..) and set_error_handler()) // Has name, log level, vector of std::shared sink pointers and formatter // Upon each log write the logger: // 1. Checks if its log level is enough to log the message and if yes: // 2. Call the underlying sinks to do the job. // 3. Each sink use its own private copy of a formatter to format the message and send to its destination. // // The use of private formatter per sink provides the opportunity to cache some formatted data, // and support customize format per each sink. #include "spdlog/common.h" #include "spdlog/formatter.h" #include "spdlog/sinks/sink.h" #include #include #include namespace spdlog { class logger { public: logger(const std::string &name, sink_ptr single_sink); logger(const std::string &name, sinks_init_list sinks); template logger(std::string name, const It &begin, const It &end); virtual ~logger(); logger(const logger &) = delete; logger &operator=(const logger &) = delete; template void log(level::level_enum lvl, const char *fmt, const Args &... args); template void log(level::level_enum lvl, const char *msg); template void trace(const char *fmt, const Arg1 &, const Args &... args); template void debug(const char *fmt, const Arg1 &, const Args &... args); template void info(const char *fmt, const Arg1 &, const Args &... args); template void warn(const char *fmt, const Arg1 &, const Args &... args); template void error(const char *fmt, const Arg1 &, const Args &... args); template void critical(const char *fmt, const Arg1 &, const Args &... args); #ifdef SPDLOG_WCHAR_TO_UTF8_SUPPORT template void log(level::level_enum lvl, const wchar_t *msg); template void log(level::level_enum lvl, const wchar_t *fmt, const Args &... args); template void trace(const wchar_t *fmt, const Args &... args); template void debug(const wchar_t *fmt, const Args &... args); template void info(const wchar_t *fmt, const Args &... args); template void warn(const wchar_t *fmt, const Args &... args); template void error(const wchar_t *fmt, const Args &... args); template void critical(const wchar_t *fmt, const Args &... args); #endif // SPDLOG_WCHAR_TO_UTF8_SUPPORT template void log(level::level_enum lvl, const T &); template void trace(const T &msg); template void debug(const T &msg); template void info(const T &msg); template void warn(const T &msg); template void error(const T &msg); template void critical(const T &msg); bool should_log(level::level_enum msg_level) const; void set_level(level::level_enum log_level); level::level_enum level() const; const std::string &name() const; // create a pattern formatter all the sinks in this logger. // each sink gets itw own private copy of a formatter object. void set_pattern(const std::string &pattern, pattern_time_type pattern_time = pattern_time_type::local); // create a FormatterT formatter for each sink in this logger. // each sink gets its own private copy of a formatter object. template void set_formatter(const Args &... args); void flush(); void flush_on(level::level_enum log_level); const std::vector &sinks() const; // error handler void set_error_handler(log_err_handler err_handler); log_err_handler error_handler(); protected: virtual void sink_it_(details::log_msg &msg); virtual void flush_(); bool should_flush_(const details::log_msg &msg); // default error handler: print the error to stderr with the max rate of 1 message/minute void default_err_handler_(const std::string &msg); // increment the message count (only if defined(SPDLOG_ENABLE_MESSAGE_COUNTER)) void incr_msg_counter_(details::log_msg &msg); const std::string name_; std::vector sinks_; spdlog::level_t level_; spdlog::level_t flush_level_; log_err_handler err_handler_; std::atomic last_err_time_; std::atomic msg_counter_; }; } // namespace spdlog #include "details/logger_impl.h"