From 6dac4423e26266a257e3a9e6883aa7b0d92d0466 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Mon, 30 Oct 2023 22:51:00 +0200 Subject: [PATCH] mu-contacts: remove some debug logging --- lib/mu-contacts-cache.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/mu-contacts-cache.cc b/lib/mu-contacts-cache.cc index 2f28fdf9..4e60ce66 100644 --- a/lib/mu-contacts-cache.cc +++ b/lib/mu-contacts-cache.cc @@ -55,9 +55,7 @@ struct ContactsCache::Private { ignored_rx_{make_rx_matchers()}, dirty_{0} {} - ~Private() { - serialize(); - } + ~Private() { serialize(); } ContactUMap deserialize(const std::string&) const; void serialize() const; @@ -86,8 +84,6 @@ private: std::vector rxvec; for (auto&& p: config_db_.get()) { - mu_debug("--> {}", p); - if (!is_rx(p)) continue; constexpr auto opts{static_cast(G_REGEX_OPTIMIZE|G_REGEX_CASELESS)};