Skip to content

Commit

Permalink
add debug level to version str
Browse files Browse the repository at this point in the history
  • Loading branch information
tablatronix committed Feb 17, 2024
1 parent 91451f5 commit 45675ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WiFiManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3432,7 +3432,7 @@ void WiFiManager::debugPlatformInfo(){
#endif
#elif defined(ESP32)
#ifdef WM_DEBUG_LEVEL
DEBUG_WM(F("[SYS] WM version: "), WM_VERSION_STR);
DEBUG_WM(F("[SYS] WM version: "), String((__FlashStringHelper *)WM_VERSION_STR) +" D:"+String(_debugLevel));
DEBUG_WM(F("[SYS] Arduino version: "), VER_ARDUINO_STR);
DEBUG_WM(F("[SYS] ESP SDK version: "), ESP.getSdkVersion());
DEBUG_WM(F("[SYS] Free heap: "), ESP.getFreeHeap());
Expand Down

0 comments on commit 45675ea

Please sign in to comment.