Skip to content

Commit

Permalink
feat: improve invalid message log
Browse files Browse the repository at this point in the history
  • Loading branch information
petkodes committed Sep 14, 2023
1 parent 7bbcafc commit 9381d92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subgraph-radio/src/operator/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ pub async fn process_message(
Err(e) => {
debug!(
err = tracing::field::debug(e),
"Failed to validate by Graphcast"
"Failed to validate incoming message"
);
false
}
Expand Down Expand Up @@ -466,7 +466,7 @@ pub async fn process_message(
Err(e) => {
debug!(
err = tracing::field::debug(e),
"Failed to validate Graphcast sender"
"Failed to validate incoming message, sender address is invalid"
);
return;
}
Expand Down

0 comments on commit 9381d92

Please sign in to comment.