Skip to content

Commit a8f9bb6

Browse files
committed
fix(server): remove wrong string connection
1 parent ed99fec commit a8f9bb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import app from "./main.ts";
44

55
app.listen({ port: 8080 });
66
app.addEventListener("listen", ({ hostname, port, secure }) => {
7-
log.info(`Database: ${env.DBMYSQL_DATABASE_NAME}`);
7+
log.info(`Database: ${env.MYSQL_DATABASE_NAME}`);
88
log.success(`Server is listening on ${secure ? "https": "http"}://${hostname}:${port}`);
99
log.success(`Server is running on ${hostname}:${port}`)
1010
})

0 commit comments

Comments
 (0)