We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2673d51 commit e08220eCopy full SHA for e08220e
Framework/AnalysisSupport/src/Plugin.cxx
@@ -72,8 +72,13 @@ struct RunSummary : o2::framework::ServicePlugin {
72
if (metric.filledMetrics) {
73
LOGP(info, "### Files read stats ###");
74
}
75
+ std::string lastFileRead;
76
for (size_t fi = 0; fi < metric.filledMetrics; ++fi) {
- LOGP(info, "{}", files[fi % files.size()].data);
77
+ lastFileRead = files[fi % files.size()].data;
78
+ LOGP(info, "{}", lastFileRead);
79
+ }
80
+ if (lastFileRead.empty() == false) {
81
+ LOGP(info, "Last file read: {}", lastFileRead);
82
83
84
} },
0 commit comments