This commit is contained in:
Lucio Lelii 2015-10-20 16:30:40 +00:00
parent b9c828e897
commit afb647487a
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ public class MethodRetriever<T> implements InvocationHandler{
log.error("error invoking method "+method.getName()+" in service "+service.getClass().getCanonicalName()+" using proxy ",proxyEx);
throw new RuntimeException(proxyEx);
}catch(InvocationTargetException ite){
log.error("error invoking method "+method.getName()+" in service "+service.getClass().getCanonicalName()+" using proxy ",ite);
log.error("error invoking method "+method.getName()+" in service "+service.getClass().getCanonicalName()+" using proxy ");
throw ite.getCause();
}finally{
CalledMethodProvider.instance.reset();