Improve logging when extracting StimPlan well logs.

This commit is contained in:
Kristian Bendiksen
2021-08-12 06:40:31 +02:00
committed by Magne Sjaastad
parent 7db9efe387
commit 40bd4c285a
2 changed files with 24 additions and 2 deletions

View File

@@ -619,7 +619,8 @@ bool RimStimPlanModelPressureCalculator::interpolateInitialPressureByEquilibrati
// EQLNUM data has values for over/underburden, but the pressure values does not.
if ( eqlNumValues.size() != ( values.size() + 4 ) )
{
RiaLogging::error( QString( "Failed to build EQLNUM pressure data: result length mismatch." ) );
RiaLogging::error(
QString( "Failed to build EQLNUM pressure data for initial pressure: result length mismatch." ) );
RiaLogging::error(
QString( "EQLNUM length: %1 PRESSURE length: %2" ).arg( eqlNumValues.size() ).arg( values.size() ) );
return false;