mirror of
https://github.com/chrisbenincasa/tunarr
synced 2026-04-21 13:37:15 +00:00
refactor: downgrade log level for meilisearch task watcher
This commit is contained in:
parent
4abd307b06
commit
0c8a5b7aed
1 changed files with 2 additions and 2 deletions
|
|
@ -1335,10 +1335,10 @@ export class MeilisearchService implements ISearchService {
|
|||
while (task.status === 'enqueued' || task.status === 'processing') {
|
||||
switch (task.status) {
|
||||
case 'enqueued':
|
||||
this.logger.info('Task %d is enqueued', id);
|
||||
this.logger.debug('Task %d is enqueued', id);
|
||||
break;
|
||||
case 'processing':
|
||||
this.logger.info('Task %d is still processing...', id);
|
||||
this.logger.debug('Task %d is still processing...', id);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue