16{
17
18 auto variable = std::find_if(variables.cbegin(), variables.cend(),
20 { return v.getName() == name; });
21
22 if (variable == variables.end())
23 {
25 "There is no entry of the defined process variable '{:s}' in the "
26 "provided variables list (see tag <process_variables>). A "
27 "definition is required for config tag <{:s}>.",
28 name, tag);
29 }
30 DBUG(
"Found process variable '{:s}' for config tag <{:s}>.",
31 variable->getName(), tag);
32
33
35}
void DBUG(fmt::format_string< Args... > fmt, Args &&... args)