diff --git a/server/app.js b/server/app.js index 4236dce..857d399 100644 --- a/server/app.js +++ b/server/app.js @@ -35,6 +35,7 @@ app.get('/song/:songname', (req, res) => { if (error) { res.status(500).json(error.message) } else { + //console.log(req.params.songname+":"+JSON.stringify(results.rows)); res.status(200).json(results.rows) } })