#2 implement debugger

This commit is contained in:
Logan Cusano
2024-06-02 20:10:55 -04:00
parent e54c80a95b
commit f706ac89b4
15 changed files with 190 additions and 94 deletions

View File

@@ -1,3 +1,6 @@
import { DebugBuilder } from "./modules/debugger.mjs";
const log = new DebugBuilder("client", "client");
import { ClientNodeConfig } from './modules/clientObjectDefinitions.mjs';
import { initSocketConnection } from './modules/socketClient.mjs';
import { checkForUpdates } from './modules/selfUpdater.mjs'
@@ -26,9 +29,9 @@ boot().then((openSocket) => {
startServer(process.env.WEB_SERVER_PORT || 3000, openSocket);
if (!openSocket) {
console.log(openSocket, "Waiting for setup");
log.INFO(openSocket, "Waiting for setup");
}
else {
console.log(openSocket, "Booted Sucessfully");
log.INFO(openSocket, "Booted Sucessfully");
}
})