Changeset 5291:3869e46f6fd4

Show
Ignore:
Timestamp:
2007-11-08 11:26:05 (13 months ago)
Author:
Brendan Cully <brendan@…>
Branch:
HEAD
Message:

Turn down some debug logging levels

Files:
4 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r5289 r5291  
     12007-11-08 09:03 +0100  Rocco Rutte  <pdmef@gmx.net>  (92a6bfbed657) 
     2 
     3        * doc/Makefile.am: Add stamp-doc-rc to makedoc-all to build Muttrc 
     4        with fresh checkout 
     5 
    162007-11-07 14:48 -0800  Brendan Cully  <brendan@kublai.com>  (b68ccc2e66e2) 
    27 
  • color.c

    r4951 r5291  
    255255  init_pair(i, fg, bg); 
    256256 
    257   dprint(1,(debugfile,"mutt_alloc_color(): Color pairs used so far: %d\n", 
    258                        UserColors)); 
     257  dprint (3, (debugfile,"mutt_alloc_color(): Color pairs used so far: %d\n", 
     258              UserColors)); 
    259259 
    260260  return (COLOR_PAIR (p->index)); 
  • copy.c

    r5091 r5291  
    130130    for (t = HeaderOrderList; t; t = t->next) 
    131131    { 
    132       dprint(1, (debugfile, "Reorder list: %s\n", t->data)); 
     132      dprint(3, (debugfile, "Reorder list: %s\n", t->data)); 
    133133      hdr_count++; 
    134134    } 
  • imap/command.c

    r5111 r5291  
    210210  else 
    211211  { 
    212     dprint (2, (debugfile, "IMAP queue drained\n")); 
     212    dprint (3, (debugfile, "IMAP queue drained\n")); 
    213213    imap_cmd_finish (idata); 
    214214  } 
     
    487487  char* bracket; 
    488488 
    489   dprint (2, (debugfile, "Handling CAPABILITY\n")); 
     489  dprint (3, (debugfile, "Handling CAPABILITY\n")); 
    490490 
    491491  s = imap_next_word (s); 
     
    546546  HEADER* h = NULL; 
    547547 
    548   dprint (2, (debugfile, "Handling FETCH\n")); 
     548  dprint (3, (debugfile, "Handling FETCH\n")); 
    549549 
    550550  msgno = atoi (s); 
     
    567567  if (!h) 
    568568  { 
    569     dprint (1, (debugfile, "FETCH response ignored for this message\n")); 
     569    dprint (3, (debugfile, "FETCH response ignored for this message\n")); 
    570570    return; 
    571571  }