From d87ac6451d95936b4c8069a25d60bc9f93a30428 Mon Sep 17 00:00:00 2001 From: Joe Kearney Date: Sat, 10 Jan 2026 16:07:28 -0600 Subject: [PATCH] Reworked log levels. --- components/Audio/I2S_Audio.c | 2 +- components/IR/IR.c | 2 +- components/SystemK | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Audio/I2S_Audio.c b/components/Audio/I2S_Audio.c index 007528c..0601fbf 100644 --- a/components/Audio/I2S_Audio.c +++ b/components/Audio/I2S_Audio.c @@ -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) { - 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; i2s_std_config_t std_cfg = { diff --git a/components/IR/IR.c b/components/IR/IR.c index e4e4e67..4fc752a 100644 --- a/components/IR/IR.c +++ b/components/IR/IR.c @@ -384,7 +384,7 @@ static inline void PrintPulseTrainToConsole(TimedPulseTrain_T *train) { 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)); } } diff --git a/components/SystemK b/components/SystemK index e62f243..3d87f2b 160000 --- a/components/SystemK +++ b/components/SystemK @@ -1 +1 @@ -Subproject commit e62f243e86ab0636121ded3f8197da2a8be40976 +Subproject commit 3d87f2b53070b181d9811f19daf606d5896e3932