From ed5498a2e91060c0a829b17da1a315ec232a296c Mon Sep 17 00:00:00 2001 From: gabime Date: Wed, 20 Dec 2017 00:29:15 +0200 Subject: [PATCH] report unexected exception types --- include/spdlog/details/async_log_helper.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/spdlog/details/async_log_helper.h b/include/spdlog/details/async_log_helper.h index 0fb6565f..732236c4 100644 --- a/include/spdlog/details/async_log_helper.h +++ b/include/spdlog/details/async_log_helper.h @@ -282,9 +282,7 @@ inline void spdlog::details::async_log_helper::worker_loop() } catch(...) { - _err_handler("Unknown exeption in worker loop. Terminating worker loop"); - active = false; - + _err_handler("Unknown exeption in async logger worker loop."); } } if (_worker_teardown_cb) _worker_teardown_cb();