Shortened reading line to make more space for path

This commit is contained in:
Alf Birger Rustad 2020-09-23 11:26:44 +02:00 committed by Joakim Hove
parent 0512ab88b4
commit a86cfd21d8

View File

@ -903,7 +903,7 @@ bool parseState( ParserState& parserState, const Parser& parser ) {
const auto& location = rawKeyword->location();
ss << std::setw(5) << parserState.deck.size()
<< " Reading " << std::setw(8) << std::left << rawKeyword->getKeywordName()
<< " in file " << location.filename << ", line " << std::to_string(location.lineno);
<< " in " << location.filename << " line " << std::to_string(location.lineno);
OpmLog::info(ss.str());
}
try {