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