Move debug message to debug_more

This commit is contained in:
Theo Arends 2024-12-10 16:36:22 +01:00
parent 3c51793d5c
commit 4008a4e5e6
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}