Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 31043a7

Browse files
authored
Make concluded round an info log (#200)
1 parent bff1de1 commit 31043a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/beefy/src/worker.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use std::{
2424
use codec::{Codec, Decode, Encode};
2525
use futures::{future, FutureExt, StreamExt};
2626
use hex::ToHex;
27-
use log::{debug, error, trace, warn};
27+
use log::{debug, error, info, trace, warn};
2828
use parking_lot::Mutex;
2929

3030
use sc_client_api::{Backend, FinalityNotification, FinalityNotifications};
@@ -332,7 +332,7 @@ where
332332

333333
metric_set!(self, beefy_round_concluded, round.1);
334334

335-
debug!(target: "beefy", "🥩 Round #{} concluded, committed: {:?}.", round.1, signed_commitment);
335+
info!(target: "beefy", "🥩 Round #{} concluded, committed: {:?}.", round.1, signed_commitment);
336336

337337
if self
338338
.backend

0 commit comments

Comments
 (0)