summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrendan Cully <brendan@kublai.com>2007-11-08 11:26:05 -0800
committerBrendan Cully <brendan@kublai.com>2007-11-08 11:26:05 -0800
commitd5a006a72d27c006f7490756e6a4e760af588315 (patch)
tree343276008a8d1623a496eb344af814e03d83e545
parentfecc9246c73ae3ad4ce155c2a4ec4e50da157111 (diff)
Turn down some debug logging levels
-rw-r--r--ChangeLog5
-rw-r--r--color.c4
-rw-r--r--copy.c2
-rw-r--r--imap/command.c8
4 files changed, 12 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index cabb3aaf..171e1106 100644
--- 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 81cb227f..0288eb19 100644
--- 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 60ff2996..4cb91d0c 100644
--- 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++;
}
}
diff --git a/imap/command.c b/imap/command.c
index c67066e0..ef835ecf 100644
--- a/imap/command.c
+++ b/imap/command.c
@@ -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;
}