-
I rebuilt one of my nodes following the updates from PR200 using a 5 second time window, and now I see on_update is triggering all the updates as fast as it possibly can (though the data only changes every 5 seconds, the log shows it is spamming my HA box/network with useless data) Anyone else experiencing this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
When you say it is spamming HA, do you mean log messages? My understanding (which could be wrong) is that log messages are only sent if actively connected through the ESPHome command line, though I believe if you use MQTT then it always sends the logs to a specific MQTT topic. Regardless, these can be removed. You can decrease the amount of log messages by lowering the logger level to WARN (or lower). This, in general, improves performance quite a bit. Try adding this to your config
If that works well for you and others, then I think we should add it to the base configuration in the repository. The component is quite stable on my end, so I don't think seeing the full debug messages is particularly useful. |
Beta Was this translation helpful? Give feedback.
When you say it is spamming HA, do you mean log messages? My understanding (which could be wrong) is that log messages are only sent if actively connected through the ESPHome command line, though I believe if you use MQTT then it always sends the logs to a specific MQTT topic. Regardless, these can be removed. You can decrease the amount of log messages by lowering the logger level to WARN (or lower). This, in general, improves performance quite a bit.
Try adding this to your config
If that works well for you and others, then I think we should add it to the base configuration in the repository. The comp…