diff --git a/conanfile.py b/conanfile.py index 9fc7624..78d09d5 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,7 +4,7 @@ class QtBasemapPluginConan(ConanFile): name = 'QtBasemapPlugin' - version = '2.1.0-1' + version = '2.1.0-2' license = 'LGPL3' url = 'http://code.qt.io/cgit/qt/qtlocation.git/tree/src/plugins/geoservices/mapbox?h=6.7.3' description = 'Qt GeoServices plugin for basemaps including MapBox' diff --git a/src/qgeotilefetchermapbox.cpp b/src/qgeotilefetchermapbox.cpp index 0e3d100..11fd942 100644 --- a/src/qgeotilefetchermapbox.cpp +++ b/src/qgeotilefetchermapbox.cpp @@ -264,7 +264,7 @@ QGeoTiledMapReply *QGeoTileFetcherMapbox::getTileImage(const QGeoTileSpec &spec) (!subdomains.isEmpty() ? " {s}=" + subdomains.join(", ") : "") + (!bbox.isEmpty() ? " {bbox}=" + bbox : "") + (!wmsVersion.isEmpty() ? " with version " + wmsVersion : ""); - qInfo() << "Basemap tile requested" << urlDetails; + qInfo() << QDateTime::currentDateTime().toString("yyyy-MM-dd HH:mm:ss") << " basemap tile requested" << urlDetails; } tileUrl = QUrl(basemapUrl);