mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Log error message instead of displaying a dialog
The error message is displayed once for each time step, and appears as eternal loop if you have many time steps.
This commit is contained in:
@@ -541,8 +541,9 @@ void RimGridCalculation::filterResults( RimGridView*
|
||||
replaceFilteredValuesWithVector( values[m_defaultPropertyVariableIndex], visibility, resultValues, porosityModel, outputEclipseCase );
|
||||
else
|
||||
{
|
||||
QString errorMessage = "Invalid input data for default result property, no data assigned to non-visible cells.";
|
||||
RiaLogging::errorInMessageBox( nullptr, "Grid Property Calculator", errorMessage );
|
||||
QString errorMessage =
|
||||
"Grid Property Calculator: Invalid input data for default result property, no data assigned to non-visible cells.";
|
||||
RiaLogging::error( errorMessage );
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user