From 302a97b04ca5ec35ccbf5d764918d5a4ab676db6 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Wed, 6 Jan 2010 01:28:00 +0200 Subject: [PATCH] * mu-query-xapian: logging fixes --- src/mu-msg-xapian.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mu-msg-xapian.cc b/src/mu-msg-xapian.cc index 0609a250..df9ca427 100644 --- a/src/mu-msg-xapian.cc +++ b/src/mu-msg-xapian.cc @@ -86,8 +86,8 @@ _message_is_readable (MuMsgXapian *msg) const std::string path(doc.get_value(MU_MSG_FIELD_ID_PATH)); if (access (path.c_str(), R_OK) != 0) { - g_message ("cannot read %s: %s", path.c_str(), - strerror(errno)); + g_debug ("cannot read %s: %s", path.c_str(), + strerror(errno)); return FALSE; }