Skip to content

Commit 2ea4c52

Browse files
committed
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
1 parent 18a80f9 commit 2ea4c52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

opengl/libs/EGL/MultifileBlobCache.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ void MultifileBlobCache::set(const void* key, EGLsizeiANDROID keySize, const voi
356356

357357
// If we're going to be over the cache limit, kick off a trim to clear space
358358
if (getTotalSize() + fileSize > mMaxTotalSize || getTotalEntries() + 1 > mMaxTotalEntries) {
359-
ALOGV("SET: Cache is full, calling trimCache to clear space");
359+
ALOGW("SET: Cache is full, calling trimCache to clear space");
360360
trimCache();
361361
}
362362

0 commit comments

Comments
 (0)