- Added details in debug mode, for unrecognized data (thanks to Kosta H).
  Note: does not close TW-253.
This commit is contained in:
Paul Beckingham 2014-04-22 22:21:40 -04:00
parent 3786e58b88
commit 9d33691cab
2 changed files with 6 additions and 0 deletions

View file

@ -854,6 +854,11 @@ void Task::parseLegacy (const std::string& line)
break;
default:
std::stringstream message;
message << "Invalid fileformat at line '"
<< line
<< "'";
context.debug (message.str());
throw std::string (STRING_TASK_PARSE_UNREC_FF);
break;
}