Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ParserAction/SetOutputFormatsAction.cpp

    rbe21fa rf10b0c  
    3838/** =========== define the function ====================== */
    3939Action::state_ptr ParserSetOutputFormatsAction::performCall() {
    40   LOG(1, "Format list is: " << params.FormatList);
    41   for (vector<std::string>::iterator iter = params.FormatList.begin(); iter != params.FormatList.end(); ++iter) {
     40  LOG(1, "Format list is: " << params.FormatList.get());
     41  for (vector<std::string>::const_iterator iter = params.FormatList.get().begin(); iter != params.FormatList.get().end(); ++iter) {
    4242    if (!FormatParserStorage::getInstance().add(*iter)) {
    4343      ELOG(1, "Unknown parser format in ParserSetOutputFormatsAction: '" << *iter << "'");
Note: See TracChangeset for help on using the changeset viewer.