Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
don't strip utf8 in log
  • Loading branch information
jef-n committed Mar 24, 2016
1 parent 3894159 commit 90e624d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgslogger.cpp
Expand Up @@ -103,7 +103,7 @@ void QgsLogger::debug( const QString& msg, int debuglevel, const char* file, con

if ( sLogFile.isEmpty() )
{
qDebug( "%s", m.toLocal8Bit().constData() );
qDebug( "%s", m.toUtf8().constData() );
}
else
{
Expand Down

0 comments on commit 90e624d

Please sign in to comment.