From fb247e7d2846f19ae00895153e20173a60188228 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Jacazio?= Date: Thu, 18 Dec 2025 14:05:13 +0100 Subject: [PATCH] Enhance logging for option types in TableHelper Added logging for vector type options in TableHelper. --- Common/Core/TableHelper.h | 5 +++++ 1 file changed, 5 insertions(+) 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;