Skip to content

Commit

Permalink
fix wrong log level (#3680)
Browse files Browse the repository at this point in the history
  • Loading branch information
LesnyRumcajs authored Nov 7, 2023
1 parent 463469d commit b483f72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libp2p/behaviour.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use libp2p::{
swarm::NetworkBehaviour,
Multiaddr,
};
use tracing::warn;
use tracing::{info, warn};

use crate::libp2p::{
chain_exchange::ChainExchangeBehaviour,
Expand Down Expand Up @@ -115,7 +115,7 @@ impl ForestBehaviour {
.with_max_established_per_peer(Some(5)),
);

warn!("libp2p Forest version: {}", FOREST_VERSION_STRING.as_str());
info!("libp2p Forest version: {}", FOREST_VERSION_STRING.as_str());
Ok(ForestBehaviour {
gossipsub,
discovery,
Expand Down

0 comments on commit b483f72

Please sign in to comment.