diff options
author | Will Dietz <w@wdtz.org> | 2017-12-11T17·58-0600 |
---|---|---|
committer | Will Dietz <w@wdtz.org> | 2017-12-11T18·08-0600 |
commit | e4d43f1f94f7488ae8dc1139c8485446c4209836 (patch) | |
tree | e9b55234085ad9897d11df1a5e550167bae22e96 /src | |
parent | c800f473950066c932cbb88fca17f9d31385e76c (diff) |
logging.cc: add missing 'override'
Diffstat (limited to 'src')
-rw-r--r-- | src/libutil/logging.cc | 1 |
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 + "..."); |