Skip to content

Commit

Permalink
Demote debt update logs to trace
Browse files Browse the repository at this point in the history
these mostly clog up the logging output and do not help at all with
debugging on exits.
  • Loading branch information
jkilpatr committed Dec 24, 2021
1 parent 977fd5b commit 9491864
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rita_common/src/debt_keeper/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,11 @@ impl DebtKeeper {
// the debt we started this round with

if debt_data.debt != Int256::zero() {
info!(
trace!(
"debt update for {}: debt: {}, payment balance: {}",
ident.wg_public_key, debt_data.debt, debt_data.incoming_payments,
ident.wg_public_key,
debt_data.debt,
debt_data.incoming_payments,
);
}

Expand Down

0 comments on commit 9491864

Please sign in to comment.