We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c0c310 commit e5cadd0Copy full SHA for e5cadd0
Common/TableProducer/centralityTable.cxx
@@ -201,11 +201,11 @@ struct CentralityTable {
201
if (f == 1) {
202
if (tableNames[i].find("Run2") != std::string::npos) {
203
if (doprocessRun3) {
204
- LOGF(fatal, "Cannot enable Run2 tables 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.";
205
}
206
} else {
207
if (doprocessRun2) {
208
- LOGF(fatal, "Cannot enable Run3 tables 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.";
209
210
211
isTableEnabled[i] = true;
0 commit comments