From a47072d156946aff992a53748fe5ff0f34db73d9 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Sun, 10 Aug 2025 15:38:21 +0200 Subject: [PATCH] DPL: improve error message --- Framework/Core/src/WorkflowHelpers.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Framework/Core/src/WorkflowHelpers.cxx b/Framework/Core/src/WorkflowHelpers.cxx index 652e863f98394..b86a4f15e7306 100644 --- a/Framework/Core/src/WorkflowHelpers.cxx +++ b/Framework/Core/src/WorkflowHelpers.cxx @@ -974,7 +974,8 @@ WorkflowParsingState WorkflowHelpers::verifyWorkflow(const o2::framework::Workfl if (DataSpecUtils::validate(input) == false) { ss << "In spec " << spec.name << " input specification " << ii << " requires binding, description and origin" - " to be fully specified"; + " to be fully specified (found " + << input.binding << ":" << DataSpecUtils::describe(input) << ")"; throw std::runtime_error(ss.str()); } }