Skip to content

Commit c2488bc

Browse files
committed
Less debug output from slist
1 parent 145b736 commit c2488bc

File tree

1 file changed

+0
-2
lines changed
  • hardware/esp8266com/esp8266/libraries/ESP8266WiFi/src/include

1 file changed

+0
-2
lines changed

hardware/esp8266com/esp8266/libraries/ESP8266WiFi/src/include/slist.h

-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,12 @@ class SList {
99
protected:
1010

1111
static void _add(T* self) {
12-
DEBUGV("%s %08x %08x\n", __func__, (uint32_t) self, (uint32_t) _s_first);
1312
T* tmp = _s_first;
1413
_s_first = self;
1514
self->_next = tmp;
1615
}
1716

1817
static void _remove(T* self) {
19-
DEBUGV("%s %08x %08x\n", __func__, (uint32_t) self, (uint32_t) _s_first);
2018
if (_s_first == self) {
2119
_s_first = self->_next;
2220
self->_next = 0;

0 commit comments

Comments
 (0)