From 949186400c32e7c8c58839cfbe0e2467aaffc29e Mon Sep 17 00:00:00 2001 From: Justin Kilpatrick Date: Fri, 24 Dec 2021 08:03:13 -0500 Subject: [PATCH] Demote debt update logs to trace these mostly clog up the logging output and do not help at all with debugging on exits. --- rita_common/src/debt_keeper/mod.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rita_common/src/debt_keeper/mod.rs b/rita_common/src/debt_keeper/mod.rs index 051f2f557..32c11387c 100755 --- a/rita_common/src/debt_keeper/mod.rs +++ b/rita_common/src/debt_keeper/mod.rs @@ -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, ); }