Skip to content

Commit d108c7d

Browse files
authored
Turn down log level of null or empty value deserialisation (Azure#24757)
1 parent f243854 commit d108c7d

File tree

1 file changed

+1
-1
lines changed
  • sdk/core/azure-core-management/src/main/java/com/azure/core/management/implementation/polling

1 file changed

+1
-1
lines changed

sdk/core/azure-core-management/src/main/java/com/azure/core/management/implementation/polling/PollOperation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ private static HttpRequest decorateRequest(HttpRequest httpRequest) {
238238
@SuppressWarnings("unchecked")
239239
public static <U> U deserialize(SerializerAdapter serializerAdapter, String value, Type type) {
240240
if (value == null || "".equalsIgnoreCase(value)) {
241-
LOGGER.info("Ignoring decoding of null or empty value to:" + type.getTypeName());
241+
LOGGER.verbose("Ignoring decoding of null or empty value to:" + type.getTypeName());
242242
return null;
243243
} else {
244244
try {

0 commit comments

Comments
 (0)