diff --git a/Common/Core/TableHelper.h b/Common/Core/TableHelper.h index d5bfae389d5..56d2264ed6c 100644 --- a/Common/Core/TableHelper.h +++ b/Common/Core/TableHelper.h @@ -86,15 +86,7 @@ bool getTaskOptionValue(o2::framework::InitContext& initContext, const std::stri if (option.name == optName) { value = option.defaultValue.get(); if (verbose) { - if constexpr (std::is_same_v>) { - LOG(info) << " Found option '" << optName << "' a o2::framework::LabeledArray"; - LOG(info) << " Values: "; - for (uint32_t r = 0; r < value.rows(); r++) { - for (uint32_t c = 0; r < value.cols(); c++) { - LOG(info) << " r " << r << " c " << c << value.get(r, c); - } - } - } else { + if constexpr (!std::is_same_v>) { LOG(info) << " Found option '" << optName << "' with value '" << value << "'"; } found = true;