chore: remove extra logs
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-05-12 14:35:35 +02:00
parent 5548d8e36e
commit 874045dca8
8 changed files with 21 additions and 14 deletions

View File

@@ -65,6 +65,10 @@ impl<'a> GraphExplorerState<'a> {
GraphUpdatedEvent::Failure(e) => {
tracing::error!("graph update failed: {}", e);
}
GraphUpdatedEvent::Optimistic(graph) => {
tracing::trace!("graph updated optimistically");
self.graph = Some(graph.clone());
}
}
}