Skip to content

Commit 81586c2

Browse files
feat(ci): Reduce log output more1
1 parent f73e904 commit 81586c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

host/usb/test/target_test/usb_host/main/ctrl_client_async_seq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ void ctrl_client_async_seq_task(void *arg)
121121

122122
// Wait to be started by main thread
123123
TEST_ASSERT_EQUAL_MESSAGE(pdTRUE, ulTaskNotifyTake(pdTRUE, pdMS_TO_TICKS(2000)), "Ctrl client not started from main thread");
124-
ESP_LOGI(CTRL_CLIENT_TAG, "Starting");
124+
ESP_LOGD(CTRL_CLIENT_TAG, "Starting");
125125

126126
// Handle device enumeration separately, wait for 1000ms for the device to be enumerated
127127
// Catch an error in case the device is not enumerated correctly

host/usb/test/target_test/usb_host/main/msc_client_async_seq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ void msc_client_async_seq_task(void *arg)
156156

157157
// Wait to be started by main thread
158158
TEST_ASSERT_EQUAL_MESSAGE(pdTRUE, ulTaskNotifyTake(pdTRUE, pdMS_TO_TICKS(2000)), "MSC client not started from main thread");
159-
ESP_LOGI(MSC_CLIENT_TAG, "Starting");
159+
ESP_LOGD(MSC_CLIENT_TAG, "Starting");
160160

161161
// Handle device enumeration separately, wait for 1000ms for the device to be enumerated
162162
// Catch an error in case the device is not enumerated correctly

0 commit comments

Comments
 (0)