From ce1fea63027587295a8d09a287d8afd742395ba4 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Mon, 30 May 2022 20:31:23 +0300 Subject: [PATCH] store: log whether a message is 'personal' --- lib/mu-store.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/mu-store.cc b/lib/mu-store.cc index 6454d1b2..706b83e0 100644 --- a/lib/mu-store.cc +++ b/lib/mu-store.cc @@ -456,7 +456,8 @@ Store::add_message(Message& msg, bool use_transaction) if (use_transaction) /* commit if batch is full */ priv_->transaction_maybe_commit(); - g_debug("added message @ %s; docid = %u", msg.path().c_str(), *res); + g_debug("added %smessage @ %s; docid = %u", + is_personal ? "personal " : "", msg.path().c_str(), *res); return res; }