• Views
  • Iteration Report
  • My Iteration Report
  •  
OMERO.server
  • Login
  • Help/Guide
  • About Trac
  • Preferences
  • Wiki
  • Timeline
  • Roadmap
  • Browse Source
  • View Tickets
  • Search

Context Navigation

  • ← Previous Change
  • Next Change →

Changeset 1608 for branches/3.0-Beta2/components/blitz/src/ome/services/blitz/impl/Interceptor.java

Show
Ignore:
Timestamp:
06/09/07 00:43:00 (18 months ago)
Author:
david
Message:

replace printStackTrace() ticket #730

Files:
1 modified

  • branches/3.0-Beta2/components/blitz/src/ome/services/blitz/impl/Interceptor.java (modified) (3 diffs)

Legend:

Unmodified
Added
Removed
  • branches/3.0-Beta2/components/blitz/src/ome/services/blitz/impl/Interceptor.java

    r1568 r1608  
    1515import org.aopalliance.intercept.MethodInterceptor; 
    1616import org.aopalliance.intercept.MethodInvocation; 
     17import org.apache.commons.logging.Log; 
     18import org.apache.commons.logging.LogFactory; 
    1719 
    1820/** 
    … …  
    2224public class Interceptor implements MethodInterceptor { 
    2325 
     26    private static Log log = LogFactory.getLog(Interceptor.class); 
     27     
    2428    Class iface; 
    2529 
    … …  
    5357            retVal = invoker.invoke(service, __current, mapper, strippedArgs); 
    5458        } catch (Throwable t) { 
    55             t.printStackTrace(); 
     59            log.error("ERROR: ", t); 
    5660            throw t; 
    5761        } 

Download in other formats:

  • Unified Diff
  • Zip Archive

Trac Powered

Powered by Trac 0.11
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/