From 05e0d455cc538f5c53b36292b311f0649fc9df30 Mon Sep 17 00:00:00 2001
From: shahoian <ruben.shahoyan@cern.ch>
Date: Wed, 25 Sep 2024 16:57:31 +0400
Subject: [PATCH] Demote to info the log about missing RCTInfo in ITS DCS agent

---
 Detectors/ITSMFT/ITS/workflow/src/DCSParserSpec.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Detectors/ITSMFT/ITS/workflow/src/DCSParserSpec.cxx b/Detectors/ITSMFT/ITS/workflow/src/DCSParserSpec.cxx
index 533592df20f23..a9e1121077f02 100644
--- a/Detectors/ITSMFT/ITS/workflow/src/DCSParserSpec.cxx
+++ b/Detectors/ITSMFT/ITS/workflow/src/DCSParserSpec.cxx
@@ -475,7 +475,7 @@ void ITSDCSParser::pushToCCDB(ProcessingContext& pc)
   cdbman.setFatalWhenNull(false);
   auto ts = o2::ccdb::BasicCCDBManager::instance().getRunDuration(mRunNumber, false);
   if (ts.first < 0 || ts.second < 0) {
-    LOGP(error, "Failed to retrieve headers from CCDB with run number {}, << this->mRunNumber, will default to using the current time for timestamp information", mRunNumber);
+    LOGP(info, "Failed to retrieve headers from CCDB with run number {}, << this->mRunNumber, will default to using the current time for timestamp information", mRunNumber);
     tstart = o2::ccdb::getCurrentTimestamp();
     tend = tstart + 365L * 24 * 3600 * 1000;
   } else {