diff --git a/ApplicationLibCode/FileInterface/RifReaderOpmRft.cpp b/ApplicationLibCode/FileInterface/RifReaderOpmRft.cpp index 480e05aae9..97990d3835 100644 --- a/ApplicationLibCode/FileInterface/RifReaderOpmRft.cpp +++ b/ApplicationLibCode/FileInterface/RifReaderOpmRft.cpp @@ -270,6 +270,14 @@ void RifReaderOpmRft::cellIndices( const RifEclipseRftAddress& rftAddress, std:: void RifReaderOpmRft::readWseglink( const std::string& 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 ); + } } //--------------------------------------------------------------------------------------------------