From 47545b432c7aecb1e4187ea74db5306a1f3a2573 Mon Sep 17 00:00:00 2001 From: Erik Olof Gunnar Andersson Date: Fri, 15 Nov 2024 17:04:11 +0100 Subject: [PATCH] Reduce invalid job found from error to info --- components/asic/bm1366.c | 2 +- components/asic/bm1368.c | 2 +- components/asic/bm1370.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/asic/bm1366.c b/components/asic/bm1366.c index 097db33dd..54305edfa 100644 --- a/components/asic/bm1366.c +++ b/components/asic/bm1366.c @@ -693,7 +693,7 @@ task_result * BM1366_proccess_work(void * pvParameters) GlobalState * GLOBAL_STATE = (GlobalState *) pvParameters; if (GLOBAL_STATE->valid_jobs[job_id] == 0) { - ESP_LOGE(TAG, "Invalid job found, 0x%02X", job_id); + ESP_LOGI(TAG, "Invalid job found, 0x%02X", job_id); return NULL; } diff --git a/components/asic/bm1368.c b/components/asic/bm1368.c index 12ec8c4a5..cc2b26848 100644 --- a/components/asic/bm1368.c +++ b/components/asic/bm1368.c @@ -432,7 +432,7 @@ task_result * BM1368_proccess_work(void * pvParameters) GlobalState * GLOBAL_STATE = (GlobalState *) pvParameters; if (GLOBAL_STATE->valid_jobs[job_id] == 0) { - ESP_LOGE(TAG, "Invalid job found, 0x%02X", job_id); + ESP_LOGI(TAG, "Invalid job found, 0x%02X", job_id); return NULL; } diff --git a/components/asic/bm1370.c b/components/asic/bm1370.c index 7ab12d506..24da50e0a 100644 --- a/components/asic/bm1370.c +++ b/components/asic/bm1370.c @@ -509,7 +509,7 @@ task_result * BM1370_proccess_work(void * pvParameters) GlobalState * GLOBAL_STATE = (GlobalState *) pvParameters; if (GLOBAL_STATE->valid_jobs[job_id] == 0) { - ESP_LOGE(TAG, "Invalid job nonce found, 0x%02X", job_id); + ESP_LOGI(TAG, "Invalid job nonce found, 0x%02X", job_id); return NULL; }