From 7e9eb6b6df75968b1ad5ac1b7383c1c3f8b765d4 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Tue, 17 Oct 2023 15:50:47 -0400 Subject: [PATCH] bugfix: logging verbosity --- src/reactor/PollingReactor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reactor/PollingReactor.cpp b/src/reactor/PollingReactor.cpp index a9c52cb7..c8c9fe66 100644 --- a/src/reactor/PollingReactor.cpp +++ b/src/reactor/PollingReactor.cpp @@ -79,7 +79,7 @@ namespace xo { { int64_t ix = this->find_nonempty_source(this->next_ix_); - scope log(XO_DEBUG(this->loglevel() == log_level::chatty)); + scope log(XO_DEBUG(this->loglevel() <= log_level::chatty)); log && log(xtag("self", this), xtag("src_ix", ix));