Browse Source

Remove console logging.

Lee Morgan 5 năm trước cách đây
mục cha
commit
9ca63815c5
1 tập tin đã thay đổi với 0 bổ sung2 xóa
  1. 0 2
      app.js

+ 0 - 2
app.js

@@ -50,13 +50,11 @@ app.use(express.json());
 app.use(session(sessionOptions));
 require("./routes")(app);
 
-console.time("time");
 cssmerger([
     "./views/shared/css/general.css",
     "./views/shared/css/loader.css",
     "./views/dashboardPage/css"
 ], "./views/dashboardPage/bundle.css");
-console.timeEnd("time");
 
 if(process.env.NODE_ENV === "production"){
     httpsServer.listen(process.env.HTTPS_PORT, ()=>{});