#7718 Fix unnecessary error dialog for LAS import

This commit is contained in:
Kristian Bendiksen 2021-06-23 12:54:50 +02:00 committed by Magne Sjaastad
parent 56b80b8a02
commit 6fd5564545

View File

@ -168,9 +168,9 @@ bool RimWellLogFile::readFile( QString* errorMessage )
}
else if ( !isDateValid( m_date() ) )
{
*errorMessage = QString( "The LAS-file '%1' contains no recognizable date. Please assign a date in the "
"LAS-file property panel" )
.arg( m_name() );
RiaLogging::warning( QString( "The LAS-file '%1' contains no recognizable date. Please assign a date in the "
"LAS-file property panel." )
.arg( m_name() ) );
m_date = DEFAULT_DATE_TIME;
}