]> granicus.if.org Git - neomutt/commitdiff
Turn down some debug logging levels
authorBrendan Cully <brendan@kublai.com>
Thu, 8 Nov 2007 19:26:05 +0000 (11:26 -0800)
committerBrendan Cully <brendan@kublai.com>
Thu, 8 Nov 2007 19:26:05 +0000 (11:26 -0800)
ChangeLog
color.c
copy.c
imap/command.c

index cabb3aaf08b986e504e29f361cfb43020f240914..171e110696c7f5fd532125c52e2536e66cdef990 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-08 09:03 +0100  Rocco Rutte  <pdmef@gmx.net>  (92a6bfbed657)
+
+       * doc/Makefile.am: Add stamp-doc-rc to makedoc-all to build Muttrc
+       with fresh checkout
+
 2007-11-07 14:48 -0800  Brendan Cully  <brendan@kublai.com>  (b68ccc2e66e2)
 
        * curs_lib.c, mutt_curses.h: Suppress progress bar updates less than
diff --git a/color.c b/color.c
index 81cb227fe9df5bed771c0a81e723942f954c309c..0288eb194f6b0e230c4818592d609ab114eadf85 100644 (file)
--- a/color.c
+++ b/color.c
@@ -254,8 +254,8 @@ int mutt_alloc_color (int fg, int bg)
 
   init_pair(i, fg, bg);
 
-  dprint(1,(debugfile,"mutt_alloc_color(): Color pairs used so far: %d\n",
-                       UserColors));
+  dprint (3, (debugfile,"mutt_alloc_color(): Color pairs used so far: %d\n",
+             UserColors));
 
   return (COLOR_PAIR (p->index));
 }
diff --git a/copy.c b/copy.c
index 60ff2996dc0d6a14d58c576e6964bef2a0b1cc4a..4cb91d0cafe08653d6864eafdfca752daca14689 100644 (file)
--- a/copy.c
+++ b/copy.c
@@ -129,7 +129,7 @@ mutt_copy_hdr (FILE *in, FILE *out, LOFF_T off_start, LOFF_T off_end, int flags,
   {
     for (t = HeaderOrderList; t; t = t->next)
     {
-      dprint(1, (debugfile, "Reorder list: %s\n", t->data));
+      dprint(3, (debugfile, "Reorder list: %s\n", t->data));
       hdr_count++;
     }
   }
index c67066e0d4d3561ae60463153037be3a6dc90c8e..ef835ecf7e00e4b3cba4495b01f2bae695d97c7b 100644 (file)
@@ -209,7 +209,7 @@ int imap_cmd_step (IMAP_DATA* idata)
     rc = IMAP_CMD_CONTINUE;
   else
   {
-    dprint (2, (debugfile, "IMAP queue drained\n"));
+    dprint (3, (debugfile, "IMAP queue drained\n"));
     imap_cmd_finish (idata);
   }
   
@@ -486,7 +486,7 @@ static void cmd_parse_capability (IMAP_DATA* idata, char* s)
   int x;
   char* bracket;
 
-  dprint (2, (debugfile, "Handling CAPABILITY\n"));
+  dprint (3, (debugfile, "Handling CAPABILITY\n"));
 
   s = imap_next_word (s);
   if ((bracket = strchr (s, ']')))
@@ -545,7 +545,7 @@ static void cmd_parse_fetch (IMAP_DATA* idata, char* s)
   int msgno, cur;
   HEADER* h = NULL;
 
-  dprint (2, (debugfile, "Handling FETCH\n"));
+  dprint (3, (debugfile, "Handling FETCH\n"));
 
   msgno = atoi (s);
   
@@ -566,7 +566,7 @@ static void cmd_parse_fetch (IMAP_DATA* idata, char* s)
   
   if (!h)
   {
-    dprint (1, (debugfile, "FETCH response ignored for this message\n"));
+    dprint (3, (debugfile, "FETCH response ignored for this message\n"));
     return;
   }