summaryrefslogtreecommitdiff
path: root/platform/default/mbgl
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-04-14 13:43:24 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-04-14 13:43:24 -0700
commit18d8e80f52345a13236ae1da99b5866e7643f85b (patch)
tree654b3bdfc0dec4b9804db002c50e6e2cf4a56210 /platform/default/mbgl
parenta47ab85283bea14bcc464526701bafaf1b8312e2 (diff)
downloadqtlocation-mapboxgl-18d8e80f52345a13236ae1da99b5866e7643f85b.tar.gz
[core] Demote "Unable to make space for entry" message from Warning to Debug (#4708)
Diffstat (limited to 'platform/default/mbgl')
-rw-r--r--platform/default/mbgl/storage/offline_database.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/default/mbgl/storage/offline_database.cpp b/platform/default/mbgl/storage/offline_database.cpp
index 44d0837321..6476834c1b 100644
--- a/platform/default/mbgl/storage/offline_database.cpp
+++ b/platform/default/mbgl/storage/offline_database.cpp
@@ -158,7 +158,7 @@ std::pair<bool, uint64_t> OfflineDatabase::putInternal(const Resource& resource,
}
if (evict_ && !evict(size)) {
- Log::Warning(Event::Database, "Unable to make space for entry");
+ Log::Debug(Event::Database, "Unable to make space for entry");
return { false, 0 };
}