Merge pull request #1117 from magnuswatn/logformatfix
Fixed small log formatting error in ExceptionHandlingInterceptor.java
This commit is contained in:
commit
02b23d74fd
|
@ -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