load ytmusic stuffs from cache and add dev logging #7

Merged
oddbyte merged 7 commits from dev into main 2026-01-19 16:09:19 -05:00
Showing only changes of commit 85279ecc47 - Show all commits

View File

@@ -128,7 +128,9 @@ async function send404(req, res) {
const app = express(); const app = express();
app.use((req, res, next) => { app.use((req, res, next) => {
if (dev == "true") console.log(req); if (dev == "true") {
console.log(`got a req to ${req.path}?${req.query} with a body of ${req.body}`);
}
next(); next();
}); });