remove console statement

This commit is contained in:
Matteo Pagliazzi
2016-04-14 13:31:35 +02:00
parent bc9f2b81e7
commit 6ba41f3099
-1
View File
@@ -44,7 +44,6 @@ module.exports.readController = function readController (router, controller) {
let fn = handler ? _wrapAsyncFn(handler) : noop;
router[method](url, ...middlewares, fn);
console.log(url, middlewares.map(m => m.name));
});
};