diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2018-06-07 14:05:33 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2018-06-12 17:41:16 +0200 |
commit | a50493ea511989d0b040f24780964d532f1f4ee3 (patch) | |
tree | 6731fcd3d2fa63ad2e48ce35bd7780c058a89fc0 /platform | |
parent | 1a0f8e652f030a1c3817568bdb5d2212d1e39af7 (diff) | |
download | qtlocation-mapboxgl-a50493ea511989d0b040f24780964d532f1f4ee3.tar.gz |
[test] verify log messages of OfflineDatabase tests
Diffstat (limited to 'platform')
-rw-r--r-- | platform/default/mbgl/storage/offline_database.cpp | 2 |
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 cbf5483098..2c4ee2da31 100644 --- a/platform/default/mbgl/storage/offline_database.cpp +++ b/platform/default/mbgl/storage/offline_database.cpp @@ -197,7 +197,7 @@ std::pair<bool, uint64_t> OfflineDatabase::putInternal(const Resource& resource, } if (evict_ && !evict(size)) { - Log::Debug(Event::Database, "Unable to make space for entry"); + Log::Info(Event::Database, "Unable to make space for entry"); return { false, 0 }; } |