mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-16 15:27:46 +00:00
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
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:
parent
dd1cdf25b6
commit
baa70cd458
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||||
|
|
Loading…
Reference in a new issue