mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Show log message when data from WSEGLINK is imported
This commit is contained in:
parent
116420e82f
commit
d994a38959
@ -270,6 +270,14 @@ void RifReaderOpmRft::cellIndices( const RifEclipseRftAddress& rftAddress, std::
|
|||||||
void RifReaderOpmRft::readWseglink( const std::string& filePath )
|
void RifReaderOpmRft::readWseglink( const std::string& filePath )
|
||||||
{
|
{
|
||||||
m_wseglink = RiaOpmParserTools::extractWseglink( filePath );
|
m_wseglink = RiaOpmParserTools::extractWseglink( filePath );
|
||||||
|
|
||||||
|
if ( !m_wseglink.empty() )
|
||||||
|
{
|
||||||
|
QString text = QString( "Imported segment data from %1\n" ).arg( QString::fromStdString( filePath ) );
|
||||||
|
text += QString( "Number of wells: %1\n" ).arg( m_wseglink.size() );
|
||||||
|
|
||||||
|
RiaLogging::info( text );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user