diff options
| author | Lucian Copeland <hierophect@gmail.com> | 2020-10-06 13:29:12 -0400 |
|---|---|---|
| committer | Lucian Copeland <hierophect@gmail.com> | 2020-10-06 13:29:12 -0400 |
| commit | 68cb384f8faed451c3e31a83ae087646b0c0a9f6 (patch) | |
| tree | 895e71507d62f9e6e8c7039d44e380167f999153 /shared-bindings/socketpool/Socket.c | |
| parent | f90eb23db1217e60e7e5be5b7d5e3c5d079ea8cc (diff) | |
Remove logging from shared-bindings, fix translations, revert config target macro
Diffstat (limited to 'shared-bindings/socketpool/Socket.c')
| -rw-r--r-- | shared-bindings/socketpool/Socket.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/shared-bindings/socketpool/Socket.c b/shared-bindings/socketpool/Socket.c index de05b8eb4..b0af57a5d 100644 --- a/shared-bindings/socketpool/Socket.c +++ b/shared-bindings/socketpool/Socket.c @@ -36,8 +36,6 @@ #include "py/runtime.h" #include "py/mperrno.h" -static const char* TAG = "socket binding"; - //| class Socket: //| """TCP, UDP and RAW socket. Cannot be created directly. Instead, call //| `SocketPool.socket()`. @@ -182,7 +180,6 @@ STATIC mp_obj_t socketpool_socket_connect(mp_obj_t self_in, mp_obj_t addr_in) { bool ok = common_hal_socketpool_socket_connect(self, host, hostlen, port); if (!ok) { - ESP_EARLY_LOGW(TAG, "socket connect failed"); mp_raise_OSError(0); } |
