From 3ea08e267f7a3946d0801ffee668114a331c3acd Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Fri, 22 Oct 2021 21:53:42 +0200 Subject: [PATCH] DPL: demote debug message --- Framework/Core/src/LifetimeHelpers.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Core/src/LifetimeHelpers.cxx b/Framework/Core/src/LifetimeHelpers.cxx index ba5a98ba92056..7f8499ac7bdba 100644 --- a/Framework/Core/src/LifetimeHelpers.cxx +++ b/Framework/Core/src/LifetimeHelpers.cxx @@ -332,7 +332,7 @@ ExpirationHandler::Handler } else { url = fmt::format("{}/{}/{}/runNumber={}", serverUrl, path, timestamp, dataTakingContext.runNumber); } - LOG(INFO) << "fetchFromCCDBCache: Fetching " << url; + LOG(debug) << "fetchFromCCDBCache: Fetching " << url; curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &payloadBuffer);