Skip to content

Commit 1322e26

Browse files
authored
add console.log after app bootstrap
1 parent 6b0de71 commit 1322e26

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,6 @@ createConnection().then(async connection => {
2626
// run app
2727
app.listen(3000);
2828

29-
}).catch(error => console.log("TypeORM connection error: ", error));
29+
console.log("Express application is up and running on port 3000");
30+
31+
}).catch(error => console.log("TypeORM connection error: ", error));

0 commit comments

Comments
 (0)