less verbose logging and heap free printing

This commit is contained in:
Thomas Göttgens
2022-12-30 14:22:08 +01:00
parent be91b08b3e
commit 115cb05d3b
3 changed files with 3 additions and 4 deletions

View File

@@ -140,7 +140,6 @@ AudioModule::AudioModule() : SinglePortModule("AudioModule", PortNum_AUDIO_APP),
xTaskCreate(&run_codec2, "codec2_task", 30000, NULL, 5, &codec2HandlerTask);
} else {
disable();
DEBUG_MSG("Codec2 disabled (AudioModule %d, Region %s, permitted %d)\n", moduleConfig.audio.codec2_enabled, myRegion->name, myRegion->audioPermitted);
}
}
@@ -259,7 +258,6 @@ int32_t AudioModule::runOnce()
}
return 100;
} else {
DEBUG_MSG("Audio Module Disabled\n");
return disable();
}