logger catagorizing libs

This commit is contained in:
Boki 2025-06-20 07:53:53 -04:00
parent 7a8e542ada
commit 4726a85cf3
12 changed files with 35 additions and 36 deletions

View file

@ -186,7 +186,7 @@ export class QueueManager {
enableMetrics: true,
});
this.caches.set(queueName, cacheProvider);
logger.debug('Cache created for queue', { queueName });
logger.trace('Cache created for queue', { queueName });
}
return this.caches.get(queueName)!;
}
@ -207,7 +207,7 @@ export class QueueManager {
private initializeBatchCacheSync(queueName: string): void {
// Just create the cache - it will connect automatically when first used
this.getCache(queueName);
logger.debug('Batch cache initialized synchronously for queue', { queueName });
logger.trace('Batch cache initialized synchronously for queue', { queueName });
}
/**