From 07274e4cf8fc25bdd68708fb9a9a63e13c3eaff7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Thu, 19 Oct 2017 19:09:00 +0200 Subject: [PATCH] Add missing TELNET configuration in info output --- code/espurna/espurna.ino | 6 ++++++ 1 file changed, 6 insertions(+) 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