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;
|