Skip to content

Commit 8896438

Browse files
committed
add excinfo to warning log
1 parent 4cc411d commit 8896438

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

msrest/serialization.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1501,7 +1501,8 @@ def failsafe_deserialize(self, target_obj, response_data, content_type=None):
15011501
return self(target_obj, data, content_type=content_type)
15021502
except:
15031503
_LOGGER.warning(
1504-
"Ran into a deserialization error. Ignoring since this is failsafe deserialization"
1504+
"Ran into a deserialization error. Ignoring since this is failsafe deserialization",
1505+
exc_info=True
15051506
)
15061507
return None
15071508

0 commit comments

Comments
 (0)