From ce6ee347abfcb5924922896113bc288c904fe97a Mon Sep 17 00:00:00 2001 From: gabi Date: Thu, 18 Dec 2014 10:12:06 +0200 Subject: [PATCH] Small fix to example --- README.md | 4 ++-- example/example.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a5b02999..0a5c3ad7 100644 --- a/README.md +++ b/README.md @@ -81,8 +81,8 @@ int main(int, char* []) spd::get("console")->info("loggers can be retrieved from a global registry using the spdlog::get(logger_name) function"); - SPDLOG_TRACE(console, "Trace message - enabled only #ifdef SPDLOG_TRACE_ON..{} ,{}", 1, 3.23); - SPDLOG_DEBUG(console, "Debug message - enabled only #ifdef SPDLOG_DEBUG_ON.. {} ,{}", 1, 3.23); + SPDLOG_TRACE(console, "Enabled only #ifdef SPDLOG_TRACE_ON..{} ,{}", 1, 3.23); + SPDLOG_DEBUG(console, "Enabled only #ifdef SPDLOG_DEBUG_ON.. {} ,{}", 1, 3.23); // // Asynchronous logging is very fast.. diff --git a/example/example.cpp b/example/example.cpp index 9a631419..12d0bca4 100644 --- a/example/example.cpp +++ b/example/example.cpp @@ -69,8 +69,8 @@ int main(int, char* []) spd::get("console")->info("loggers can be retrieved from a global registry using the spdlog::get(logger_name) function"); - SPDLOG_TRACE(console, "Trace message - enabled only #ifdef SPDLOG_TRACE_ON..{} ,{}", 1, 3.23); - SPDLOG_DEBUG(console, "Debug message - enabled only #ifdef SPDLOG_DEBUG_ON.. {} ,{}", 1, 3.23); + SPDLOG_TRACE(console, "Enabled only #ifdef SPDLOG_TRACE_ON..{} ,{}", 1, 3.23); + SPDLOG_DEBUG(console, "Enabled only #ifdef SPDLOG_DEBUG_ON.. {} ,{}", 1, 3.23); // // Asynchronous logging is easy..