Skip to content

Commit

Permalink
Move debug message to debug_more
Browse files Browse the repository at this point in the history
  • Loading branch information
arendst committed Dec 10, 2024
1 parent 3c51793 commit 4008a4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasmota/tasmota_xdrv_driver/xdrv_67_mcp23xxx.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down
2 changes: 1 addition & 1 deletion tasmota/tasmota_xdrv_driver/xdrv_69_pca9557.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 4008a4e

Please sign in to comment.