Adjusted more logging levels

This commit is contained in:
Matt Hess
2025-12-09 00:10:05 +00:00
parent 0a7d287c40
commit 3316751f5e

View File

@@ -385,7 +385,7 @@ void BlockTemplate::update(const MinerData& data, const Mempool& mempool, const
// DEBUG: Show share/reward assignment
for (size_t i = 0; i < m_shares.size(); ++i) {
LOGINFO(1, "BlockTemplate share[" << i << "]: spend_key=" << m_shares[i].m_wallet->spend_public_key() << " weight=" << m_shares[i].m_weight << " reward=" << m_rewards[i]);
LOGINFO(3, "BlockTemplate share[" << i << "]: spend_key=" << m_shares[i].m_wallet->spend_public_key() << " weight=" << m_shares[i].m_weight << " reward=" << m_rewards[i]);
}
auto get_reward_amounts_weight = [this]() {