cleaned up logging
[org.ibex.mail.git] / src / org / ibex / mail / target / Script.java
index 67eb64b..11be29a 100644 (file)
@@ -52,9 +52,8 @@ public class Script extends Target {
     private synchronized void reallyAccept(Message m) throws IOException, MailException, JSExn {
         this.m = m;
         try {
-            Log.info(this, "invoking config...");
             Object ret = js.call(m, null, null, null, 1);
-            Log.info(this, "config returned " + ret);
+            Log.debug(this, "configuration script returned " + ret);
             if (ret == null) throw new IOException("configuration script returned null");
             if (ret instanceof Target)      ((Target)ret).accept(m);
             //else if (ret instanceof Filter) ((Filter)ret).process(m);