From 4008a4e5e62b70c4340636977dfaa84a98cd28bd Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Tue, 10 Dec 2024 16:36:22 +0100 Subject: [PATCH] Move debug message to debug_more --- tasmota/tasmota_xdrv_driver/xdrv_67_mcp23xxx.ino | 2 +- tasmota/tasmota_xdrv_driver/xdrv_69_pca9557.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_67_mcp23xxx.ino b/tasmota/tasmota_xdrv_driver/xdrv_67_mcp23xxx.ino index 426293236..18eb8f4fa 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_67_mcp23xxx.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_67_mcp23xxx.ino @@ -592,7 +592,7 @@ uint32_t MCP23xTemplateGpio(void) { void MCP23xModuleInit(void) { int32_t pins_needed = MCP23xTemplateGpio(); if (!pins_needed) { - AddLog(LOG_LEVEL_DEBUG, PSTR("MCP: Invalid template")); + AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("MCP: Invalid template")); return; } diff --git a/tasmota/tasmota_xdrv_driver/xdrv_69_pca9557.ino b/tasmota/tasmota_xdrv_driver/xdrv_69_pca9557.ino index 9ee9c1c87..5d11d3160 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_69_pca9557.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_69_pca9557.ino @@ -360,7 +360,7 @@ uint32_t PCA9557TemplateGpio(void) { void PCA9557ModuleInit(void) { int32_t pins_needed = PCA9557TemplateGpio(); if (!pins_needed) { - AddLog(LOG_LEVEL_DEBUG, PSTR("PCA: Invalid template")); + AddLog(LOG_LEVEL_DEBUG_MORE, PSTR("PCA: Invalid template")); return; }