diff --git a/src/drv/old/hasp_drv_stmpe610.cpp b/src/drv/old/hasp_drv_stmpe610.cpp index 04d44dc6..1547141a 100644 --- a/src/drv/old/hasp_drv_stmpe610.cpp +++ b/src/drv/old/hasp_drv_stmpe610.cpp @@ -61,7 +61,7 @@ HASP_ATTRIBUTE_FAST_MEM bool STMPE610_getXY(int16_t* touchX, int16_t* touchY, ui void STMPE610_init() { - LOG_INFO(TAG_DRVR, F("STMPE610 " D_SERVICE_STARTING)); + LOG_TRACE(TAG_DRVR, F("STMPE610 " D_SERVICE_STARTING)); if(!touch.begin()) { LOG_ERROR(TAG_DRVR, F("STMPE610 " D_SERVICE_START_FAILED)); } else { diff --git a/src/drv/touch/touch_driver_stmpe610.h b/src/drv/touch/touch_driver_stmpe610.h index c4ee5628..09765c46 100644 --- a/src/drv/touch/touch_driver_stmpe610.h +++ b/src/drv/touch/touch_driver_stmpe610.h @@ -65,7 +65,7 @@ class TouchStmpe610 : public BaseTouch { void init(int w, int h) { - LOG_INFO(TAG_DRVR, F("STMPE610 " D_SERVICE_STARTING)); + LOG_TRACE(TAG_DRVR, F("STMPE610 " D_SERVICE_STARTING)); if(!stmpe610_touchpanel.begin()) { LOG_ERROR(TAG_DRVR, F("STMPE610 " D_SERVICE_START_FAILED)); } else { diff --git a/src/hasp/hasp_object.cpp b/src/hasp/hasp_object.cpp index 6c9c435e..8f399e43 100644 --- a/src/hasp/hasp_object.cpp +++ b/src/hasp/hasp_object.cpp @@ -42,7 +42,7 @@ lv_obj_t* hasp_find_obj_from_parent_id(lv_obj_t* parent, uint8_t objid) uint16_t tabcount = lv_tabview_get_tab_count(child); for(uint16_t i = 0; i < tabcount; i++) { lv_obj_t* tab = lv_tabview_get_tab(child, i); - LOG_VERBOSE(TAG_HASP, "Found tab %i", i); + // LOG_DEBUG(TAG_HASP, "Found tab %i", i); if(tab->user_data.objid && objid == tab->user_data.objid) return tab; /* tab found, return it */ /* check grandchildren */ @@ -201,7 +201,7 @@ static inline int hasp_parse_json_attributes(lv_obj_t* obj, const JsonObject& do i++; } #endif - LOG_VERBOSE(TAG_HASP, F("%d attributes processed"), i); + // LOG_DEBUG(TAG_HASP, F("%d keys processed"), i); return i; } diff --git a/src/hasp_debug.cpp b/src/hasp_debug.cpp index 8e865014..81185053 100644 --- a/src/hasp_debug.cpp +++ b/src/hasp_debug.cpp @@ -248,7 +248,7 @@ void debug_get_tag(uint8_t tag, char* buffer) break; case TAG_CONS: - memcpy_P(buffer, PSTR("CONS"), 5); + memcpy_P(buffer, PSTR("UART"), 5); break; case TAG_DEBG: memcpy_P(buffer, PSTR("DBUG"), 5); diff --git a/src/sys/gpio/hasp_gpio.cpp b/src/sys/gpio/hasp_gpio.cpp index b28fbec5..80bcaccc 100644 --- a/src/sys/gpio/hasp_gpio.cpp +++ b/src/sys/gpio/hasp_gpio.cpp @@ -310,7 +310,7 @@ static void gpio_setup_pin(uint8_t index) void gpioSetup() { - LOG_INFO(TAG_GPIO, F(D_SERVICE_STARTING)); + LOG_TRACE(TAG_GPIO, F(D_SERVICE_STARTING)); #if defined(ARDUINO_ARCH_ESP32) LOG_WARNING(TAG_GPIO, F("Reboot counter %d"), rtcRecordCounter++); #endif