Skip to content

Commit e9ceff2

Browse files
author
Veijo Pesonen
committed
[ESP8266] fixes a debug print
1 parent 9a3c9a3 commit e9ceff2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/wifi/esp8266-driver/ESP8266Interface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ int ESP8266Interface::socket_send(void *handle, const void *data, unsigned size)
506506
&& (status != NSAPI_ERROR_OK));
507507

508508
if (status == NSAPI_ERROR_WOULD_BLOCK && socket->proto == NSAPI_TCP) {
509-
debug("Enqueuing the event call");
509+
tr_debug("ESP8266Interface::socket_send(): enqueuing the event call");
510510
_global_event_queue->call_in(100, callback(this, &ESP8266Interface::event));
511511
} else if (status == NSAPI_ERROR_WOULD_BLOCK && socket->proto == NSAPI_UDP) {
512512
status = NSAPI_ERROR_DEVICE_ERROR;

0 commit comments

Comments
 (0)