about summary refs log tree commit diff
path: root/src/libutil/logging.cc
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2017-12-11T17·58-0600
committerWill Dietz <w@wdtz.org>2017-12-11T18·08-0600
commite4d43f1f94f7488ae8dc1139c8485446c4209836 (patch)
treee9b55234085ad9897d11df1a5e550167bae22e96 /src/libutil/logging.cc
parentc800f473950066c932cbb88fca17f9d31385e76c (diff)
logging.cc: add missing 'override'
Diffstat (limited to 'src/libutil/logging.cc')
-rw-r--r--src/libutil/logging.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/logging.cc b/src/libutil/logging.cc
index 011155871122..6924e0080475 100644
--- a/src/libutil/logging.cc
+++ b/src/libutil/logging.cc
@@ -49,6 +49,7 @@ public:
 
     void startActivity(ActivityId act, Verbosity lvl, ActivityType type,
         const std::string & s, const Fields & fields, ActivityId parent)
+        override
     {
         if (lvl <= verbosity && !s.empty())
             log(lvl, s + "...");