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; }