Skip to content

Commit

Permalink
chore: reclassify very long log message (#3752)
Browse files Browse the repository at this point in the history
The find_chain_split log message is an INFO message with no useful
_consumer_ information, dozens of lines long, hence should be DEBUG
  • Loading branch information
CjS77 authored Jan 26, 2022
1 parent 1d58977 commit 2cbce90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base_layer/core/src/base_node/sync/rpc/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ impl<B: BlockchainBackend + 'static> BaseNodeSyncService for BaseNodeSyncRpcServ
Ok(Response::new(header.into()))
}

#[instrument(skip(self), err)]
#[instrument(level = "debug", skip(self), err)]
async fn find_chain_split(
&self,
request: Request<FindChainSplitRequest>,
Expand Down

0 comments on commit 2cbce90

Please sign in to comment.