Skip to content

Commit 4b13504

Browse files
authored
Set WifiManager debug level. (#1014)
This allows for setting the WiFimanager debug level for more or less verbosity using the WM_DEBUG_LEVEL macro. Valid values are: DEBUG_ERROR = 0, DEBUG_NOTIFY = 1, // default DEBUG_VERBOSE = 2, DEBUG_DEV = 3, DEBUG_MAX = 4
1 parent e92e468 commit 4b13504

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

main/User_config.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ const byte mac[] = {0xDE, 0xED, 0xBA, 0xFE, 0x54, 0x95}; //W5100 ethernet shield
106106
#ifndef WifiManager_TimeOut
107107
# define WifiManager_TimeOut 5
108108
#endif
109+
#ifndef WM_DEBUG_LEVEL
110+
# define WM_DEBUG_LEVEL 1 // valid values are: DEBUG_ERROR = 0, DEBUG_NOTIFY = 1, DEBUG_VERBOSE = 2, DEBUG_DEV = 3, DEBUG_MAX = 4
111+
#endif
109112

110113
/*-------------DEFINE YOUR ADVANCED NETWORK PARAMETERS BELOW----------------*/
111114
//#define MDNS_SD //uncomment if you want to use mdns for discovering automatically your ip server, please note that MDNS with ESP32 can cause the BLE to not work

main/main.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1100,6 +1100,8 @@ void setup_wifimanager(bool reset_settings) {
11001100
}
11011101
}
11021102

1103+
wifiManager.setDebugOutput(WM_DEBUG_LEVEL);
1104+
11031105
// The extra parameters to be configured (can be either global or just in the setup)
11041106
// After connecting, parameter.getValue() will get you the configured value
11051107
// id/name placeholder/prompt default length

0 commit comments

Comments
 (0)