From baa70cd458e7a22689811a2b1d9576eb2d274083 Mon Sep 17 00:00:00 2001 From: Cyrix126 Date: Mon, 29 Jul 2024 16:46:04 +0200 Subject: [PATCH] fix: change info to debug line inside p2pool loop process --- src/helper/p2pool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helper/p2pool.rs b/src/helper/p2pool.rs index 01e6f21..ff010bd 100644 --- a/src/helper/p2pool.rs +++ b/src/helper/p2pool.rs @@ -550,7 +550,7 @@ impl Helper { if (last_p2pool_request_expired || lock!(pub_api).p2pool_difficulty_u64 <= 100000) && lock!(process).state == ProcessState::Alive { - info!("P2Pool Watchdog | Attempting [network] & [pool] API file read"); + debug!("P2Pool Watchdog | Attempting [network] & [pool] API file read"); if let (Ok(network_api), Ok(pool_api)) = ( Self::path_to_string(&api_path_network, ProcessName::P2pool), Self::path_to_string(&api_path_pool, ProcessName::P2pool),