(jsrt) fix: elapsed time calc

This commit is contained in:
lollipopkit🏳️‍⚧️
2025-07-16 12:53:35 +08:00
parent 9a48ed47f4
commit 9d9070c899
4 changed files with 19 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
// Post-processing function for outgoing responses
function postProcessResponse(req, res) {
logWithTimestamp('Post-processing response with status: ' + res.statusCode);
function postProcessResponse() {
logWithReq('Post-processing response with status: ' + req.statusCode);
}