Silence noisy error logs

This commit is contained in:
2025-10-08 17:35:45 -04:00
parent 948b706262
commit 2f973da599
2 changed files with 2 additions and 2 deletions

View File

@@ -274,7 +274,7 @@ esp_err_t DataLinkManager::receive(uint8_t* data, size_t data_len, size_t* recv_
esp_err_t res = phys_comms->receive(data, data_len, recv_len, curr_channel);
if (res != ESP_OK){
ESP_LOGE(DEBUG_LINK_TAG, "RMT Failed to receive");
ESP_LOGW(DEBUG_LINK_TAG, "RMT Failed to receive");
return ESP_ERR_TIMEOUT;
}