diff --git a/lib/apiserver/index.js b/lib/apiserver/index.js
index 71c194f..5737630 100644
--- a/lib/apiserver/index.js
+++ b/lib/apiserver/index.js
@@ -9,12 +9,12 @@ const handlerOnReceived = require('./handler/on-received');
 
 const app = express();
 
-const accessLogStream = rfs('access_log', {
-    interval: '1d',
-    path: './logs',
-});
+// const accessLogStream = rfs('access_log', {
+//     interval: '1d',
+//     path: './logs',
+// });
 
-app.use(morgan, 'combined', { stream: accessLogStream });
+// app.use(morgan, 'combined', { stream: accessLogStream });
 
 app.get('/ping', (req, res) => { res.end('PONG'); });
 app.get('/service', handlerOnReceived);