Skip to content

Commit 305e231

Browse files
committed
Please consider the following formatting changes
1 parent bc04b37 commit 305e231

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

EventVisualisation/Workflow/src/O2DPLDisplay.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ void O2DPLDisplaySpec::run(ProcessingContext& pc)
230230
}
231231

232232
// FIXME: find out why this does not work with 11.1.1
233-
// LOGP(info, "Tracks: {}", fmt::join(sourceStats, ", "));
233+
// LOGP(info, "Tracks: {}", fmt::join(sourceStats, ", "));
234234
}
235235

236236
void O2DPLDisplaySpec::endOfStream(EndOfStreamContext& ec)

Framework/Core/src/ComputingQuotaEvaluator.cxx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525
#define LOGLEVEL debug
2626

27-
2827
namespace o2::framework
2928
{
3029

@@ -91,7 +90,7 @@ bool ComputingQuotaEvaluator::selectOffer(int task, ComputingQuotaRequest const&
9190
}
9291
if (enough) {
9392
LOGP(LOGLEVEL, "{} offers were selected for a total of: cpu {}, memory {}, shared memory {}", result.size(), totalOffer.cpu, totalOffer.memory, totalOffer.sharedMemory);
94-
//LOG(LOGLEVEL) << " The following offers were selected for computation: {} " << fmt::join(result, ", ");
93+
// LOG(LOGLEVEL) << " The following offers were selected for computation: {} " << fmt::join(result, ", ");
9594
dpStats.updateStats({static_cast<short>(ProcessingStatsId::RESOURCES_SATISFACTORY), DataProcessingStats::Op::Add, 1});
9695
} else {
9796
dpStats.updateStats({static_cast<short>(ProcessingStatsId::RESOURCES_MISSING), DataProcessingStats::Op::Add, 1});
@@ -100,16 +99,16 @@ bool ComputingQuotaEvaluator::selectOffer(int task, ComputingQuotaRequest const&
10099
}
101100
}
102101
if (stats.invalidOffers.size()) {
103-
// LOGP(LOGLEVEL, " The following offers were invalid: {}", fmt::join(stats.invalidOffers, ", "));
102+
// LOGP(LOGLEVEL, " The following offers were invalid: {}", fmt::join(stats.invalidOffers, ", "));
104103
}
105104
if (stats.otherUser.size()) {
106-
// LOGP(LOGLEVEL, " The following offers were owned by other users: {}", fmt::join(stats.otherUser, ", "));
105+
// LOGP(LOGLEVEL, " The following offers were owned by other users: {}", fmt::join(stats.otherUser, ", "));
107106
}
108107
if (stats.expired.size()) {
109-
// LOGP(LOGLEVEL, " The following offers are expired: {}", fmt::join(stats.expired, ", "));
108+
// LOGP(LOGLEVEL, " The following offers are expired: {}", fmt::join(stats.expired, ", "));
110109
}
111110
if (stats.unexpiring.size() > 1) {
112-
// LOGP(LOGLEVEL, " The following offers will never expire: {}", fmt::join(stats.unexpiring, ", "));
111+
// LOGP(LOGLEVEL, " The following offers will never expire: {}", fmt::join(stats.unexpiring, ", "));
113112
}
114113

115114
return enough;

0 commit comments

Comments
 (0)