url error log

This commit is contained in:
shamoon
2023-05-18 00:26:32 -07:00
parent 328875d0f5
commit ba21ae60d7
2 changed files with 15 additions and 2 deletions

View File

@@ -57,7 +57,14 @@ export default async function genericProxyHandler(req, res, map) {
}
if (status >= 400) {
logger.debug("HTTP Error %d calling %s//%s%s%s...", status, url.protocol, url.hostname, url.port, url.pathname);
logger.debug(
"HTTP Error %d calling %s//%s:%s%s...",
status,
url.protocol,
url.hostname,
url.port,
url.pathname
);
return res.status(status).json({error: {message: "HTTP Error", url: sanitizeErrorURL(url), resultData}});
}