Skip to content

Commit

Permalink
Merge pull request #102 from EspressoSystems/ab/debug-level-log
Browse files Browse the repository at this point in the history
change handle_event log from error to debug
  • Loading branch information
imabdulbasit authored Jul 24, 2024
2 parents efe92b2 + 9cb15d8 commit a9d931e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/events_source.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl<Types: NodeType> EventsStreamer<Types> {
impl<Types: NodeType> EventConsumer<Types> for EventsStreamer<Types> {
async fn handle_event(&mut self, event: Event<Types>) {
if let Err(e) = self.subscriber_send_channel.broadcast(event.into()).await {
tracing::error!("Error broadcasting the event: {:?}", e);
tracing::debug!("Error broadcasting the event: {:?}", e);
}
}
}
Expand Down

0 comments on commit a9d931e

Please sign in to comment.