13 static std::vector<std::string> allowed_log_levels{
"none",
"error",
"warn",
14 "info",
"debug",
"all"};
15 static auto* allowed_log_levels_vals =
16 new TCLAP::ValuesConstraint<std::string>(allowed_log_levels);
18 return TCLAP::ValueArg<std::string>(
19 "l",
"log-level",
"the verbosity of logging messages",
false,
25 allowed_log_levels_vals);