Correction gestion des logs

This commit is contained in:
2015-10-30 12:01:44 +01:00
parent e5e1748503
commit f56e2b7f4f
3 changed files with 13 additions and 4 deletions

View File

@ -8,7 +8,6 @@ module.exports = function loggerMiddleware(store) {
next(action);
if(action.error) {
logger.error(action.type, action.error);
return app.quit(1);
}
};
};