Getting extra status info after issuing a command to change a setting from the command line. #142
-
This is sort of a complicated problem to explain but I have an issue where if I issue a command to change a setting from the command line in Openbuilds Control, ioSender or from my app that I am trying to develop, there is extra status info being returned and I can't figure out how to suppress it.
The change is applied ok. Why do I get the info about the GPIO pins? This only happens if I build from source or if I use WebBuilder and select my options. If I use the firmware provided with Openbuilds, this does not occur. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Because logging has been enabled in the SDK even when it is disabled in the provided sdkconfig file.
I do not know why when you compile locally but the logging in Web Builder builds is due to platformio not using the provided sdkconfig file anymore. I had to clean the project, delete an autogenerated sdkconfig file and rename sdkconfig to sdkconfig.defaults to make it work again. So something has changed in the platformio build system because the old Web Builder server did not behave like this. |
Beta Was this translation helpful? Give feedback.
Because logging has been enabled in the SDK even when it is disabled in the provided sdkconfig file.
I do not know why when you compile locally but the logging in Web Builder builds is due to platformio not using the provided sdkconfig file anymore. I had to clean the project, delete an autogenerated sdkconfig file and rename sdkconfig to sdkconfig.defaults to make it work again. So something has changed in the platformio build system because the old Web Builder server did not behave like this.