From fc492bb6b2f6069552a88fb7426c6d4892fc39a3 Mon Sep 17 00:00:00 2001 From: Norbert <48217146+Noschvie@users.noreply.github.com> Date: Thu, 15 May 2025 15:30:12 +0200 Subject: [PATCH] Change the log level from INFO to Debug (#23423) https://discord.com/channels/479389167382691863/790187952416358460/1372526416855437322 --- tasmota/tasmota_xdrv_driver/xdrv_42_0_i2s_3_lib_idf51.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_42_0_i2s_3_lib_idf51.ino b/tasmota/tasmota_xdrv_driver/xdrv_42_0_i2s_3_lib_idf51.ino index 098a4c4f9..8b33eb0cd 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_42_0_i2s_3_lib_idf51.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_42_0_i2s_3_lib_idf51.ino @@ -718,7 +718,7 @@ bool TasmotaI2S::updateClockConfig(void) { if (_tx_mode != I2S_MODE_DAC) { if (_tx_running) { esp_err_t err = i2s_channel_disable(_tx_handle); - AddLog(LOG_LEVEL_INFO, "I2S: updateClockConfig i2s_channel_disable err=0x%04X", err); + AddLog(LOG_LEVEL_DEBUG, "I2S: updateClockConfig i2s_channel_disable err=0x%04X", err); } i2s_std_clk_config_t clk_cfg = I2S_STD_CLK_DEFAULT_CONFIG(hertz); #ifdef SOC_I2S_SUPPORTS_APLL @@ -727,10 +727,10 @@ bool TasmotaI2S::updateClockConfig(void) { } #endif esp_err_t result = i2s_channel_reconfig_std_clock(_tx_handle, &clk_cfg); - AddLog(LOG_LEVEL_INFO, "I2S: updateClockConfig i2s_channel_reconfig_std_clock err=0x%04X", result); + AddLog(LOG_LEVEL_DEBUG, "I2S: updateClockConfig i2s_channel_reconfig_std_clock err=0x%04X", result); if (_tx_running) { esp_err_t err = i2s_channel_enable(_tx_handle); - AddLog(LOG_LEVEL_INFO, "I2S: updateClockConfig i2s_channel_enable err=0x%04X", err); + AddLog(LOG_LEVEL_DEBUG, "I2S: updateClockConfig i2s_channel_enable err=0x%04X", err); } AddLog(LOG_LEVEL_DEBUG, "I2S: Updating clock config"); return result == ESP_OK;