Merge pull request #1117 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
1 changed files with 1 additions and 1 deletions

View File

@ -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;