remove most of the debug code: often makes the code unreadable, for little
[apps/madmutt.git] / imap / auth.c
index 74aee4c..d4b4efd 100644 (file)
@@ -16,7 +16,6 @@
 #endif
 
 #include <lib-lib/mem.h>
-#include <lib-lib/debug.h>
 
 #include <lib-lib/macros.h>
 #include <lib-lib/ascii.h>
@@ -64,7 +63,6 @@ int imap_authenticate (IMAP_DATA * idata)
       if (!method[0])
         continue;
 
-      debug_print (2, ("Trying method %s\n", method));
       authenticator = imap_authenticators;
 
       while (authenticator->authenticate) {
@@ -84,7 +82,6 @@ int imap_authenticate (IMAP_DATA * idata)
   }
   else {
     /* Fall back to default: any authenticator */
-    debug_print (2, ("Using any available method.\n"));
     authenticator = imap_authenticators;
 
     while (authenticator->authenticate) {