chore: remove console.log

This commit is contained in:
Pitu 2021-06-17 23:31:28 +09:00
parent 0cae7e9eda
commit ed9fa0fa72
1 changed files with 0 additions and 2 deletions

View File

@ -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();
};