Skip to content

Commit

Permalink
Clean up logging
Browse files Browse the repository at this point in the history
  • Loading branch information
howardwu committed Feb 12, 2024
1 parent 310d9b6 commit 735ad69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/router/messages/src/helpers/codec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl<N: Network> Decoder for MessageCodec<N> {
match Message::read_le(reader) {
Ok(message) => Ok(Some(message)),
Err(error) => {
error!("Failed to deserialize a message: {}", error);
warn!("Failed to deserialize a message - {}", error);
Err(std::io::ErrorKind::InvalidData.into())
}
}
Expand Down

0 comments on commit 735ad69

Please sign in to comment.