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:
parent
12bacdc3a0
commit
bac742df80
1 changed files with 0 additions and 1 deletions
|
|
@ -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)
|
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)
|
void Client::on_unsubscribed(esp_mqtt_event_handle_t const event)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue