diff --git a/src/main/services/download/http-download.ts b/src/main/services/download/http-download.ts index bf290379..1ce99825 100644 --- a/src/main/services/download/http-download.ts +++ b/src/main/services/download/http-download.ts @@ -54,7 +54,9 @@ export class HttpDownload { private removeTrackerFile() { if (fs.existsSync(this.trackerFilePath)) { - fs.rm(this.trackerFilePath, () => {}); + fs.rm(this.trackerFilePath, (err) => { + logger.error(err); + }); } }