From ed9fa0fa7255ea8cbd1537449f2bc28f6f992468 Mon Sep 17 00:00:00 2001 From: Pitu Date: Thu, 17 Jun 2021 23:31:28 +0900 Subject: [PATCH] chore: remove console.log --- src/api/structures/Server.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/api/structures/Server.js b/src/api/structures/Server.js index 53be9fb..0ee3ea3 100644 --- a/src/api/structures/Server.js +++ b/src/api/structures/Server.js @@ -64,7 +64,6 @@ class Server { } registerAllTheRoutes() { - console.log(Util.config); jetpack.find(this.routesFolder, { matching: '*.js' }).forEach(routeFile => { const RouteClass = require(path.join('../../../', routeFile)); let routes = [RouteClass]; @@ -112,7 +111,6 @@ class Server { const start = async () => { const conf = await Util.config; - console.log(conf); new Server().start(); };