From 74e2aa9c66924d7a72b304c472446f028e3a08c7 Mon Sep 17 00:00:00 2001 From: gabime Date: Wed, 19 Jun 2019 17:13:48 +0300 Subject: Micoro optimize macros --- include/spdlog/spdlog.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include/spdlog/spdlog.h') diff --git a/include/spdlog/spdlog.h b/include/spdlog/spdlog.h index dfa42145..9e8070c3 100644 --- a/include/spdlog/spdlog.h +++ b/include/spdlog/spdlog.h @@ -27,8 +27,9 @@ using default_factory = synchronous_factory; // Create and register a logger with a templated sink type // The logger's level, formatter and flush level will be set according the // global settings. +// // Example: -// spdlog::create("logger_name", "dailylog_filename", 11, 59); +// spdlog::create("logger_name", "dailylog_filename", 11, 59); template inline std::shared_ptr create(std::string logger_name, SinkArgs &&... sink_args) { @@ -267,7 +268,7 @@ inline void critical(const wchar_t *fmt, const Args &... args) do \ { \ if (logger->should_log(level)) \ - logger->log(spdlog::source_loc{__FILE__, __LINE__, SPDLOG_FUNCTION}, level, __VA_ARGS__); \ + logger->force_log(spdlog::source_loc{__FILE__, __LINE__, SPDLOG_FUNCTION}, level, __VA_ARGS__); \ } while (0) #if SPDLOG_ACTIVE_LEVEL <= SPDLOG_LEVEL_TRACE -- cgit v1.2.3