Add more logs

This commit is contained in:
Chocobozzz 2020-10-26 14:19:47 +01:00
parent f76edea5f8
commit 217666c707
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
3 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,8 @@ async function indexChannels (channels: IndexableChannel[], replace = false) {
}
function refreshChannelsIndex () {
logger.info('Refreshing channels index.')
return elasticSearch.indices.refresh({ index: CONFIG.ELASTIC_SEARCH.INDEXES.CHANNELS })
}

View File

@ -21,6 +21,8 @@ async function indexVideos (videos: IndexableVideo[], replace = false) {
}
function refreshVideosIndex () {
logger.info('Refreshing videos index.')
return elasticSearch.indices.refresh({ index: CONFIG.ELASTIC_SEARCH.INDEXES.VIDEOS })
}

View File

@ -87,6 +87,8 @@ export class VideosIndexer extends AbstractScheduler {
await refreshChannelsIndex()
await refreshVideosIndex()
logger.info('Videos indexer ended.')
}
private async indexHost (host: string) {