Unverified Commit 839dba9a authored by Bastian Köcher's avatar Bastian Köcher Committed by GitHub
Browse files

Use correct logging target for network bridge (#2057)

parent 8c1a5a5b
Pipeline #115784 passed with stages
in 31 minutes and 42 seconds
......@@ -155,7 +155,7 @@ impl Network for Arc<sc_network::NetworkService<Block, Hash>> {
fn start_send(self: Pin<&mut Self>, action: NetworkAction) -> SubsystemResult<()> {
match action {
NetworkAction::ReputationChange(peer, cost_benefit) => {
tracing::debug!("reputation: {:?} for {}", cost_benefit, peer);
tracing::debug!(target: LOG_TARGET, "Changing reputation: {:?} for {}", cost_benefit, peer);
self.0.report_peer(
peer,
cost_benefit,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment