Skip to content

Commit

Permalink
Reduce noise in server output
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Feb 12, 2020
1 parent 0fd99f3 commit da589c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/server/qgsserver.cpp
Expand Up @@ -278,7 +278,7 @@ bool QgsServer::init()


// Load service module // Load service module
QString modulePath = QgsApplication::libexecPath() + "server"; QString modulePath = QgsApplication::libexecPath() + "server";
qDebug() << "Initializing server modules from " << modulePath << endl; // qDebug() << QStringLiteral( "Initializing server modules from: %1" ).arg( modulePath );
sServiceRegistry->init( modulePath, sServerInterface ); sServiceRegistry->init( modulePath, sServerInterface );


sInitialized = true; sInitialized = true;
Expand Down
3 changes: 1 addition & 2 deletions src/server/qgsservicenativeloader.cpp
Expand Up @@ -65,8 +65,7 @@ void QgsServiceNativeLoader::loadModules( const QString &modulePath, QgsServiceR
moduleDir.setNameFilters( QStringList( "*.so" ) ); moduleDir.setNameFilters( QStringList( "*.so" ) );
#endif #endif


qDebug() << QString( "Checking %1 for native services modules" ).arg( moduleDir.path() ); // qDebug() << QString( "Checking %1 for native services modules" ).arg( moduleDir.path() );
//QgsDebugMsg( QStringLiteral( "Checking %1 for native services modules" ).arg( moduleDir.path() ) );


for ( const QFileInfo &fi : moduleDir.entryInfoList() ) for ( const QFileInfo &fi : moduleDir.entryInfoList() )
{ {
Expand Down

0 comments on commit da589c1

Please sign in to comment.