From 211ce99d29820f7a02c874360be11978ef40fee8 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Fri, 10 Apr 2015 12:34:57 +0300 Subject: [PATCH 1/2] Update tweakme.h --- include/spdlog/tweakme.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/spdlog/tweakme.h b/include/spdlog/tweakme.h index 427bbd7a..20e2c5e4 100644 --- a/include/spdlog/tweakme.h +++ b/include/spdlog/tweakme.h @@ -32,7 +32,7 @@ /////////////////////////////////////////////////////////////////////////////// // Under Linux, the much faster CLOCK_REALTIME_COARSE clock can be used. -// This clock is less accurate - can be off by dozens millis - depending on the kernel HZ +// This clock is less accurate - can be off by dozens of millis - depending on the kernel HZ // Uncomment to use it instead of the regular (but slower) clock. // #define SPDLOG_CLOCK_COARSE /////////////////////////////////////////////////////////////////////////////// @@ -40,7 +40,7 @@ /////////////////////////////////////////////////////////////////////////////// // Uncomment if date/time logging is not needed. -// This will prevent spdlog from quering the system clock on each log call. +// This will prevent spdlog from quering the clock on each log call. // #define SPDLOG_NO_DATETIME /////////////////////////////////////////////////////////////////////////////// From 71341827dcff2e8d53efe918068f689064803f71 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 11 Apr 2015 13:14:32 +0300 Subject: [PATCH 2/2] Update README.md --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 9f5526e8..1a47f299 100644 --- a/README.md +++ b/README.md @@ -156,8 +156,4 @@ void custom_class_example() ``` ## Tweaking -spdlog can be tweaked to improve performance even more. - -Edit [this](include/spdlog/tweakme.h) file to disable at compile time unneeded features. - - +spdlog can be [tweaked](include/spdlog/tweakme.h) to improve performance even more.