ammulder 2005/12/03 21:37:53
Modified: modules/core/src/java/org/openejb/timer
BasicTimerServiceImpl.java
Log:
Reduce INFO log output
Revision Changes Path
1.5 +2 -2
openejb/modules/core/src/java/org/openejb/timer/BasicTimerServiceImpl.java
Index: BasicTimerServiceImpl.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/timer/BasicTimerServiceImpl.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- BasicTimerServiceImpl.java 1 Apr 2005 19:22:35 -0000 1.4
+++ BasicTimerServiceImpl.java 4 Dec 2005 02:37:53 -0000 1.5
@@ -280,7 +280,7 @@
currentThread.setContextClassLoader(classLoader);
timerService.getStack().invoke(invocation);
} catch (Throwable throwable) {
- log.info(throwable);
+ log.warn("Timer invocation failed", throwable);
} finally {
currentThread.setContextClassLoader(oldClassLoader);
}