From 2609f1a5c84930408112a9d00a9d1da7d8be7fa7 Mon Sep 17 00:00:00 2001 From: Maximiliano Puccio Date: Wed, 11 Sep 2024 19:46:54 +0200 Subject: [PATCH] Demote log to debug to avoid issues in Pb-Pb --- Common/TableProducer/timestamp.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/TableProducer/timestamp.cxx b/Common/TableProducer/timestamp.cxx index ceaa8acd25d..e3d37f7129b 100644 --- a/Common/TableProducer/timestamp.cxx +++ b/Common/TableProducer/timestamp.cxx @@ -120,7 +120,7 @@ struct TimestampTask { if (fatalOnInvalidTimestamp.value) { LOGF(fatal, "Timestamp %llu us is out of run duration [%llu, %llu] ms", timestamp, runDuration.first, runDuration.second); } else { - LOGF(warn, "Timestamp %llu us is out of run duration [%llu, %llu] ms", timestamp, runDuration.first, runDuration.second); + LOGF(debug, "Timestamp %llu us is out of run duration [%llu, %llu] ms", timestamp, runDuration.first, runDuration.second); } } timestampTable(timestamp);