summary refs log tree commit diff
path: root/src/extensions/SingletonCache.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/extensions/SingletonCache.ts')
-rw-r--r--src/extensions/SingletonCache.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/extensions/SingletonCache.ts b/src/extensions/SingletonCache.ts

index 7f9f7895..b2253f73 100644 --- a/src/extensions/SingletonCache.ts +++ b/src/extensions/SingletonCache.ts
@@ -44,7 +44,7 @@ export class SingletonCache<T> { this.cachedValue = result; return result; } catch (e) { - console.log(`[SingletonCache] Factory method failed, returning stale value:`, e); + console.error(`[SingletonCache] Factory method failed, returning stale value:`, e); return this.cachedValue; } finally { this.isLocked = false;