From 32bc807109e1c0aaef7d0555355791698d5786b9 Mon Sep 17 00:00:00 2001 From: gabime Date: Sat, 9 May 2015 21:35:17 +0300 Subject: [PATCH] Comments --- include/spdlog/tweakme.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/spdlog/tweakme.h b/include/spdlog/tweakme.h index fa728662..2226820e 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 of 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 /////////////////////////////////////////////////////////////////////////////// @@ -46,7 +46,7 @@ /////////////////////////////////////////////////////////////////////////////// -// Uncomment if thread id logging is not needed (i.e. no %t in the log pattern) +// Uncomment if thread id logging is not needed (i.e. no %t in the log pattern). // This will prevent spdlog from quering the thread id on each log call. // #define SPDLOG_NO_THREAD_ID /////////////////////////////////////////////////////////////////////////////// @@ -60,13 +60,13 @@ /////////////////////////////////////////////////////////////////////////////// -// Uncomment to enable the SPDLOG_DEBUG/SPDLOG_TRACE macros +// Uncomment to enable the SPDLOG_DEBUG/SPDLOG_TRACE macros. // #define SPDLOG_DEBUG_ON // #define SPDLOG_TRACE_ON /////////////////////////////////////////////////////////////////////////////// -// Uncomment to avoid locking in the registry operations (spdlog::get(), spdlog::drop() spdlog::register()) -// Use only if your code never modifes concurrently the registry +// Uncomment to avoid locking in the registry operations (spdlog::get(), spdlog::drop() spdlog::register()). +// Use only if your code never modifes concurrently the registry. // Note that upon creating a logger the registry is modified by spdlog.. // #define SPDLOG_NO_REGISTRY_MUTEX \ No newline at end of file