mirror of
https://github.com/esphome/esphome.git
synced 2026-06-04 01:18:26 +08:00
[nextion] Fix log level for command processing limit message (#15302)
This commit is contained in:
@@ -423,7 +423,7 @@ void Nextion::process_nextion_commands_() {
|
|||||||
DELIMITER_SIZE)) != std::string::npos) {
|
DELIMITER_SIZE)) != std::string::npos) {
|
||||||
#ifdef USE_NEXTION_MAX_COMMANDS_PER_LOOP
|
#ifdef USE_NEXTION_MAX_COMMANDS_PER_LOOP
|
||||||
if (++commands_processed > this->max_commands_per_loop_) {
|
if (++commands_processed > this->max_commands_per_loop_) {
|
||||||
ESP_LOGW(TAG, "Command processing limit exceeded");
|
ESP_LOGV(TAG, "Command limit reached, deferring");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#endif // USE_NEXTION_MAX_COMMANDS_PER_LOOP
|
#endif // USE_NEXTION_MAX_COMMANDS_PER_LOOP
|
||||||
|
|||||||
Reference in New Issue
Block a user