mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-25 15:31:34 +00:00
Merge pull request #1117 from magnuswatn/logformatfix
Fixed small log formatting error in ExceptionHandlingInterceptor.java
This commit is contained in:
commit
02b23d74fd
2
hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ExceptionHandlingInterceptor.java
2
hapi-fhir-server/src/main/java/ca/uhn/fhir/rest/server/interceptor/ExceptionHandlingInterceptor.java
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user