Different debug console behavior between zephyr 3.2 and 3.5 #66526
-
Beta Was this translation helpful? Give feedback.
Answered by
DerekSnell
Dec 19, 2023
Replies: 2 comments 4 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @MarsMSWu , Best regards |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @MarsMSWu ,
Sorry, CONFIG_LOGGING was an error. As you found, the correct symbol is
CONFIG_LOG
.I was confused by your previous description, and the details of this issue. But based on your last response, and rereading this, it seems your v3.5 port only prints everything when
CONFIG_LOG=n
. Is that correct? I assume you are not using the Logging APIs then. Are you printing to the console withprintk()
?If your app is not using the Logging APIs and features, then you can disable that subsystem. Many of the Zephyr drivers and subsystems use Logging, so you may find it helpful to enable for debugging. If …