From 2b5612beebd475880b61087d5061bfebd6591b4e Mon Sep 17 00:00:00 2001 From: tastendruecker123 <111116980+tastendruecker123@users.noreply.github.com> Date: Wed, 17 Aug 2022 21:29:57 +0200 Subject: [PATCH] lowered debg level, readded web::setup call --- tools/esp8266/app.cpp | 2 +- tools/esp8266/include/dbg.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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"