From 1276b77a175e390340444702f3a64413ba708f1c Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Fri, 4 Feb 2011 20:52:49 +0200 Subject: [PATCH] * mu-index.c: fix needless warning when msg is no longer there --- src/mu-index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mu-index.c b/src/mu-index.c index 34e3562e..312c7e81 100644 --- a/src/mu-index.c +++ b/src/mu-index.c @@ -424,7 +424,7 @@ foreach_doc_cb (const char* path, CleanupData *cudata) { if (access (path, R_OK) != 0) { if (errno != EACCES) - g_warning ("cannot access %s: %s", path, strerror(errno)); + g_debug ("cannot access %s: %s", path, strerror(errno)); if (!mu_store_remove (cudata->_store, path)) return MU_ERROR; /* something went wrong... bail out */ if (cudata->_stats)