Skip to content

Commit 6c5544f

Browse files
authored
Revert "[Common] Improve verbose message in TableHelper" (#12110)
1 parent 80c80ac commit 6c5544f

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

Common/Core/TableHelper.h

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,7 @@ bool getTaskOptionValue(o2::framework::InitContext& initContext, const std::stri
8686
if (option.name == optName) {
8787
value = option.defaultValue.get<ValueType>();
8888
if (verbose) {
89-
if constexpr (std::is_same_v<ValueType, o2::framework::LabeledArray<float>>) {
90-
LOG(info) << " Found option '" << optName << "' a o2::framework::LabeledArray<float>";
91-
LOG(info) << " Values: ";
92-
for (uint32_t r = 0; r < value.rows(); r++) {
93-
for (uint32_t c = 0; r < value.cols(); c++) {
94-
LOG(info) << " r " << r << " c " << c << value.get(r, c);
95-
}
96-
}
97-
} else {
89+
if constexpr (!std::is_same_v<ValueType, o2::framework::LabeledArray<float>>) {
9890
LOG(info) << " Found option '" << optName << "' with value '" << value << "'";
9991
}
10092
found = true;

0 commit comments

Comments
 (0)