Skip to content

Commit

Permalink
fix: lowered log level of cache miss
Browse files Browse the repository at this point in the history
  • Loading branch information
JanssenBrm committed Dec 2, 2024
1 parent 41504cf commit 63553d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/caching/services/cache.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class CachingService {
if (result) {
this.logger.debug(`Found result in cache`);
} else {
this.logger.warn('Could not find entry in cache');
this.logger.debug('Could not find entry in cache');
}
return result;
} catch (error) {
Expand Down

0 comments on commit 63553d2

Please sign in to comment.