Skip to content

Commit

Permalink
removing log (#2140)
Browse files Browse the repository at this point in the history
* Use right function for BSSID

* removing log
  • Loading branch information
Luc authored and me-no-dev committed Dec 3, 2018
1 parent 7a33286 commit 5cfff19
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions libraries/WiFi/src/WiFiClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -439,9 +439,8 @@ uint8_t WiFiClient::connected()
if (_connected) {
uint8_t dummy;
int res = recv(fd(), &dummy, 0, MSG_DONTWAIT);
if(res < 0) {
log_e("RES: %d", res);
}
// avoid unused var warning by gcc
(void)res;
switch (errno) {
case EWOULDBLOCK:
case ENOENT: //caused by vfs
Expand Down

0 comments on commit 5cfff19

Please sign in to comment.