From c5cef16c956a5c4df91d93b5aa167f0c9257ac43 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Mon, 12 Feb 2024 17:16:38 +1100 Subject: [PATCH] Remove some logging whoopsies --- src/drivers/nvs.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/drivers/nvs.cpp b/src/drivers/nvs.cpp index f7687dcb..ed85487f 100644 --- a/src/drivers/nvs.cpp +++ b/src/drivers/nvs.cpp @@ -149,14 +149,11 @@ class VolumesParseClient : public cppbor::ParseClient { const uint8_t* end) override { if (item->type() == cppbor::ARRAY) { if (state_ == State::kInit) { - ESP_LOGI(kTag, "enter root"); state_ = State::kRoot; } else if (state_ == State::kRoot) { - ESP_LOGI(kTag, "enter pair"); state_ = State::kPair; } } else if (item->type() == cppbor::BSTR && state_ == State::kPair) { - ESP_LOGI(kTag, "get str"); auto data = item->asBstr()->value(); mac_.emplace(); std::copy(data.begin(), data.end(), mac_->begin());