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) {
|
if (statusCode < 500) {
|
||||||
ourLog.warn("Failure during REST processing: {}", theException.toString());
|
ourLog.warn("Failure during REST processing: {}", theException.toString());
|
||||||
} else {
|
} else {
|
||||||
ourLog.warn("Failure during REST processing: {}", theException);
|
ourLog.warn("Failure during REST processing", theException);
|
||||||
}
|
}
|
||||||
|
|
||||||
BaseServerResponseException baseServerResponseException = (BaseServerResponseException) theException;
|
BaseServerResponseException baseServerResponseException = (BaseServerResponseException) theException;
|
||||||
|
|
Loading…
Reference in New Issue