Hi,
Is it possible to enable and Different log level from Zephyr cli using Zephyr Logging API?
i am using
LOG_MODULE_REGISTER(AWS, 3);
I want to change or register new level using CLI.
Thanks
Hi,
Is it possible to enable and Different log level from Zephyr cli using Zephyr Logging API?
i am using
Hi,
I have in dept studied the zephyr Logging module we can use achieve this using zephyr built in logging Api.
by setting following configuration
CONFIG_LOG_CMDS=y
and config logging immediate/deferred etc.
we can set different logging level.
C:\v1.9.0\zephyr\subsys\logging
Thanks
Hi,
I have in dept studied the zephyr Logging module we can use achieve this using zephyr built in logging Api.
by setting following configuration
CONFIG_LOG_CMDS=y
and config logging immediate/deferred etc.
we can set different logging level.
C:\v1.9.0\zephyr\subsys\logging
Thanks