Skip to content

Commit e5cadd0

Browse files
authored
[Common] Update message in centrality (#9519)
1 parent 7c0c310 commit e5cadd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Common/TableProducer/centralityTable.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,11 @@ struct CentralityTable {
201201
if (f == 1) {
202202
if (tableNames[i].find("Run2") != std::string::npos) {
203203
if (doprocessRun3) {
204-
LOGF(fatal, "Cannot enable Run2 tables in Run3 mode. Please check and disable them.");
204+
LOG(fatal) << "Cannot enable Run2 table `" << tableNames[i] << "` while running in Run3 mode. Please check and disable them.";
205205
}
206206
} else {
207207
if (doprocessRun2) {
208-
LOGF(fatal, "Cannot enable Run3 tables in Run2 mode. Please check and disable them.");
208+
LOG(fatal) << "Cannot enable Run3 table `" << tableNames[i] << "` while running in Run2 mode. Please check and disable them.";
209209
}
210210
}
211211
isTableEnabled[i] = true;

0 commit comments

Comments
 (0)