remove most of the debug code: often makes the code unreadable, for little
[apps/madmutt.git] / nntp / newsrc.c
index e9709f7..4d45c0d 100644 (file)
@@ -24,7 +24,6 @@
 #include <lib-lib/str.h>
 #include <lib-lib/file.h>
 #include <lib-lib/macros.h>
-#include <lib-lib/debug.h>
 
 #include <lib-mime/mime.h>
 
@@ -126,7 +125,6 @@ static int nntp_parse_newsrc_line (NNTP_SERVER * news, char *line)
     data->lastMessage = data->entries[x - 1].last;
   data->num = x;
   mutt_newsgroup_stat (data);
-  debug_print (2, ("Newsgroup %s\n", data->group));
 
   return 0;
 }
@@ -437,10 +435,6 @@ void nntp_get_status (CONTEXT * ctx, HEADER * h, char *group, int article)
     data = (NNTP_DATA *) hash_find (data->nserv->newsgroups, group);
 
   if (!data) {
-#ifdef DEBUG
-    if (group)
-      debug_print (3, ("newsgroup %s not found\n", group));
-#endif
     return;
   }
 
@@ -640,7 +634,6 @@ static int mutt_update_list_file (char *filename, char *section,
   /* if file not exist, create it */
   if ((ifp = safe_fopen (filename, "a")))
     fclose (ifp);
-  debug_print (1, ("Opening %s\n", filename));
   if (!(ifp = safe_fopen (filename, "r"))) {
     mutt_error (_("Unable to open %s for reading"), filename);
     return -1;
@@ -658,7 +651,6 @@ static int mutt_update_list_file (char *filename, char *section,
   m_strcpy(buf, sizeof(buf), filename);
   m_strcpy(tmpfile, sizeof(tmpfile), basename(filename));
   mutt_adv_mktemp ((const char*) dirname (buf), tmpfile, sizeof (tmpfile));
-  debug_print (1, ("Opening %s\n", tmpfile));
   if (!(ofp = fopen (tmpfile, "w"))) {
     fclose (ifp);
     mutt_error (_("Unable to open %s for writing"), tmpfile);
@@ -732,7 +724,6 @@ static int mutt_update_list_file (char *filename, char *section,
   link[0] = '\0';
   if ((l = readlink (filename, link, sizeof (link)-1)) > 0)
     link[l] = '\0';
-  debug_print (1, ("Renaming %s to %s\n",tmpfile, l > 0 ? link : filename));
   if (rename (tmpfile, l > 0 ? link : filename) < 0) {
     unlink (tmpfile);
     mutt_error (_("Can't rename %s to %s"), tmpfile, l > 0 ? link : filename);
@@ -759,7 +750,6 @@ int mutt_newsrc_update (NNTP_SERVER * news)
     if (!data || !data->rc)
       continue;
     nntp_create_newsrc_line (data, &buf, &line, &llen);
-    debug_print (2, ("Added to newsrc: %s\n", line));
     line += m_strlen(line);
   }
   /* newrc being fully rewritten */
@@ -831,7 +821,6 @@ void nntp_clear_cacheindex (NNTP_SERVER * news)
     if (!data || data->subscribed || !data->cache)
       continue;
     nntp_delete_cache (data);
-    debug_print (2, ("Removed from .index: %s\n", data->group));
   }
   return;
 }