lora-aprs / LoRa_APRS_iGate

This is a LoRa APRS iGate/Digi based on an ESP32
https://www.lora-aprs.info
MIT License
348 stars 112 forks source link

Omit sending OTA progress to syslog #196

Closed Mane76 closed 2 years ago

Mane76 commented 2 years ago

By checking the syslog (either local or using syslog.lora-aprs.info) it is visible that OTATask is is sending the start, the progress, the end or the error of an OTA event. OTA start, end and error or only single lines, but progress is 9 (!) pages of unneeded information to syslog.lora-aprs.info. This produces unneeded traffic locally but also produces unneeded traffic to the syslog Server. Currently there are 200+ LoRa_APRS_iGates logging to syslog.lora-aprs.info, the number is steadily increasing.

To reproduce simply check the syslog, all versions are affected.

The expected behaviour would be to omit sending the OTA progress to syslog.

Solution: delete the lines 26, 27 and 28 in src/TaskOTA.cpp

Thank you Manfred

peterus commented 2 years ago

thanks!