forked from espressif/esp-idf
fix(esp_http_client): correct the typo in the error log string
Corrected the module name in the error log. ("https_ota" to "http_client")
This commit is contained in:
@@ -204,7 +204,7 @@ static void http_dispatch_event_to_event_loop(int32_t event_id, const void* even
|
||||
{
|
||||
esp_err_t err = esp_event_post(ESP_HTTP_CLIENT_EVENT, event_id, event_data, event_data_size, portMAX_DELAY);
|
||||
if (err != ESP_OK) {
|
||||
ESP_LOGE(TAG, "Failed to post https_ota event: %"PRId32", error: %s", event_id, esp_err_to_name(err));
|
||||
ESP_LOGE(TAG, "Failed to post http_client event: %"PRId32", error: %s", event_id, esp_err_to_name(err));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user