feat: fixed basic example

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-09-24 00:47:59 +02:00
parent 6db03e37cb
commit 687af13d9c
4 changed files with 98 additions and 35 deletions

View File

@@ -33,7 +33,7 @@ impl InMemoryTransport {
events.insert(transport_key.clone(), sender);
tokio::spawn(async move {
while let Ok(item) = receiver.recv().await {
tracing::info!("default receiver: {}", item.info.transport_name());
tracing::trace!("default receiver: {}", item.info.transport_name());
}
});
}