From: Dan Winship Date: Sat, 17 Jun 2000 19:12:47 +0000 (+0000) Subject: Add some debugging printfs when rebulding summary to help figure out why X-Git-Tag: upstream/3.7.4~11679 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2f4371eb39eb3972195b171aa0aa53da445844a4;p=platform%2Fupstream%2Fevolution-data-server.git Add some debugging printfs when rebulding summary to help figure out why * providers/mbox/camel-mbox-summary.c: Add some debugging printfs when rebulding summary to help figure out why people's summaries are always being rebuilt. --- diff --git a/camel/ChangeLog b/camel/ChangeLog index 9416b93..a2de60c 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,9 @@ +2000-06-17 Dan Winship + + * providers/mbox/camel-mbox-summary.c: Add some debugging printfs + when rebulding summary to help figure out why people's summaries + are always being rebuilt. + 2000-06-17 Jeffrey Stedfast * providers/imap/camel-imap-folder.c (imap_search_by_expression): diff --git a/camel/providers/mbox/camel-mbox-summary.c b/camel/providers/mbox/camel-mbox-summary.c index 17af8b3..40ad7f3 100644 --- a/camel/providers/mbox/camel-mbox-summary.c +++ b/camel/providers/mbox/camel-mbox-summary.c @@ -372,6 +372,8 @@ camel_mbox_summary_load(CamelMboxSummary *mbs, int forceindex) } if (forceindex || camel_folder_summary_load(s) == -1) { + printf ("REBUILDING SUMMARY: %s\n", + forceindex ? "Summary non-existent." : "Summary load failed."); camel_folder_summary_clear(s); ret = summary_rebuild(mbs, 0); } else { @@ -395,12 +397,13 @@ camel_mbox_summary_load(CamelMboxSummary *mbs, int forceindex) printf("Summary time and date match mbox\n"); if (minstart < st.st_size) { /* FIXME: Only clear the messages and reindex from this point forward */ + printf ("REBUILDING SUMMARY: Index file is incomplete.\n"); camel_folder_summary_clear(s); ret = summary_rebuild(mbs, 0); } } else { if (mbs->folder_size < st.st_size) { - printf("Index is for a smaller mbox\n"); + printf("REBUILDING SUMMARY: Summary is for a smaller mbox\n"); if (minstart < mbs->folder_size) { /* FIXME: only make it rebuild as necessary */ camel_folder_summary_clear(s); @@ -409,7 +412,10 @@ camel_mbox_summary_load(CamelMboxSummary *mbs, int forceindex) ret = summary_rebuild(mbs, mbs->folder_size); } } else { - printf("index is for a bigger mbox\n"); + if (mbs->folder_size > st.st_size) + printf("REBUILDING_SUMMARY: Summary is for a bigger mbox\n"); + else + printf("REBUILDING SUMMARY: Summary is for an older mbox\n"); camel_folder_summary_clear(s); ret = summary_rebuild(mbs, 0); }