diff --git a/src/index/fsindexer.cpp b/src/index/fsindexer.cpp index 0ba5ce62..1ef5774e 100644 --- a/src/index/fsindexer.cpp +++ b/src/index/fsindexer.cpp @@ -346,7 +346,7 @@ FsIndexer::processone(const std::string &fn, const struct stat *stp, string udi; make_udi(fn, "", udi); if (!m_db->needUpdate(udi, sig)) { - LOGDEB(("processone: up to date: %s\n", fn.c_str())); + LOGDEB0(("processone: up to date: %s\n", fn.c_str())); if (m_updater) { // Status bar update, abort request etc. m_updater->status.fn = fn; diff --git a/src/rcldb/rcldb.cpp b/src/rcldb/rcldb.cpp index 3077d1d8..c5048438 100644 --- a/src/rcldb/rcldb.cpp +++ b/src/rcldb/rcldb.cpp @@ -1246,8 +1246,8 @@ bool Db::needUpdate(const string &udi, const string& sig) osig.c_str(), sig.c_str())); // Compare new/old sig if (sig != osig) { - LOGDEB(("Db::needUpdate:yes: olsig [%s] new [%s]\n", - osig.c_str(), sig.c_str())); + LOGDEB(("Db::needUpdate:yes: olsig [%s] new [%s] [%s]\n", + osig.c_str(), sig.c_str(), uniterm.c_str())); // Db is not up to date. Let's index the file return true; }