diff --git a/index.js b/index.js index afa8e2a..389676a 100644 --- a/index.js +++ b/index.js @@ -22,6 +22,7 @@ app.get('/videos/:filename',cors(corsOptions), (req, res)=>{ const fileName = req.params.filename; const filePath = videoFileMap[fileName] if(!filePath){ + console.log("Finding File Not Found ", filePath); return res.status(404).send('File not found') }