diff --git a/src/api/index.js b/src/api/index.js index a149933..895b191 100755 --- a/src/api/index.js +++ b/src/api/index.js @@ -35,7 +35,6 @@ export default ({ config, controller }) => { .then(response => response.json()) .then(data => res.send(data.data)) .catch(err => { - console.info(err) res.status(err.status || 404).send({ error: err.message }) }); })