mu-contacts: remove some debug logging

This commit is contained in:
Dirk-Jan C. Binnema 2023-10-30 22:51:00 +02:00
parent de302e7609
commit 6dac4423e2
1 changed files with 1 additions and 5 deletions

View File

@ -55,9 +55,7 @@ struct ContactsCache::Private {
ignored_rx_{make_rx_matchers<Config::Id::IgnoredAddresses>()},
dirty_{0} {}
~Private() {
serialize();
}
~Private() { serialize(); }
ContactUMap deserialize(const std::string&) const;
void serialize() const;
@ -86,8 +84,6 @@ private:
std::vector<Regex> rxvec;
for (auto&& p: config_db_.get<Id>()) {
mu_debug("--> {}", p);
if (!is_rx(p))
continue;
constexpr auto opts{static_cast<GRegexCompileFlags>(G_REGEX_OPTIMIZE|G_REGEX_CASELESS)};