Skip to content

Commit 453fa4f

Browse files
committed
Explicit log to error removed (as described in #885)
1 parent 67fd852 commit 453fa4f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/java/com/microsoft/graph/http/CoreHttpProvider.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,12 +488,10 @@ private <Result, Body, DeserializeType> Result processResponse(final Response re
488488
}
489489
}
490490
} catch (final GraphServiceException ex) {
491-
logger.logError("Graph service exception", ex);
492491
throw ex;
493492
} catch (final Exception ex) {
494493
final ClientException clientException = new ClientException("Error during http request",
495494
ex);
496-
logger.logError("Error during http request", clientException);
497495
throw clientException;
498496
}
499497
}

0 commit comments

Comments
 (0)