We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95767e8 commit 568b411Copy full SHA for 568b411
backend/bin/www.js
@@ -8,8 +8,7 @@ dotenv.config();
8
9
import app from "../app.js";
10
11
-import debug from "debug";
12
-debug("zero-ui:server");
+console.log("zero-ui:server");
13
import http from "node:http";
14
15
/**
@@ -86,5 +85,5 @@ function onError(error) {
86
85
function onListening() {
87
var addr = server.address();
88
var bind = typeof addr === "string" ? "pipe " + addr : "port " + addr?.port;
89
- debug("Listening on " + bind);
+ console.log("Listening on " + bind);
90
}
0 commit comments