From: Ali Polatel Date: Wed, 26 May 2010 07:55:39 +0000 (+0300) Subject: More debug messages X-Git-Tag: 0.10_rc1~53 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=649db5eab6e67c753301633a9261a08be83d0f3b More debug messages --- 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; }