make req logging less verbose

This commit is contained in:
2026-01-19 16:06:54 -05:00
parent c9d7afd353
commit 85279ecc47

View File

@@ -128,7 +128,9 @@ async function send404(req, res) {
const app = express();
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();
});