]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Capitalize log message with inode cache statistics
authorJoel Rosdahl <joel@rosdahl.net>
Sun, 3 Jan 2021 11:55:00 +0000 (12:55 +0100)
committerJoel Rosdahl <joel@rosdahl.net>
Sun, 3 Jan 2021 11:55:00 +0000 (12:55 +0100)
src/InodeCache.cpp

index 93e15b338ced5cb515e7fd35ce33b3fe6340a110..5e473ec7e8464f7e2c208ae67fe3b9ef20ab872a 100644 (file)
@@ -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());