- Timestamp:
- 06/09/07 00:43:00 (18 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0-Beta2/components/blitz/src/ome/services/blitz/impl/Interceptor.java
r1568 r1608 15 15 import org.aopalliance.intercept.MethodInterceptor; 16 16 import org.aopalliance.intercept.MethodInvocation; 17 import org.apache.commons.logging.Log; 18 import org.apache.commons.logging.LogFactory; 17 19 18 20 /** … … 22 24 public class Interceptor implements MethodInterceptor { 23 25 26 private static Log log = LogFactory.getLog(Interceptor.class); 27 24 28 Class iface; 25 29 … … 53 57 retVal = invoker.invoke(service, __current, mapper, strippedArgs); 54 58 } catch (Throwable t) { 55 t.printStackTrace();59 log.error("ERROR: ", t); 56 60 throw t; 57 61 }
