diff --git a/code/espurna/espurna.ino b/code/espurna/espurna.ino index f67754d8..a6cf877d 100644 --- a/code/espurna/espurna.ino +++ b/code/espurna/espurna.ino @@ -149,6 +149,9 @@ void welcome() { #if DEBUG_SERIAL_SUPPORT DEBUG_MSG_P(PSTR(" DEBUG_SERIAL")); #endif + #if DEBUG_TELNET_SUPPORT + DEBUG_MSG_P(PSTR(" DEBUG_TELNET")); + #endif #if DEBUG_UDP_SUPPORT DEBUG_MSG_P(PSTR(" DEBUG_UDP")); #endif @@ -185,6 +188,9 @@ void welcome() { #if SPIFFS_SUPPORT DEBUG_MSG_P(PSTR(" SPIFFS")); #endif + #if TELNET_SUPPORT + DEBUG_MSG_P(PSTR(" TELNET")); + #endif #if TERMINAL_SUPPORT DEBUG_MSG_P(PSTR(" TERMINAL")); #endif