Update of /var/cvs/applications/email/src/org/mmbase/applications/email
In directory 
james.mmbase.org:/tmp/cvs-serv29346/src/org/mmbase/applications/email

Modified Files:
        MimeMessageGenerator.java 
Log Message:
lowerd some log


See also: 
http://cvs.mmbase.org/viewcvs/applications/email/src/org/mmbase/applications/email


Index: MimeMessageGenerator.java
===================================================================
RCS file: 
/var/cvs/applications/email/src/org/mmbase/applications/email/MimeMessageGenerator.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- MimeMessageGenerator.java   4 Feb 2008 10:39:53 -0000       1.20
+++ MimeMessageGenerator.java   7 Oct 2008 09:19:12 -0000       1.21
@@ -51,7 +51,7 @@
                String type    = tag.getType();
                String related = tag.getRelated();
                String alt     = tag.getAlt();
-                log.info("" + tag);
+                log.debug("" + tag);
                // add it to the id cache
                 if (tag.getId() != null) {
                     nodes.put(tag.getId(), tag);
@@ -86,7 +86,7 @@
                 try {
                     MimeMultipart root = new MimeMultipart();
                     root.addBodyPart(t.getMimeBodyPart());
-                    log.info("Returing " + root);
+                    log.debug("Returing " + root);
                     return root;
                 } catch (MessagingException e) {
                     log.error("Root generation error" + e.getMessage());
@@ -100,12 +100,12 @@
                     for (MimeBodyTag t : rootNodes) {
                         MimeMultipart mmp = t.getMimeMultipart();
                         if (mmp != null) {
-                            log.info("setting parent info : " + t.getId());
+                            log.debug("setting parent info : " + t.getId());
                             MimeBodyPart wrapper = new MimeBodyPart();
                             wrapper.setContent(mmp);
                             root.addBodyPart(wrapper);
                         } else {
-                            log.info("adding info : " + t.getId());
+                            log.debug("adding info : " + t.getId());
                             root.addBodyPart(t.getMimeBodyPart());
                         }
                     }
@@ -194,7 +194,7 @@
             body = body.substring(endpos + endkey.length());
             pos = body.indexOf(startkey);
         }
-        log.info("Found " + results);
+        log.debug("Found " + results);
         return results;
     }
 
@@ -441,7 +441,7 @@
                 if (relatedNodes != null) {
                     return relatedNodes;
                 } else {
-                    log.info("No multipart for " + this);
+                    log.debug("No multipart for " + this);
                 }
             } catch (MessagingException e) {
                 log.error("Failed to get Multipart" + e.getMessage());
@@ -460,7 +460,7 @@
          * @javadoc
          */
         public MimeBodyPart getMimeBodyPart() {
-            log.info("Creating mimebody part for " + this);
+            log.debug("Creating mimebody part for " + this);
             MimeBodyPart mmbp = new MimeBodyPart();
             try {
                 if (number != null && !number.equals("")) {
_______________________________________________
Cvs mailing list
Cvs@lists.mmbase.org
http://lists.mmbase.org/mailman/listinfo/cvs

Reply via email to