[Proposta] Alterar level dos Logs do cache para verbose

This commit is contained in:
Deivison Lincoln
2024-08-27 14:01:26 -03:00
parent cb865bf5a0
commit b19c5375e5
2 changed files with 6 additions and 4 deletions

View File

@@ -7,9 +7,9 @@ export class CacheService {
constructor(private readonly cache: ICache) {
if (cache) {
this.logger.info(`cacheservice created using cache engine: ${cache.constructor?.name}`);
this.logger.verbose(`cacheservice created using cache engine: ${cache.constructor?.name}`);
} else {
this.logger.info(`cacheservice disabled`);
this.logger.verbose(`cacheservice disabled`);
}
}