Downgrade notify of key warning to info.

This commit is contained in:
Cody Henthorne
2025-05-12 08:39:37 -04:00
committed by Michelle Tang
parent fb68f3fed1
commit fb111619d7

View File

@@ -148,7 +148,7 @@ class FixedSizePagingController<Key, Data> implements PagingController<Key> {
Integer position = keyToPosition.get(key); Integer position = keyToPosition.get(key);
if (position == null) { if (position == null) {
Log.w(TAG, "Notified of key " + key + " but it wasn't in the cache!"); Log.i(TAG, "Notified of key " + key + " but it wasn't in the cache!");
return; return;
} }