okhttp OnFailureInterceptor should log exception info (#3381)

This commit is contained in:
qxo 2019-08-30 22:39:28 +08:00 committed by 吴晟 Wu Sheng
parent 54614a0594
commit 77736c5e7d
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public class OnFailureInterceptor implements InstanceMethodsAroundInterceptor {
@Override
public void beforeMethod(EnhancedInstance objInst, Method method, Object[] allArguments, Class<?>[] argumentsTypes,
MethodInterceptResult result) throws Throwable {
ContextManager.activeSpan().errorOccurred();
ContextManager.activeSpan().errorOccurred().log((Throwable)allArguments[1]);
}
@Override