Skip to content

Commit d860377

Browse files
committed
Adjust logging
1 parent 23c66d3 commit d860377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ static const char *const TAG = "MAIN";
2020
void setup()
2121
{
2222
HWSerial.begin(115200);
23+
delay(200); // wait for the serial monitor to be ready
2324
HWSerial.setDebugOutput(true);
2425
ESP_LOGV(TAG, "verbose");
2526
ESP_LOGD(TAG, "debug");
2627
ESP_LOGI(TAG, "info");
2728
ESP_LOGW(TAG, "warning");
2829
ESP_LOGE(TAG, "error");
29-
delay(200); // wait for the serial monitor to be ready
3030
std::cout << "Started program" << std::endl;
3131
Storage::begin();
3232
}

0 commit comments

Comments
 (0)