Merge pull request #5048 from bska/log-destination-file

Report Destination File for Unhandled Report Keywords
This commit is contained in:
Bård Skaflestad 2023-12-11 11:03:17 +01:00 committed by GitHub
commit a83f38a582
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}
}