fix: Display ORIGIN env in prodserver logs

This commit is contained in:
April Hall 2025-02-24 02:59:50 -05:00
parent da8921126d
commit e34fa995d3
Signed by: arithefirst
GPG Key ID: 4508A15C4DB91C5B

View File

@ -46,5 +46,5 @@ app.use((req, res, next) => {
});
server.listen(port, () => {
console.log(`Listening on http://localhost:${port}`);
console.log(`Listening on ${process.env.ORIGIN}`);
});