summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2025-03-03 16:33:52 -0800
committer Android (Google) Code Review <android-gerrit@google.com> 2025-03-03 16:33:52 -0800
commitfbe7daee0b671b018441b5ae98656c9e92af3ab2 (patch)
tree74e1caad62b6c774c2af95e6deca6d07239e8d67
parent1a3b2cd3a2ca3d80f55d74e450827612f67006b0 (diff)
parent2ea4c52ca0459cd6046c8cc564b6686dae2a5467 (diff)
Merge "EGL Multifile Blobcache: Upgrade trim to WARN" into main
-rw-r--r--opengl/libs/EGL/MultifileBlobCache.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libs/EGL/MultifileBlobCache.cpp b/opengl/libs/EGL/MultifileBlobCache.cpp
index 04c525e93d..7faf361c08 100644
--- a/opengl/libs/EGL/MultifileBlobCache.cpp
+++ b/opengl/libs/EGL/MultifileBlobCache.cpp
@@ -356,7 +356,7 @@ void MultifileBlobCache::set(const void* key, EGLsizeiANDROID keySize, const voi
// If we're going to be over the cache limit, kick off a trim to clear space
if (getTotalSize() + fileSize > mMaxTotalSize || getTotalEntries() + 1 > mMaxTotalEntries) {
- ALOGV("SET: Cache is full, calling trimCache to clear space");
+ ALOGW("SET: Cache is full, calling trimCache to clear space");
trimCache();
}