From f8640cf2cda7916b8ce0f00b30ab4a3a65e05843 Mon Sep 17 00:00:00 2001 From: Paul Nicholls Date: Thu, 27 Oct 2022 19:27:17 +1300 Subject: [PATCH] [SM300D2] Reduce log severity for successful reads (#3955) --- esphome/components/sm300d2/sm300d2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/sm300d2/sm300d2.cpp b/esphome/components/sm300d2/sm300d2.cpp index c726faec48..365271cec9 100644 --- a/esphome/components/sm300d2/sm300d2.cpp +++ b/esphome/components/sm300d2/sm300d2.cpp @@ -42,7 +42,7 @@ void SM300D2Sensor::update() { this->status_clear_warning(); - ESP_LOGW(TAG, "Successfully read SM300D2 data"); + ESP_LOGD(TAG, "Successfully read SM300D2 data"); const uint16_t co2 = (response[2] * 256) + response[3]; const uint16_t formaldehyde = (response[4] * 256) + response[5];