From c2488bc202b5c2aa586579b6925f9632102d85e0 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Thu, 25 Jun 2015 00:13:55 +0300 Subject: [PATCH] Less debug output from slist --- .../esp8266/libraries/ESP8266WiFi/src/include/slist.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/hardware/esp8266com/esp8266/libraries/ESP8266WiFi/src/include/slist.h b/hardware/esp8266com/esp8266/libraries/ESP8266WiFi/src/include/slist.h index 3ea09cd48..0606f7243 100644 --- a/hardware/esp8266com/esp8266/libraries/ESP8266WiFi/src/include/slist.h +++ b/hardware/esp8266com/esp8266/libraries/ESP8266WiFi/src/include/slist.h @@ -9,14 +9,12 @@ public: protected: static void _add(T* self) { - DEBUGV("%s %08x %08x\n", __func__, (uint32_t) self, (uint32_t) _s_first); T* tmp = _s_first; _s_first = self; self->_next = tmp; } static void _remove(T* self) { - DEBUGV("%s %08x %08x\n", __func__, (uint32_t) self, (uint32_t) _s_first); if (_s_first == self) { _s_first = self->_next; self->_next = 0;