We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b29a10e commit 177bc99Copy full SHA for 177bc99
src/core/qgsproject.cpp
@@ -765,8 +765,8 @@ bool QgsProject::read()
765
tr( "%1 at line %2 column %3" ).arg( errorMsg ).arg( line ).arg( column ) );
766
#endif
767
768
- QString errorString = tr( "Project file read error: %1 at line %2 column %3" )
769
- .arg( errorMsg ).arg( line ).arg( column );
+ QString errorString = tr( "Project file read error in file %1: %2 at line %3 column %4" )
+ .arg( mFile.fileName() ).arg( errorMsg ).arg( line ).arg( column );
770
771
QgsDebugMsg( errorString );
772
0 commit comments