You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clarity-serialization/src/types/serialization.rs
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -483,8 +483,7 @@ impl Value {
483
483
if bytes_read > expect_size asu64{
484
484
// this can happen due to sanitization, so its no longer indicative of a *problem* with the node.
485
485
debug!(
486
-
"Deserialized more bytes than expected size during deserialization. Expected size = {}, bytes read = {}, type = {}",
487
-
expect_size, bytes_read, expected_type,
486
+
"Deserialized more bytes than expected size during deserialization. Expected size = {expect_size}, bytes read = {bytes_read}, type = {expected_type:?}"
488
487
);
489
488
}
490
489
}
@@ -1297,7 +1296,7 @@ impl StacksMessageCodec for Value {
0 commit comments