Report Destination File for Unhandled Report Keywords

That way, the user gets a little more information and will be in a
better position to assess whether or not the missing support is a
real problem.
This commit is contained in:
Bård Skaflestad 2023-12-08 13:19:45 +01:00
parent f9a5b1ecdb
commit b1cba34eba
2 changed files with 2 additions and 2 deletions

View File

@ -1204,7 +1204,7 @@ doAllocBuffers(const unsigned bufferSize,
if (keyValue.second > 0) {
std::string logstring = "Keyword '";
logstring.append(keyValue.first);
logstring.append("' is unhandled for output to file.");
logstring.append("' is unhandled for output to restart file.");
OpmLog::warning("Unhandled output keyword", logstring);
}
}

View File

@ -935,7 +935,7 @@ public:
else {
std::string logstring = "Keyword '";
logstring.append(key.first);
logstring.append("' is unhandled for output to file.");
logstring.append("' is unhandled for output to summary file.");
OpmLog::warning("Unhandled output keyword", logstring);
}
}