Actually log the cause of canRead/canWrite failures
Issue: SPR-11403
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2013 the original author or authors.
|
||||
* Copyright 2002-2014 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -165,7 +165,13 @@ public class MappingJackson2HttpMessageConverter extends AbstractHttpMessageConv
|
||||
}
|
||||
Throwable cause = causeRef.get();
|
||||
if (cause != null) {
|
||||
logger.warn("Failed to evaluate deserialization for type: " + javaType);
|
||||
String msg = "Failed to evaluate deserialization for type " + javaType;
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.warn(msg, cause);
|
||||
}
|
||||
else {
|
||||
logger.warn(msg + ": " + cause);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -181,7 +187,13 @@ public class MappingJackson2HttpMessageConverter extends AbstractHttpMessageConv
|
||||
}
|
||||
Throwable cause = causeRef.get();
|
||||
if (cause != null) {
|
||||
logger.warn("Failed to evaluate serialization for type: " + clazz);
|
||||
String msg = "Failed to evaluate serialization for type [" + clazz + "]";
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.warn(msg, cause);
|
||||
}
|
||||
else {
|
||||
logger.warn(msg + ": " + cause);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user