trying to set the LOG_LEVEL in the prj.conf, building, cleaning,rebuilding... takes no effect.
what am I missing?
trying to set the LOG_LEVEL in the prj.conf, building, cleaning,rebuilding... takes no effect.
what am I missing?
Can you run menuconfig to see if options are set to expected level?
What does it mean 'no luck'? Logs are not getting printed? Do you see any logs? Is your application using shell or raw uart as the output?
ov, sorry, sure: I see just plain Printk's, no logs.
like, this is visible:
printk("at cmd: %s\n", cmd);
and this not:
LOG_DBG("send: %s", cmd);
Krzysztof, could you please advise where to find: menuconfig ? :-|
You need to type:
ninja menuconfig in a folder where you were compiling your application.
Btw. Did you re-generated (with cmake) project after updating prj.conf?
I'm using Segger SES, let me try on command line...
Thank you!