Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
show full filename for debugging in MSVC again
  • Loading branch information
jef-n committed Jan 12, 2012
1 parent 96db378 commit 9b25791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgslogger.cpp
Expand Up @@ -63,7 +63,7 @@ void QgsLogger::debug( const QString& msg, int debuglevel, const char* file, con
#ifndef _MSC_VER
m = QString( "%1: %2: (%3) %4" ).arg( file + sPrefixLength ).arg( line ).arg( function ).arg( msg );
#else
m = QString( "%1(%2) : (%3) %4" ).arg( file + sPrefixLength ).arg( line ).arg( function ).arg( msg );
m = QString( "%1(%2) : (%3) %4" ).arg( file ).arg( line ).arg( function ).arg( msg );
#endif
}
if ( logFile().isEmpty() )
Expand Down

0 comments on commit 9b25791

Please sign in to comment.