[nextion] Fix log level for command processing limit message (#15302)

This commit is contained in:
Edward Firmo
2026-03-30 08:55:40 +02:00
committed by GitHub
parent 18168ad7fd
commit ffbbe5eab3
+1 -1
View File
@@ -423,7 +423,7 @@ void Nextion::process_nextion_commands_() {
DELIMITER_SIZE)) != std::string::npos) {
#ifdef USE_NEXTION_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;
}
#endif // USE_NEXTION_MAX_COMMANDS_PER_LOOP