You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2021/04/01 03:36:40 UTC

[GitHub] [incubator-nuttx] donghengqaz commented on issue #3157: esp32: syslog messages from boot interfere with other syslog messages

donghengqaz commented on issue #3157:
URL: https://github.com/apache/incubator-nuttx/issues/3157#issuecomment-811613738


   @v01d Thank you for your detailed explanation, I enable timestamp and catch the same log. We add other note to check this issue, the main reason is that: like log `I(123) wifi:pm start, type 1`, it contains of 3 part:
   1. `I(123) wifi:`, this log is outoput by `_log_write`
   2. `pm start, type 1`, this log is outoput by `_log_writev`
   3. `\n`, this log is outoput by `_log_write`
   
   So when adding timestamp  prefix, you see the log became: `[    0.080000] wifi: I (123) wifi:[    0.080000] pm start, type 1[    0.080000] wifi: `.
   
   Firstly I will report this issue to internal Wi-Fi team and advice them to combine the 3 parts into 1, but it comes a little later.
   So secondly I will try to remove part 1 & 3 from Wi-Fi adapter driver in NuttX. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org