-
Notifications
You must be signed in to change notification settings - Fork 171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Have logging on zephyr use sys_log mechanism #38
Comments
This won't directly work with the current libmetal logging API. The problem is that the Zephyr syslog APIs are macros ( However, we could call the |
I'll add a comment to zephyrproject-rtos/zephyr#6186 to improve the logging API in zephyr to allow us to connect this more directly. |
@skordal can we use or tie into LOG_NO_COLOR()? |
That won't work either, we will need a function that can take a (My suggestion about using the SYS_LOG_BACKEND_FN actually won't work either, for the same reason). |
We currently use printk, but should tie into the proper logging system in zephyr via include/logging/sys_log.h.
The text was updated successfully, but these errors were encountered: