Fixed log formatting error
This commit is contained in:
parent
0ec8d942a6
commit
52265d248f
|
@ -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…
Reference in New Issue