Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9931 from mbernasocchi/fix_log
fix wrong SVG PATHS logging on server startup
  • Loading branch information
mbernasocchi committed May 6, 2019
2 parents fe39b26 + cfe4d8e commit 24259f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/qgsserver.cpp
Expand Up @@ -227,7 +227,7 @@ bool QgsServer::init()
QgsMessageLog::logMessage( "PkgData PATH: " + QgsApplication::pkgDataPath(), QStringLiteral( "Server" ), Qgis::Info );
QgsMessageLog::logMessage( "User DB PATH: " + QgsApplication::qgisUserDatabaseFilePath(), QStringLiteral( "Server" ), Qgis::Info );
QgsMessageLog::logMessage( "Auth DB PATH: " + QgsApplication::qgisAuthDatabaseFilePath(), QStringLiteral( "Server" ), Qgis::Info );
QgsMessageLog::logMessage( "SVG PATHS: " + QgsApplication::svgPaths().join( QDir::separator() ), QStringLiteral( "Server" ), Qgis::Info );
QgsMessageLog::logMessage( "SVG PATHS: " + QgsApplication::svgPaths().join( QDir::listSeparator() ), QStringLiteral( "Server" ), Qgis::Info );

QgsApplication::createDatabase(); //init qgis.db (e.g. necessary for user crs)

Expand Down

0 comments on commit 24259f9

Please sign in to comment.