diff --git a/tools/esp8266/app.cpp b/tools/esp8266/app.cpp index 41503a55..8adb1b9f 100644 --- a/tools/esp8266/app.cpp +++ b/tools/esp8266/app.cpp @@ -22,7 +22,7 @@ app::app() { DPRINTLN(DBG_VERBOSE, F("app::web")); mWebInst = new web(this, &mSysConfig, &mConfig, mVersion); DPRINTLN(DBG_VERBOSE, F("app::setup")); - //mWebInst->setup(); + mWebInst->setup(); DPRINTLN(DBG_VERBOSE, F("app::reset")); resetSystem(); DPRINTLN(DBG_VERBOSE, F("app::config")); diff --git a/tools/esp8266/include/dbg.h b/tools/esp8266/include/dbg.h index fae24251..8eb41f7c 100644 --- a/tools/esp8266/include/dbg.h +++ b/tools/esp8266/include/dbg.h @@ -21,7 +21,7 @@ //----------------------------------------------------------------------------- // globally used level -#define DEBUG_LEVEL DBG_VERBOSE +#define DEBUG_LEVEL DBG_INFO #ifdef ARDUINO #include "Arduino.h"