From 795ab21c101137877409fbc5d8fc46c0875cb371 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Tue, 17 Apr 2018 12:52:56 +0200 Subject: [PATCH] Add DEBUG_WEB_SUPPORT to enabled modules list in info --- code/espurna/utils.ino | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/espurna/utils.ino b/code/espurna/utils.ino index d724433a..cd878831 100644 --- a/code/espurna/utils.ino +++ b/code/espurna/utils.ino @@ -278,6 +278,9 @@ void info() { #if DEBUG_UDP_SUPPORT DEBUG_MSG_P(PSTR(" DEBUG_UDP")); #endif + #if DEBUG_WEB_SUPPORT + DEBUG_MSG_P(PSTR(" DEBUG_WEB")); + #endif #if DOMOTICZ_SUPPORT DEBUG_MSG_P(PSTR(" DOMOTICZ")); #endif