Skip to content

Commit a5681d5

Browse files
committed
chore: 포트 확인 로그 추가
1 parent ef39a21 commit a5681d5

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module.exports = {
1212
rules: {
1313
"no-return-await": "off",
1414
"no-useless-catch": "off",
15-
"no-console": "error",
15+
"no-console": "warn",
1616
"no-unused-vars": [
1717
"error",
1818
{

src/server.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { consumeEmailQueue } from "./utils/rabbitmqService.js";
55

66
const startServer = async () => {
77
try {
8-
const { port } = env;
8+
const port = env.port;
9+
console.log(port);
910

1011
app.listen(port, () => {});
1112

0 commit comments

Comments
 (0)