server: Remove extra debug print

This commit is contained in:
Adam Goldsmith 2023-09-09 18:30:40 -04:00
parent 680d0a943a
commit b5a5eda5d2

View File

@ -18,7 +18,6 @@ app.get('/ipad.png', async (req, res) => {
} }
let frontend_url = new URL('/wall-display.html', 'http://' + req.get('host')); let frontend_url = new URL('/wall-display.html', 'http://' + req.get('host'));
console.debug(frontend_url);
if (typeof req.query.tool == 'string') { if (typeof req.query.tool == 'string') {
frontend_url.searchParams.set('tool', req.query.tool); frontend_url.searchParams.set('tool', req.query.tool);
} }