updated logs

This commit is contained in:
rafaelsideguide
2024-07-25 09:48:06 -03:00
parent 6208ecdbc0
commit 309728a482
28 changed files with 100 additions and 64 deletions
+3 -3
View File
@@ -83,9 +83,9 @@ if (cluster.isMaster) {
function startServer(port = DEFAULT_PORT) {
const server = app.listen(Number(port), HOST, () => {
Logger.info(`Worker ${process.pid} listening on port ${port}`);
// Logger.info(
// `For the UI, open: http://${HOST}:${port}/admin/${process.env.BULL_AUTH_KEY}/queues`
// );
Logger.info(
`For the Queue UI, open: http://${HOST}:${port}/admin/${process.env.BULL_AUTH_KEY}/queues`
);
});
return server;
}