diff options
| author | Pitu <[email protected]> | 2021-06-17 23:31:28 +0900 |
|---|---|---|
| committer | Pitu <[email protected]> | 2021-06-17 23:31:28 +0900 |
| commit | ed9fa0fa7255ea8cbd1537449f2bc28f6f992468 (patch) | |
| tree | 7c6cd26fa8593e52654534eae7b7fd18b7c68884 /src/api/structures/Server.js | |
| parent | feat: show validation errors from joi on the frontend (diff) | |
| download | host.fuwn.me-ed9fa0fa7255ea8cbd1537449f2bc28f6f992468.tar.xz host.fuwn.me-ed9fa0fa7255ea8cbd1537449f2bc28f6f992468.zip | |
chore: remove console.log
Diffstat (limited to 'src/api/structures/Server.js')
| -rw-r--r-- | src/api/structures/Server.js | 2 |
1 files changed, 0 insertions, 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(); }; |