From 568b411b2872c8f690311aed8742de09622ef4f1 Mon Sep 17 00:00:00 2001 From: dec0dOS Date: Tue, 9 Jul 2024 19:31:41 +0100 Subject: [PATCH] chore: add initial logging info --- backend/bin/www.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/backend/bin/www.js b/backend/bin/www.js index 8f0d612..6044bd2 100755 --- a/backend/bin/www.js +++ b/backend/bin/www.js @@ -8,8 +8,7 @@ dotenv.config(); import app from "../app.js"; -import debug from "debug"; -debug("zero-ui:server"); +console.log("zero-ui:server"); import http from "node:http"; /** @@ -86,5 +85,5 @@ function onError(error) { function onListening() { var addr = server.address(); var bind = typeof addr === "string" ? "pipe " + addr : "port " + addr?.port; - debug("Listening on " + bind); + console.log("Listening on " + bind); }