ceki        2004/11/20 10:03:37

  Modified:    src/java/org/apache/log4j/scheduler Scheduler.java
  Log:
  LogLog related changes
  
  Revision  Changes    Path
  1.5       +2 -4      
logging-log4j/src/java/org/apache/log4j/scheduler/Scheduler.java
  
  Index: Scheduler.java
  ===================================================================
  RCS file: 
/home/cvs/logging-log4j/src/java/org/apache/log4j/scheduler/Scheduler.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Scheduler.java    22 Apr 2004 20:15:41 -0000      1.4
  +++ Scheduler.java    20 Nov 2004 18:03:37 -0000      1.5
  @@ -19,9 +19,6 @@
   import java.util.List;
   import java.util.Vector;
   
  -import org.apache.log4j.helpers.LogLog;
  -
  -
   /**
    * A simple but still useful implementation of a Scheduler (in memory only).
    * 
  @@ -184,7 +181,8 @@
       try {
         job.execute();
       } catch(Exception e) {
  -      LogLog.error("The execution of the job threw an exception", e);
  +      System.err.println("The execution of the job threw an exception");
  +      e.printStackTrace(System.err);
       }
     }
     
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to