STYLE: make dictionary error more descriptive (#1065)

This commit is contained in:
Mark Olesen
2018-11-07 15:16:14 +01:00
parent 537e8bf9e0
commit 72ae121558

View File

@ -100,8 +100,7 @@ bool Foam::dictionary::readCompat
else if (mandatory)
{
FatalIOErrorInFunction(*this)
<< "'" << keyword << "' not found in dictionary "
<< name()
<< "Entry '" << keyword << "' not found in dictionary " << name()
<< exit(FatalIOError);
}
@ -133,9 +132,9 @@ T Foam::dictionary::lookupOrDefault
else if (writeOptionalEntries)
{
IOInfoInFunction(*this)
<< "Optional entry '" << keyword << "' not found,"
<< " using default value '" << deflt << "'"
<< endl;
<< "Optional entry '" << keyword
<< "' not found, using default value '" << deflt << "'"
<< nl;
}
return deflt;
@ -166,9 +165,9 @@ T Foam::dictionary::lookupOrAddDefault
else if (writeOptionalEntries)
{
IOInfoInFunction(*this)
<< "Optional entry '" << keyword << "' not found,"
<< " adding default value '" << deflt << "'"
<< endl;
<< "Optional entry '" << keyword
<< "' not found, adding default value '" << deflt << "'"
<< nl;
}
add(new primitiveEntry(keyword, deflt));
@ -199,8 +198,7 @@ bool Foam::dictionary::readEntry
else if (mandatory)
{
FatalIOErrorInFunction(*this)
<< "'" << keyword << "' not found in dictionary "
<< name()
<< "Entry '" << keyword << "' not found in dictionary " << name()
<< exit(FatalIOError);
}
@ -248,7 +246,7 @@ T Foam::dictionary::lookupOrDefaultCompat
IOInfoInFunction(*this)
<< "Optional entry '" << keyword << "' not found,"
<< " using default value '" << deflt << "'"
<< endl;
<< nl;
}
return deflt;