summaryrefslogtreecommitdiff
path: root/opengl
diff options
context:
space:
mode:
author Cody Northrop <cnorthrop@google.com> 2025-02-28 10:50:56 -0700
committer Cody Northrop <cnorthrop@google.com> 2025-02-28 10:55:49 -0700
commit2ea4c52ca0459cd6046c8cc564b6686dae2a5467 (patch)
tree4587eeced835e831e54b0d859c60a71155f711e5 /opengl
parent18a80f978ff4e25855cced72a7a1600ed4d7b837 (diff)
EGL Multifile Blobcache: Upgrade trim to WARN
Per request from partners, make logcat entry more visible when trimming the cache. Test: libEGL_test, EGL_test Bug: b/351867582 Flag: EXEMPT log only update Change-Id: Ibe89166b6fa90cb973a96757cba89de7461762f4
Diffstat (limited to 'opengl')
-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();
}