summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLloyd Sheng <i@lloydsheng.com>2018-06-20 11:47:42 +0800
committerLloyd Sheng <i@lloydsheng.com>2018-06-20 11:47:42 +0800
commit4cd656135f57e6ccba8d457fac3a87763a548678 (patch)
treeacb53995e495d2993ff5a6afcce7256e71feab3c
parentc087ab1e5608a7e1561dc809dfbf8dc4c12700c6 (diff)
downloadqtlocation-mapboxgl-4cd656135f57e6ccba8d457fac3a87763a548678.tar.gz
Make log message more clear
-rw-r--r--platform/default/default_file_source.cpp4
-rw-r--r--src/mbgl/tile/geometry_tile_worker.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/platform/default/default_file_source.cpp b/platform/default/default_file_source.cpp
index 00559c4e49..eade68ede8 100644
--- a/platform/default/default_file_source.cpp
+++ b/platform/default/default_file_source.cpp
@@ -157,9 +157,9 @@ public:
this->offlineDatabase->put(resource, onlineResponse);
if (resource.kind == Resource::Kind::Tile) {
MBGL_TIMING_FINISH(watch,
- " Action: " << "Requesting" <<
+ " Action: " << "Requesting," <<
" URL: " << resource.url.c_str() <<
- " Size: " << onlineResponse.data->size() << "B," <<
+ " Size: " << onlineResponse.data->size() << "B," <<
" Time")
}
callback(onlineResponse);
diff --git a/src/mbgl/tile/geometry_tile_worker.cpp b/src/mbgl/tile/geometry_tile_worker.cpp
index bcbc3386db..31f4b89801 100644
--- a/src/mbgl/tile/geometry_tile_worker.cpp
+++ b/src/mbgl/tile/geometry_tile_worker.cpp
@@ -406,7 +406,7 @@ void GeometryTileWorker::parse() {
requestNewImages(imageDependencies);
MBGL_TIMING_FINISH(watch,
- " Action: " << "Parsing" <<
+ " Action: " << "Parsing," <<
" SourceID: " << sourceID.c_str() <<
" Canonical: " << static_cast<int>(id.canonical.z) << "/" << id.canonical.x << "/" << id.canonical.y <<
" Time");
@@ -475,7 +475,7 @@ void GeometryTileWorker::performSymbolLayout() {
firstLoad = false;
MBGL_TIMING_FINISH(watch,
- " Action: " << "SymbolLayout" <<
+ " Action: " << "SymbolLayout," <<
" SourceID: " << sourceID.c_str() <<
" Canonical: " << static_cast<int>(id.canonical.z) << "/" << id.canonical.x << "/" << id.canonical.y <<
" Time");