fix: change info to debug line inside p2pool loop process
Some checks failed
Audit / audit (push) Has been cancelled
CI / ci (macos-latest) (push) Has been cancelled
CI / ci (ubuntu-latest) (push) Has been cancelled
Rust / fmt (push) Has been cancelled
Rust / test (macos-latest) (push) Has been cancelled
Rust / test (ubuntu-latest) (push) Has been cancelled
Rust / typo (push) Has been cancelled
Rust / clippy (macos-latest) (push) Has been cancelled
Rust / clippy (ubuntu-latest) (push) Has been cancelled
Rust / check (macos-latest) (push) Has been cancelled
Rust / check (ubuntu-latest) (push) Has been cancelled
Rust / doc (macos-latest) (push) Has been cancelled
Rust / doc (ubuntu-latest) (push) Has been cancelled
Typo / typo (push) Has been cancelled

This commit is contained in:
Cyrix126 2024-07-29 16:46:04 +02:00
parent dd1cdf25b6
commit baa70cd458

View file

@ -550,7 +550,7 @@ impl Helper {
if (last_p2pool_request_expired || lock!(pub_api).p2pool_difficulty_u64 <= 100000) if (last_p2pool_request_expired || lock!(pub_api).p2pool_difficulty_u64 <= 100000)
&& lock!(process).state == ProcessState::Alive && 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)) = ( if let (Ok(network_api), Ok(pool_api)) = (
Self::path_to_string(&api_path_network, ProcessName::P2pool), Self::path_to_string(&api_path_network, ProcessName::P2pool),
Self::path_to_string(&api_path_pool, ProcessName::P2pool), Self::path_to_string(&api_path_pool, ProcessName::P2pool),