Skip to content

Commit

Permalink
Merge pull request #9933 from qgis/backport-9931-to-release-3_4
Browse files Browse the repository at this point in the history
[Backport release-3_4] fix wrong SVG PATHS logging on server startup
  • Loading branch information
elpaso committed May 8, 2019
2 parents ebe57cf + f233b7e commit 03f6508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/qgsserver.cpp
Expand Up @@ -231,7 +231,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 03f6508

Please sign in to comment.