diff --git a/OctavePlugin/riGetGridProperty.cpp b/OctavePlugin/riGetGridProperty.cpp index ada4275516..3c0cca3468 100644 --- a/OctavePlugin/riGetGridProperty.cpp +++ b/OctavePlugin/riGetGridProperty.cpp @@ -104,12 +104,15 @@ void getGridProperty(NDArray& propertyFrames, const QString &serverName, quint16 if (caseId < 0) { - tmp += QString(" from current case."); + tmp += QString(" from current case,"); } else { - tmp += QString(" from case with Id: %1.").arg(caseId); + tmp += QString(" from case with Id: %1,").arg(caseId); } + + tmp += QString(" grid index: %1, ").arg(gridIdx); + octave_stdout << tmp.toStdString() << " I, J, K " << cellCountI << ", " << cellCountJ << ", " << cellCountK << ", Timesteps : " << timestepCount << std::endl; return; diff --git a/OctavePlugin/riSetGridProperty.cpp b/OctavePlugin/riSetGridProperty.cpp index 5f859cb731..6ad7c6c18f 100644 --- a/OctavePlugin/riSetGridProperty.cpp +++ b/OctavePlugin/riSetGridProperty.cpp @@ -72,12 +72,16 @@ void setEclipseProperty(const NDArray& propertyFrames, const QString &hostName, if (caseId == -1) { - tmp += QString(" to current case."); + tmp += QString(" to current case,"); } else { - tmp += QString(" to case with Id = %1.").arg(caseId); + tmp += QString(" to case with Id = %1,").arg(caseId); } + + tmp += QString(" grid index: %1, ").arg(gridIndex); + + octave_stdout << tmp.toStdString() << " Time steps : " << timeStepCount << std::endl; } else {