From b562ba34b0ff26848b66ab73f111bd948df26af0 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Mon, 11 May 2020 20:31:35 -0600 Subject: [PATCH] Fix bad log --- core/download_queue.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/download_queue.js b/core/download_queue.js index 1eb4023e..d80ddf34 100644 --- a/core/download_queue.js +++ b/core/download_queue.js @@ -92,9 +92,9 @@ module.exports = class DownloadQueue { FileEntry.removeEntry(entry, { removePhysFile : true }, err => { const Log = require('./logger').log; if(err) { - Log.warn( { fileId : entry.fileId, path : outputFileName }, 'Failed removing temporary session download' ); + Log.warn( { fileId : entry.fileId, path : entry.filePath }, 'Failed removing temporary session download' ); } else { - Log.debug( { fileId : entry.fileId, path : outputFileName }, 'Removed temporary session download item' ); + Log.debug( { fileId : entry.fileId, path : entry.filePath }, 'Removed temporary session download item' ); } }); }