From 6d96a53ebaacc843c0033894dc55a4436fb3db2c Mon Sep 17 00:00:00 2001 From: ZhelinCheng Date: Fri, 25 Nov 2022 11:02:20 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/download/download.service.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/download/download.service.ts b/src/download/download.service.ts index 03b704f..b715394 100644 --- a/src/download/download.service.ts +++ b/src/download/download.service.ts @@ -2,7 +2,7 @@ * @Author : 程哲林 * @Date : 2022-11-01 15:07:48 * @LastEditors : 程哲林 - * @LastEditTime : 2022-11-25 11:00:44 + * @LastEditTime : 2022-11-25 11:02:10 * @FilePath : /bilibili-downloader/src/download/download.service.ts * @Description : 未添加文件描述 */ @@ -339,7 +339,9 @@ export class DownloadService { const fileSize = fs.statSync(pt).size; - this.logger.log(`下载信息:${bvid} ${type} ${fileSize} ${hdSize}`); + this.logger.log( + `下载信息:${bvid} ${type} ${fileSize} ${hdSize} [${url}]`, + ); const scale = fileSize / hdSize; return scale > 0.999 && scale < 1.001;