It seems to be working, if I add this early in my app_main function
Code: Select all
esp_log_set_vprintf(esp_apptrace_vprintf);
Code: Select all
esp_apptrace_flush(ESP_APPTRACE_DEST_TRAX, 100000);
I'd like to have the logs flushed automatically (ideally as fast as possible), so long as it is not worse than UART, performance-wise. Is there a way to configure that, or is there something I'm doing incorrectly that is preventing that?