Skip to content

Commit 24f1796

Browse files
committed
DPL: improve error message
1 parent a4e3e15 commit 24f1796

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Framework/Core/src/WorkflowHelpers.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -974,7 +974,8 @@ WorkflowParsingState WorkflowHelpers::verifyWorkflow(const o2::framework::Workfl
974974
if (DataSpecUtils::validate(input) == false) {
975975
ss << "In spec " << spec.name << " input specification "
976976
<< ii << " requires binding, description and origin"
977-
" to be fully specified";
977+
" to be fully specified (found "
978+
<< input.binding << ":" << DataSpecUtils::describe(input) << ")";
978979
throw std::runtime_error(ss.str());
979980
}
980981
}

0 commit comments

Comments
 (0)