fix: simplify LRU cache warning to avoid confusion (#4290)

This commit is contained in:
Matti Nannt
2024-11-12 13:41:05 +01:00
committed by GitHub
parent 5764148753
commit bcd68e0f19

View File

@@ -61,7 +61,7 @@ CacheHandler.onCreation(async () => {
// Fallback to LRU handler if Redis client is not available.
// The application will still work, but the cache will be in memory only and not shared.
handler = createLruHandler();
console.warn("Falling back to LRU handler because Redis client is not available.");
console.log("Using LRU handler for caching.");
}
return {