Skip to content

Commit

Permalink
Merge pull request #9934 from qgis/backport-9931-to-release-3_6
Browse files Browse the repository at this point in the history
[Backport release-3_6] fix wrong SVG PATHS logging on server startup
  • Loading branch information
elpaso committed May 8, 2019
2 parents df9d2d6 + 8f5080d commit e86c096
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 e86c096

Please sign in to comment.