Skip to content

Commit 9b25791

Browse files
committed
show full filename for debugging in MSVC again
1 parent 96db378 commit 9b25791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/qgslogger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void QgsLogger::debug( const QString& msg, int debuglevel, const char* file, con
6363
#ifndef _MSC_VER
6464
m = QString( "%1: %2: (%3) %4" ).arg( file + sPrefixLength ).arg( line ).arg( function ).arg( msg );
6565
#else
66-
m = QString( "%1(%2) : (%3) %4" ).arg( file + sPrefixLength ).arg( line ).arg( function ).arg( msg );
66+
m = QString( "%1(%2) : (%3) %4" ).arg( file ).arg( line ).arg( function ).arg( msg );
6767
#endif
6868
}
6969
if ( logFile().isEmpty() )

0 commit comments

Comments
 (0)