Search found 1 match

by KoolPox
Sun Nov 17, 2024 12:04 pm
Forum: ESP-IDF
Topic: How to show Date and Time in log?
Replies: 4
Views: 3968

Re: How to show Date and Time in log?

One method to do this is to edit the original routine to be weakly linked (STM do this extensively in their APIs), thus: [esp32/esp-idf_v5.3/components/log/log_freertos.c] // plc 2024Nov17 - make weak linkage #pragma weak esp_log_system_timestamp char *esp_log_system_timestamp(void) then you can jus...