From 649db5eab6e67c753301633a9261a08be83d0f3b Mon Sep 17 00:00:00 2001 From: Ali Polatel Date: Wed, 26 May 2010 10:55:39 +0300 Subject: [PATCH] More debug messages --- contrib/notmuch-deliver/src/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/notmuch-deliver/src/main.c b/contrib/notmuch-deliver/src/main.c index e73a5b50..49919ff1 100644 --- a/contrib/notmuch-deliver/src/main.c +++ b/contrib/notmuch-deliver/src/main.c @@ -261,6 +261,7 @@ save_database(notmuch_database_t *db, const char *path, char **default_tags) case NOTMUCH_STATUS_SUCCESS: break; case NOTMUCH_STATUS_DUPLICATE_MESSAGE_ID: + g_debug("Message is a duplicate, not adding tags"); return 0; default: g_warning("Failed to add `%s' to notmuch database: %s", @@ -364,6 +365,7 @@ main(int argc, char **argv) g_free(maildir); if ((ret = save_database(db, mail, conf_tags)) != 0 && opt_fatal) { + g_warning("Unlinking `%s'", mail); unlink(mail); return ret; } -- 2.43.0