From cd9266648b041e185219133f75141b5ab0f19278 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Jacazio?= Date: Sat, 25 Jan 2025 07:55:33 +0100 Subject: [PATCH 1/3] Update message in centrality --- Common/TableProducer/centralityTable.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common/TableProducer/centralityTable.cxx b/Common/TableProducer/centralityTable.cxx index 39199dbb4bf..8aa025f7de3 100644 --- a/Common/TableProducer/centralityTable.cxx +++ b/Common/TableProducer/centralityTable.cxx @@ -197,11 +197,11 @@ struct CentralityTable { if (f == 1) { if (tableNames[i].find("Run2") != std::string::npos) { if (doprocessRun3) { - LOGF(fatal, "Cannot enable Run2 tables in Run3 mode. Please check and disable them."); + LOGF(fatal) << "Cannot enable Run2 table `" << tableNames[i] << "` while running in Run3 mode. Please check and disable them."); } } else { if (doprocessRun2) { - LOGF(fatal, "Cannot enable Run3 tables in Run2 mode. Please check and disable them."); + LOGF(fatal) << "Cannot enable Run3 table `" << tableNames[i] << "` while running in Run2 mode. Please check and disable them."); } } isTableEnabled[i] = true; From d7ace7b6f6917d790a046b4eaab8eae92dfac60c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Jacazio?= Date: Sat, 25 Jan 2025 08:25:44 +0100 Subject: [PATCH 2/3] Update centralityTable.cxx --- Common/TableProducer/centralityTable.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common/TableProducer/centralityTable.cxx b/Common/TableProducer/centralityTable.cxx index 8aa025f7de3..78db1bfd77b 100644 --- a/Common/TableProducer/centralityTable.cxx +++ b/Common/TableProducer/centralityTable.cxx @@ -197,11 +197,11 @@ struct CentralityTable { if (f == 1) { if (tableNames[i].find("Run2") != std::string::npos) { if (doprocessRun3) { - LOGF(fatal) << "Cannot enable Run2 table `" << tableNames[i] << "` while running in Run3 mode. Please check and disable them."); + LOG(fatal) << "Cannot enable Run2 table `" << tableNames[i] << "` while running in Run3 mode. Please check and disable them."); } } else { if (doprocessRun2) { - LOGF(fatal) << "Cannot enable Run3 table `" << tableNames[i] << "` while running in Run2 mode. Please check and disable them."); + LOG(fatal) << "Cannot enable Run3 table `" << tableNames[i] << "` while running in Run2 mode. Please check and disable them."); } } isTableEnabled[i] = true; From 301606054bc228156ad2d2a6cd59f3fd997f41d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Jacazio?= Date: Sat, 25 Jan 2025 08:26:31 +0100 Subject: [PATCH 3/3] Update centralityTable.cxx --- Common/TableProducer/centralityTable.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Common/TableProducer/centralityTable.cxx b/Common/TableProducer/centralityTable.cxx index 78db1bfd77b..c2420f6e109 100644 --- a/Common/TableProducer/centralityTable.cxx +++ b/Common/TableProducer/centralityTable.cxx @@ -197,11 +197,11 @@ struct CentralityTable { if (f == 1) { if (tableNames[i].find("Run2") != std::string::npos) { if (doprocessRun3) { - LOG(fatal) << "Cannot enable Run2 table `" << tableNames[i] << "` while running in Run3 mode. Please check and disable them."); + LOG(fatal) << "Cannot enable Run2 table `" << tableNames[i] << "` while running in Run3 mode. Please check and disable them."; } } else { if (doprocessRun2) { - LOG(fatal) << "Cannot enable Run3 table `" << tableNames[i] << "` while running in Run2 mode. Please check and disable them."); + LOG(fatal) << "Cannot enable Run3 table `" << tableNames[i] << "` while running in Run2 mode. Please check and disable them."; } } isTableEnabled[i] = true;