Skip to content

Commit 11b2142

Browse files
committed
Disable AWS_OTA logs while running IDT.
1 parent fb15b31 commit 11b2142

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

GettingStartedGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ IDT runs a suite of tests that include testing the device's transport interface
541541
- Disable all test cases in Freatured FreeRTOS IoT Integration -> Qualification Test Configurations -> Qualification Execution Test Configurations by menuconfig.
542542
- run "idf.py fullclean" to clear local CMAKE cache.
543543
544-
*Note: The log of module `esp_ota_ops`, `ota_pal` and `esp-tls-mbedtls` will be disabled when `Run qualification test` is on. You can enable them back by commenting out `esp_log_level_set` in [main.c](./main/main.c).*
544+
*Note: The log of module `esp_ota_ops`, `AWS_OTA` and `esp-tls-mbedtls` will be disabled when `Run qualification test` is on. You can enable them back by commenting out `esp_log_level_set` in [main.c](./main/main.c).*
545545
546546
### 7.2 Download AWS IoT Device Tester
547547

main/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ static void prvStartEnabledDemos( void )
297297
/* Disable some logs to avoid failure on IDT log parser. */
298298
esp_log_level_set("esp_ota_ops", ESP_LOG_NONE);
299299
esp_log_level_set("esp-tls-mbedtls", ESP_LOG_NONE);
300-
esp_log_level_set("ota_pal", ESP_LOG_NONE);
300+
esp_log_level_set("AWS_OTA", ESP_LOG_NONE);
301301

302302
if( ( xResult = xQualificationStart() ) != pdPASS )
303303
{

0 commit comments

Comments
 (0)