Skip to content

Commit a72b8d5

Browse files
me-no-devigrr
authored andcommitted
Remove leftover debug
1 parent 831917a commit a72b8d5

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Diff for: libraries/WiFi/src/WiFiClient.cpp

-7
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,18 @@
2828

2929
WiFiClient::WiFiClient():sockfd(-1),_connected(false),next(NULL)
3030
{
31-
//ets_printf("WiFiClient(%d)\n", sockfd);
3231
}
3332

3433
WiFiClient::WiFiClient(int fd):sockfd(fd),_connected(true),next(NULL)
3534
{
36-
ets_printf("WiFiClient(%d)\n", sockfd);
3735
}
3836

3937
WiFiClient::~WiFiClient()
4038
{
41-
if(sockfd >= 0) {
42-
ets_printf("~WiFiClient(%d)\n", sockfd);
43-
}
44-
//stop();
4539
}
4640

4741
WiFiClient & WiFiClient::operator=(const WiFiClient &other)
4842
{
49-
ets_printf("WiFiClient(%d) = (%d)\n", sockfd, other.sockfd);
5043
stop();
5144
sockfd = other.sockfd;
5245
_connected = other._connected;

0 commit comments

Comments
 (0)