about summary refs log tree commit diff
path: root/src/libutil/logging.cc
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-03-03T20·39-0600
committerWill Dietz <w@wdtz.org>2018-03-06T16·42-0600
commite917c05628abd0ff429c429d0e814532180b9586 (patch)
tree0ef6d5682af7482928a2a22cc4175a35ab6a7138 /src/libutil/logging.cc
parent70dbac7491c372b514b4fd825f99a761803f40f5 (diff)
logging: Don't throw from Activity destructor
Move definition of destructor to logging.cc for
access to util.hh's ignoreException.
Diffstat (limited to 'src/libutil/logging.cc')
-rw-r--r--src/libutil/logging.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libutil/logging.cc b/src/libutil/logging.cc
index 27a631a37d10..c1cff5cf9061 100644
--- a/src/libutil/logging.cc
+++ b/src/libutil/logging.cc
@@ -221,4 +221,12 @@ bool handleJSONLogMessage(const std::string & msg,
     return true;
 }
 
+Activity::~Activity() {
+    try {
+        logger.stopActivity(id);
+    } catch (...) {
+        ignoreException();
+    }
+}
+
 }