]> git.notmuchmail.org Git - notmuch/blobdiff - query.cc
Add debugging code for examining query strings.
[notmuch] / query.cc
index a15de9664a5ac4b8d15f5e567f873364a39d2f9a..f66ee55649767639006fade6c22a6e963848adb7 100644 (file)
--- a/query.cc
+++ b/query.cc
@@ -41,6 +41,10 @@ notmuch_query_create (notmuch_database_t *notmuch,
 {
     notmuch_query_t *query;
 
+#ifdef DEBUG_QUERY
+    fprintf (stderr, "Query string is:\n%s\n", query_string);
+#endif
+
     query = talloc (NULL, notmuch_query_t);
     if (unlikely (query == NULL))
        return NULL;
@@ -118,6 +122,10 @@ notmuch_query_search (notmuch_query_t *query)
            break;
        }
 
+#if DEBUG_QUERY
+       fprintf (stderr, "Final query is:\n%s\n", final_query.get_description().c_str());
+#endif
+
        enquire.set_query (final_query);
 
        mset = enquire.get_mset (0, notmuch->xapian_db->get_doccount ());