Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Last active June 28, 2016 16:48
Show Gist options
  • Save viniciusdacal/7d50b0d1c1f20cb9239bfcb45e59952a to your computer and use it in GitHub Desktop.
Save viniciusdacal/7d50b0d1c1f20cb9239bfcb45e59952a to your computer and use it in GitHub Desktop.
function logger(store) {
const { dispatch, getState } = store;
return next => action => {
console.group(action.type);
console.info('dispatching', action);
let result = next(action);
console.log('next state', getState());
console.groupEnd(action.type);
return result;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment