From d52fa8e4bc8b88bab3b1b648dbe5375a85c65673 Mon Sep 17 00:00:00 2001 From: Mikko Partio Date: Tue, 9 Jan 2024 07:48:37 +0200 Subject: [PATCH] Change log level from warning to trace --- himan-plugins/source/radon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/himan-plugins/source/radon.cpp b/himan-plugins/source/radon.cpp index cb2527b9..2e1478c4 100644 --- a/himan-plugins/source/radon.cpp +++ b/himan-plugins/source/radon.cpp @@ -756,7 +756,7 @@ pair radon::SaveGrid(const info& resultInfo, const file_i host = string(host_); if (host.find("http") == string::npos) { - itsLogger.Warning("S3_HOSTNAME missing protocol -- adding 'https://'"); + itsLogger.Trace("S3_HOSTNAME missing protocol -- adding 'https://'"); host = "https://" + host; } }