Reworked log levels.

This commit is contained in:
Joe Kearney 2026-01-10 16:07:28 -06:00
parent 0272e3a2ab
commit d87ac6451d
3 changed files with 3 additions and 3 deletions

View file

@ -91,7 +91,7 @@ static esp_err_t I2S_Audio_Write(void *audio_buffer, size_t len, size_t *bytes_w
static esp_err_t I2S_Audio_Reconfigure_Clock(uint32_t rate, uint32_t bits_cfg, i2s_slot_mode_t ch) static esp_err_t I2S_Audio_Reconfigure_Clock(uint32_t rate, uint32_t bits_cfg, i2s_slot_mode_t ch)
{ {
KLOG_INFO(TAG, "Reconfiguring clock for %lu sps, %lu bps, %d channels.", rate, bits_cfg, ch); KLOG_DEBUG(TAG, "Reconfiguring clock for %lu sps, %lu bps, %d channels.", rate, bits_cfg, ch);
esp_err_t ret = ESP_OK; esp_err_t ret = ESP_OK;
i2s_std_config_t std_cfg = { i2s_std_config_t std_cfg = {

View file

@ -384,7 +384,7 @@ static inline void PrintPulseTrainToConsole(TimedPulseTrain_T *train)
{ {
for (uint_fast16_t i = 0; i < train->count; i += 2) for (uint_fast16_t i = 0; i < train->count; i += 2)
{ {
KLOG_INFO(TAG, "%2d: (%d, %4d) (%d, %4d)", i + 1, train->bitstream[i].symbol, train->bitstream[i].duration, train->bitstream[i + 1].symbol, train->bitstream[i + 1].duration); KLOG_DEBUG(TAG, "%2d: (%d, %4d) (%d, %4d)", i + 1, train->bitstream[i].symbol, train->bitstream[i].duration, train->bitstream[i + 1].symbol, train->bitstream[i + 1].duration);
vTaskDelay(pdMS_TO_TICKS(10)); vTaskDelay(pdMS_TO_TICKS(10));
} }
} }

@ -1 +1 @@
Subproject commit e62f243e86ab0636121ded3f8197da2a8be40976 Subproject commit 3d87f2b53070b181d9811f19daf606d5896e3932