1
0
mirror of https://github.com/hapifhir/hapi-fhir.git synced 2025-02-25 15:31:34 +00:00

Merge pull request from magnuswatn/logformatfix

Fixed small log formatting error in ExceptionHandlingInterceptor.java
This commit is contained in:
James Agnew 2018-11-15 13:38:07 +01:00 committed by GitHub
commit 02b23d74fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -140,7 +140,7 @@ public class ExceptionHandlingInterceptor extends InterceptorAdapter {
if (statusCode < 500) {
ourLog.warn("Failure during REST processing: {}", theException.toString());
} else {
ourLog.warn("Failure during REST processing: {}", theException);
ourLog.warn("Failure during REST processing", theException);
}
BaseServerResponseException baseServerResponseException = (BaseServerResponseException) theException;