ENH: Updated construction info

This commit is contained in:
andy
2013-01-11 16:05:04 +00:00
parent 78df71ea98
commit 6aa4c9893f

View File

@ -45,14 +45,15 @@ Foam::IOobject Foam::fv::IOoptionList::createIOobject
if (io.headerOk()) if (io.headerOk())
{ {
Info<< "Creating field source list from " << io.name() << nl << endl; Info<< "Creating fintite volume options from " << io.name() << nl
<< endl;
io.readOpt() = IOobject::MUST_READ_IF_MODIFIED; io.readOpt() = IOobject::MUST_READ_IF_MODIFIED;
return io; return io;
} }
else else
{ {
Info<< "No field sources present" << nl << endl; Info<< "No finite volume options present" << nl << endl;
io.readOpt() = IOobject::NO_READ; io.readOpt() = IOobject::NO_READ;
return io; return io;