diff --git a/Common/Core/TableHelper.h b/Common/Core/TableHelper.h index af5df6a7b0a..950ed6d7633 100644 --- a/Common/Core/TableHelper.h +++ b/Common/Core/TableHelper.h @@ -25,6 +25,7 @@ #include #include +#include namespace o2::common::core { @@ -89,6 +90,10 @@ bool getTaskOptionValue(o2::framework::InitContext& initContext, const std::stri value = option.defaultValue.get(); if (verbose) { if constexpr (!std::is_same_v>) { + LOG(info) << " Found option '" << optName << " of type LabeledArray"; + } else if constexpr (!std::is_same_v>) { + LOG(info) << " Found option '" << optName << " of type vector"; + } else { LOG(info) << " Found option '" << optName << "' with value '" << value << "'"; } found = true;