chore(server): remove URL logging to increase performance slightly

This commit is contained in:
Elian Doran 2025-05-17 00:23:45 +03:00
parent b678e4ea28
commit cb381d01c1
No known key found for this signature in database

View File

@ -40,7 +40,6 @@ async function register(app: express.Application) {
url = url.replace(/\.js$/, ".ts"); url = url.replace(/\.js$/, ".ts");
} }
url = `/${assetPath}/app${url}`; url = `/${assetPath}/app${url}`;
console.log(`${req.url} => ${publicUrl}${url}`);
return url; return url;
} }
}); });