From 202cc1dec36039cdcb39351827b1d1083254008f Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 29 Sep 2017 14:31:34 -0600 Subject: [PATCH] Test download --- Server/src/routes/api/sermons.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/Server/src/routes/api/sermons.js b/Server/src/routes/api/sermons.js index 3fbc2e2..3247e51 100644 --- a/Server/src/routes/api/sermons.js +++ b/Server/src/routes/api/sermons.js @@ -64,8 +64,6 @@ router.get("/download/:id",function(req,res){ return; } var file = finalStorage + sermon.file; - console.log("Final Storage",finalStorage); - console.log("Sermon",sermon.file); res.download(file); }); });