Skip to content

Commit 568b411

Browse files
committed
chore: add initial logging info
1 parent 95767e8 commit 568b411

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

backend/bin/www.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ dotenv.config();
88

99
import app from "../app.js";
1010

11-
import debug from "debug";
12-
debug("zero-ui:server");
11+
console.log("zero-ui:server");
1312
import http from "node:http";
1413

1514
/**
@@ -86,5 +85,5 @@ function onError(error) {
8685
function onListening() {
8786
var addr = server.address();
8887
var bind = typeof addr === "string" ? "pipe " + addr : "port " + addr?.port;
89-
debug("Listening on " + bind);
88+
console.log("Listening on " + bind);
9089
}

0 commit comments

Comments
 (0)