From ba1048abae8e5dbb179d850a5c46c149f8104142 Mon Sep 17 00:00:00 2001 From: Mathieu Pellerin Date: Fri, 1 Nov 2024 10:55:44 +0700 Subject: [PATCH] Remove debug crumbs --- src/core/qgismobileapp.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/qgismobileapp.cpp b/src/core/qgismobileapp.cpp index c7bc840f90..b9f003d4bd 100644 --- a/src/core/qgismobileapp.cpp +++ b/src/core/qgismobileapp.cpp @@ -846,7 +846,6 @@ void QgisMobileapp::readProjectFile() // get list of files inside zip file QString tmpPath; char **papszSiblingFiles = VSIReadDirRecursive( QStringLiteral( "/vsi%1/%2" ).arg( suffix, mProjectFilePath ).toLocal8Bit().constData() ); - qDebug() << QStringLiteral( "/vsi%1/%2" ).arg( suffix, mProjectFilePath ); if ( papszSiblingFiles ) { for ( int i = 0; papszSiblingFiles[i]; i++ ) @@ -855,7 +854,6 @@ void QgisMobileapp::readProjectFile() // skip directories (files ending with /) if ( tmpPath.right( 1 ) != QLatin1String( "/" ) ) { - qDebug() << tmpPath; const QFileInfo tmpFi( tmpPath ); if ( SUPPORTED_VECTOR_EXTENSIONS.contains( tmpFi.suffix().toLower() ) || SUPPORTED_RASTER_EXTENSIONS.contains( tmpFi.suffix().toLower() ) ) files << QStringLiteral( "/vsi%1/%2/%3" ).arg( suffix, mProjectFilePath, tmpPath );