From 3fc68e680ae11407b5628b0829fd479a24b114e7 Mon Sep 17 00:00:00 2001 From: SChernykh <15806605+SChernykh@users.noreply.github.com> Date: Thu, 15 May 2025 18:25:53 +0200 Subject: [PATCH] Tweaked log messages --- src/merge_mining_client_tari.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/merge_mining_client_tari.cpp b/src/merge_mining_client_tari.cpp index 0e04dc0..dd3176f 100644 --- a/src/merge_mining_client_tari.cpp +++ b/src/merge_mining_client_tari.cpp @@ -205,17 +205,17 @@ void MergeMiningClientTari::on_external_block(const PoolBlock& block) const uint64_t* b = previous_aux_hashes + NUM_PREVIOUS_HASHES; if (std::find(a, b, *data.u64()) == b) { - LOGWARN(4, "External aux job solution found, but it's not our"); + LOGINFO(4, "External aux job solution found, but it's not our"); } else { - LOGWARN(3, "External aux job solution found, but it's stale"); + LOGINFO(4, "External aux job solution found, but it's stale"); } return; } if (!diff.check_pow(block.m_powHash)) { - LOGINFO(3, "External aux job solution found, but it doesn't have enough PoW"); + LOGINFO(4, "External aux job solution found, but it doesn't have enough PoW (block diff = " << block.m_difficulty << ", Tari diff = " << diff << ')'); return; } }