From aa952aa430d05144a13b565e3ee6ba4e773c817d Mon Sep 17 00:00:00 2001 From: djcb Date: Sun, 1 Apr 2012 12:29:44 +0300 Subject: [PATCH] * mu-stored-read.cc: don't do excessive logging --- src/mu-store-read.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/mu-store-read.cc b/src/mu-store-read.cc index c7b44d2e..18eb3622 100644 --- a/src/mu-store-read.cc +++ b/src/mu-store-read.cc @@ -163,11 +163,7 @@ mu_store_contains_message (MuStore *store, const char* path, GError **err) try { const std::string term (store->get_uid_term(path)); - - MU_WRITE_LOG ("term exists? '%s': %s", term.c_str(), - store->db_read_only()->term_exists (term) ? "yes" : "no"); - - return store->db_read_only()->term_exists (term) ? TRUE: FALSE; + return store->db_read_only()->term_exists (term) ? TRUE: FALSE; } MU_XAPIAN_CATCH_BLOCK_G_ERROR_RETURN(err, MU_ERROR_XAPIAN, FALSE);