[ESP8266] fixes a debug print

pull/9331/head
Veijo Pesonen 2019-01-10 12:32:53 +02:00
parent 9a3c9a30b3
commit e9ceff2450
1 changed files with 1 additions and 1 deletions

View File

@ -506,7 +506,7 @@ int ESP8266Interface::socket_send(void *handle, const void *data, unsigned size)
&& (status != NSAPI_ERROR_OK));
if (status == NSAPI_ERROR_WOULD_BLOCK && socket->proto == NSAPI_TCP) {
debug("Enqueuing the event call");
tr_debug("ESP8266Interface::socket_send(): enqueuing the event call");
_global_event_queue->call_in(100, callback(this, &ESP8266Interface::event));
} else if (status == NSAPI_ERROR_WOULD_BLOCK && socket->proto == NSAPI_UDP) {
status = NSAPI_ERROR_DEVICE_ERROR;