what is the info printed with esp_log
Posted: Mon May 24, 2021 2:38 pm
I developp an APP with esp-IDF under Eclipse.
I use some instruction like ESP_LOGI(TAG_TX, " %s ",msg_V);
where TAG_TX is static const char *TAG_TX = "->";
and char msg_V[]={'V','N','2','.','0' ,'\n'};
Resulting on the output terminal in
<27>[0;32mI (25907) ->: VN2.0
nota <27> is 0x1B ( escape char) in hexa
Can somebody tells me what are those complementary info before the expected ->: VN2.0
I suppose that (25907) is a timestamp? and what about 0x1B[0;32ml
Is it possible not to print those?
Help appreciated
Pierre
I use some instruction like ESP_LOGI(TAG_TX, " %s ",msg_V);
where TAG_TX is static const char *TAG_TX = "->";
and char msg_V[]={'V','N','2','.','0' ,'\n'};
Resulting on the output terminal in
<27>[0;32mI (25907) ->: VN2.0
nota <27> is 0x1B ( escape char) in hexa
Can somebody tells me what are those complementary info before the expected ->: VN2.0
I suppose that (25907) is a timestamp? and what about 0x1B[0;32ml
Is it possible not to print those?
Help appreciated
Pierre