Page 1 of 1

Log Settings Web Log Level

Posted: 30 Dec 2023, 18:43
by Rob73
I have the latest firmware normal mega-20231225 on an esp8266 D1 mini. On the advanced settings, web log level is missing some options in this build. I was just looking for the debug option and noticed it was not there. I flashed with the previous 3 builds and it was there on those. Any selection that had debug is missing. Just something I noticed.

I have an esp32 board flashed with the normal esp32 20231225 build and it has the options for debug still available.

I really couldnt tell from the github release page if it was removed or not.

Rob

Re: Log Settings Web Log Level

Posted: 30 Dec 2023, 20:20
by Ath
All ESP8266 builds, recently also the NORMAL builds, have been set with the flag 'BUILD_NO_DEBUG', meaning that all debug logging is removed from the code during compilation, to reduce build-size.

NB: Many other ESP8266 builds also have the 'LIMIT_BUILD_SIZE' flag set, that will remove even more, less essential, features from the code, just to be able to fit in more plugins, like in the Collection builds.

Re: Log Settings Web Log Level

Posted: 30 Dec 2023, 20:35
by Rob73
Thanks.

Rob