From 3812b4cf9805d58be1aa5ab6ac957c30b037b9fc Mon Sep 17 00:00:00 2001 From: Xen0Xys Date: Wed, 22 May 2024 19:02:56 +0200 Subject: [PATCH] :loud_sound: Improve webtoon download logging --- src/modules/webtoon/webtoon/download-manager.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/webtoon/webtoon/download-manager.service.ts b/src/modules/webtoon/webtoon/download-manager.service.ts index 0c143e1..ef6cb27 100644 --- a/src/modules/webtoon/webtoon/download-manager.service.ts +++ b/src/modules/webtoon/webtoon/download-manager.service.ts @@ -63,6 +63,7 @@ export class DownloadManagerService{ this.currentDownload = this.queue.dequeue(); if(!this.currentDownload) return; + console.log(`Downloading ${this.currentDownload.title} (${this.currentDownload.language}).`); if(!await this.webtoonDatabase.isWebtoonSaved(this.currentDownload.title, this.currentDownload.language)){ const webtoon: WebtoonModel = await this.webtoonParser.getWebtoonInfos(this.currentDownload); const webtoonData: WebtoonDataModel = await this.webtoonDownloader.downloadWebtoon(webtoon);