Skip to content

Commit

Permalink
chore: Remove log spam
Browse files Browse the repository at this point in the history
This log didn't add anything.
  • Loading branch information
klochowicz committed Aug 30, 2023
1 parent 7af87db commit 5c6be9a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion mobile/native/src/event/event_hub.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ impl EventHub {

/// Publishes the given event to all subscribers. Note, that this will be executed in a loop.
pub fn publish(&self, event: &EventInternal) {
tracing::debug!(event = %event, "Publishing an internal event");
if let Some(subscribers) = self.subscribers.get(&EventType::from(event.clone())) {
for subscriber in subscribers {
// todo: we should tokio spawn here.
Expand Down

0 comments on commit 5c6be9a

Please sign in to comment.