From eb98f620348dcbb8c581ea8370792e1296e424d5 Mon Sep 17 00:00:00 2001 From: Alex Bundy Date: Thu, 25 Jan 2024 17:01:53 -0800 Subject: [PATCH] Bot: Log more errors when collecting stake activation info --- bot/src/stake_pool_v0.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/src/stake_pool_v0.rs b/bot/src/stake_pool_v0.rs index f0dbf635..cdfcb1cf 100644 --- a/bot/src/stake_pool_v0.rs +++ b/bot/src/stake_pool_v0.rs @@ -569,8 +569,8 @@ fn create_validator_stake_accounts( Err(err) => { // Just ignore these errors warn!( - "Unable to get activation information for stake account: {}: {}", - stake_address, err + "Unable to get activation information for stake account: {}; vote address: {:?}; validator identity: {:?} {}", + stake_address, vote_address, identity, err ); } }