fix(mqtt_cxx): Removes meaningless printf on subscribed handler (#358)

Removes the printf since the information isn't in the event.

Closes https://github.com/espressif/esp-protocols/issues/356
This commit is contained in:
Euripedes
2023-09-21 08:42:28 +02:00
committed by GitHub
parent 12bacdc3a0
commit bac742df80

View File

@ -215,7 +215,6 @@ void Client::on_disconnected(esp_mqtt_event_handle_t const event)
}
void Client::on_subscribed(esp_mqtt_event_handle_t const event)
{
printf("Subscribed to %.*s\r\n", event->topic_len, event->topic);
}
void Client::on_unsubscribed(esp_mqtt_event_handle_t const event)
{