Changed std::cout message for keywordloader.

This commit is contained in:
Joakim Hove
2015-08-01 09:26:45 +02:00
parent 714990ae97
commit fb0daa39f4
2 changed files with 9 additions and 5 deletions

View File

@@ -79,10 +79,12 @@ namespace Opm {
} else {
std::string internalName = iter_path.filename().string();
if (ParserKeyword::validInternalName(internalName)) {
loadKeyword( iter_path );
loadCount += 1;
if (m_verbose)
std::cout << "Loading keyword " << internalName << " from file: " << iter_path << std::endl;
std::cout << "Loading keyword " << internalName << " from file: " << iter_path << "....";
loadKeyword( iter_path );
if (m_verbose)
std::cout << std::endl;
loadCount += 1;
} else {
if (m_verbose)
std::cout << "Ignoring file " << iter_path << " - incorrectly formatted name." << std::endl;