We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe10df2 commit d338427Copy full SHA for d338427
src/cache/storage-cache.ts
@@ -155,8 +155,6 @@ export class StorageCache implements ContactCache {
155
key: string,
156
getFreshValue: (key: string) => Promise<Contact[]>
157
): Promise<Contact[]> {
158
- infoLogger(LOG_PREFIX, `Setting cache state to FETCHING`, key);
159
-
160
await this.setCacheState(
161
key,
162
CacheItemStateType.FETCHING,
@@ -167,8 +165,6 @@ export class StorageCache implements ContactCache {
167
165
const freshValue = await getFreshValue(key);
168
166
169
await this.set(key, freshValue);
170
- infoLogger(LOG_PREFIX, `Setting cache state to CACHED`, key);
171
172
await this.setCacheState(key, CacheItemStateType.CACHED);
173
174
return freshValue;
0 commit comments