refactor: add log line for scanning so it is clear

This commit is contained in:
Christian Benincasa
2026-03-23 10:23:34 -04:00
parent 87974b629c
commit c98fc89233
2 changed files with 9 additions and 1 deletions

View File

@@ -1141,7 +1141,6 @@ export class MeilisearchService implements ISearchService {
index,
await this.searchParser.preprocessSearchFilter(request.filter),
);
console.log('filter', filter);
}
if (

View File

@@ -86,6 +86,15 @@ export abstract class MediaSourceScanner<
devAssert(mediaSource.type === this.mediaSourceType);
this.logger.info(
'Scanning %s library (ID = %s, name = %s, force = %s, filter = %s)',
mediaSource.type,
library.uuid,
library.name,
force,
pathFilter,
);
await this.scanInternal({
library,
mediaSource,