Is there any way in Mongoose OS to disable all the log statements?
I need it as It is taking a longer time to execute my code.
Try
config_schema:
- ["debug.level", -1]
Output is :
[Apr 9 18:08:38.434] mgos_vfs.c:347 /: size 233681, used: 32881, free: 200800
[Apr 9 18:08:38.658] Coex register schm btdm cb faild
[Apr 9 18:08:38.881]
Will is also increase my execution time?
as LOG / print statements makes controller a bit slow…
To stop it a little bit earlier
- ["debug.stdout_uart", -1]
- ["debug.stderr_uart", -1]
It worked as expected… thanks