Skip to content

Commit

Permalink
Demote translation loading warning to debug msg
Browse files Browse the repository at this point in the history
(forward port from Sourcepole's fork)
  • Loading branch information
manisandro authored and nyalldawson committed Jul 17, 2017
1 parent 9bae832 commit f405b96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/main.cpp
Expand Up @@ -1034,7 +1034,7 @@ int main( int argc, char *argv[] )
}
else
{
qWarning( "loading of qgis translation failed [%s]", QStringLiteral( "%1/qgis_%2" ).arg( i18nPath, myTranslationCode ).toLocal8Bit().constData() );
QgsDebugMsg( QStringLiteral( "loading of qgis translation failed %1/qgis_%2" ).arg( i18nPath, myTranslationCode ) );
}

/* Translation file for Qt.
Expand All @@ -1048,7 +1048,7 @@ int main( int argc, char *argv[] )
}
else
{
qWarning( "loading of qt translation failed [%s]", QStringLiteral( "%1/qt_%2" ).arg( QLibraryInfo::location( QLibraryInfo::TranslationsPath ), myTranslationCode ).toLocal8Bit().constData() );
QgsDebugMsg( QStringLiteral( "loading of qt translation failed %1/qt_%2" ).arg( QLibraryInfo::location( QLibraryInfo::TranslationsPath ), myTranslationCode ) );
}
}

Expand Down

0 comments on commit f405b96

Please sign in to comment.