From: Joel Rosdahl Date: Sun, 3 Jan 2021 11:55:00 +0000 (+0100) Subject: Capitalize log message with inode cache statistics X-Git-Tag: v4.2~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=56d3ead4b35a2672bef84bb5bd08b4557b1f9580;p=thirdparty%2Fccache.git Capitalize log message with inode cache statistics --- diff --git a/src/InodeCache.cpp b/src/InodeCache.cpp index 93e15b338..5e473ec7e 100644 --- a/src/InodeCache.cpp +++ b/src/InodeCache.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2020 Joel Rosdahl and other contributors +// Copyright (C) 2020-2021 Joel Rosdahl and other contributors // // See doc/AUTHORS.adoc for a complete list of contributors. // @@ -399,7 +399,7 @@ InodeCache::get(const std::string& path, } else { ++m_sr->misses; } - LOG("accumulated stats for inode cache: hits={}, misses={}, errors={}", + LOG("Accumulated stats for inode cache: hits={}, misses={}, errors={}", m_sr->hits.load(), m_sr->misses.load(), m_sr->errors.load());