Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Server: better formatting when logging request params
  • Loading branch information
elpaso committed Feb 15, 2019
1 parent 6a81d2d commit 53a14e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/qgsfcgiserverrequest.cpp
Expand Up @@ -199,7 +199,7 @@ void QgsFcgiServerRequest::printRequestInfos()
{
if ( getenv( envVar.toStdString().c_str() ) )
{
QgsMessageLog::logMessage( envVar + QString( getenv( envVar.toStdString().c_str() ) ), QStringLiteral( "Server" ), Qgis::Info );
QgsMessageLog::logMessage( QStringLiteral( "%1: %2" ).arg( envVar ).arg( QString( getenv( envVar.toStdString().c_str() ) ) ), QStringLiteral( "Server" ), Qgis::Info );
}
}
}

0 comments on commit 53a14e2

Please sign in to comment.