You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our project we're using esp_log_set_vprintf to combine logs from esp-idf and our app and send them to custom logger. Logs from other modules comes as single message, but from wifi module message comes separated in three:
As there no way - is it? - to find that this is single message and not three different ones, in final log it looks something like this:
I (6960) wifi:
I (6960) : state: init -> auth (b0)
This does not break anything, but make logs look worse than they could. Is this the issue on my end or was this made intentional for some reason? Can this be fixed in library to look like other components?
The text was updated successfully, but these errors were encountered:
In our project we're using
esp_log_set_vprintf
to combine logs from esp-idf and our app and send them to custom logger. Logs from other modules comes as single message, but fromwifi
module message comes separated in three:As there no way - is it? - to find that this is single message and not three different ones, in final log it looks something like this:
This does not break anything, but make logs look worse than they could. Is this the issue on my end or was this made intentional for some reason? Can this be fixed in library to look like other components?
The text was updated successfully, but these errors were encountered: