aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPitu <[email protected]>2021-06-17 23:31:28 +0900
committerPitu <[email protected]>2021-06-17 23:31:28 +0900
commited9fa0fa7255ea8cbd1537449f2bc28f6f992468 (patch)
tree7c6cd26fa8593e52654534eae7b7fd18b7c68884
parentfeat: show validation errors from joi on the frontend (diff)
downloadhost.fuwn.me-ed9fa0fa7255ea8cbd1537449f2bc28f6f992468.tar.xz
host.fuwn.me-ed9fa0fa7255ea8cbd1537449f2bc28f6f992468.zip
chore: remove console.log
-rw-r--r--src/api/structures/Server.js2
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();
};