From 2fd7dca8a426c9939cdcdd61ed7210154cba3b83 Mon Sep 17 00:00:00 2001 From: Dan Paulat Date: Tue, 23 Jan 2024 23:25:44 -0600 Subject: [PATCH] Change invalid time key log from warning to trace, as this is not always an unexpected condition --- wxdata/source/scwx/provider/aws_level2_data_provider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wxdata/source/scwx/provider/aws_level2_data_provider.cpp b/wxdata/source/scwx/provider/aws_level2_data_provider.cpp index 6ac939c0..319c9ad7 100644 --- a/wxdata/source/scwx/provider/aws_level2_data_provider.cpp +++ b/wxdata/source/scwx/provider/aws_level2_data_provider.cpp @@ -94,7 +94,7 @@ AwsLevel2DataProvider::GetTimePointFromKey(const std::string& key) if (in.fail()) { - logger_->warn("Invalid time: \"{}\"", timeStr); + logger_->trace("Invalid time: \"{}\"", timeStr); } } else