From 4e9fafac75f0b28b21dc3f2cfb56085b52ee375e Mon Sep 17 00:00:00 2001 From: gabime Date: Tue, 10 Jul 2018 14:35:54 +0300 Subject: [PATCH] comment --- include/spdlog/sinks/rotating_file_sink.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/sinks/rotating_file_sink.h b/include/spdlog/sinks/rotating_file_sink.h index 84c71799..60986f65 100644 --- a/include/spdlog/sinks/rotating_file_sink.h +++ b/include/spdlog/sinks/rotating_file_sink.h @@ -96,7 +96,7 @@ private: if (details::file_helper::file_exists(src) && details::os::rename(src, target) != 0) { // if failed try again after small delay. - // this is a workaround to a windows issue, where on high rotation rates the rename fails sometimes (because of antivirus?). + // this is a workaround to a windows issue, where very high rotation rates sometimes fail (because of antivirus?). details::os::sleep_for_millis(20); details::os::remove(target); if (details::os::rename(src, target) != 0)