Fix tracing error import in da service (#392)

This commit is contained in:
Daniel Sanchez 2023-09-11 19:21:27 +02:00 committed by GitHub
parent 8da13f7012
commit 7cabddc71f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -18,4 +18,4 @@ tokio = { version = "1", features = ["sync", "macros"] }
tokio-stream = "0.1"
[features]
libp2p = ["nomos-network/nomos-libp2p"]
libp2p = ["nomos-network/libp2p"]

View File

@ -15,7 +15,7 @@ use serde::de::DeserializeOwned;
use serde::Serialize;
use tokio_stream::wrappers::BroadcastStream;
use tokio_stream::StreamExt;
use tracing::log::error;
use tracing::error;
pub const NOMOS_DA_TOPIC: &str = "NomosDa";