Integrated debug-MetaReducer from https://ngrx.io/guide/store/metareducers
[examples/angular-tour-of-heroes] / src / app / reducers / debug.ts
1 import { ActionReducer } from '@ngrx/store';
2
3 // console.log all actions
4 export function debug(reducer: ActionReducer<any>): ActionReducer<any> {
5   return function(state, action) {
6     console.log('state', state);
7     console.log('action', action);
8
9     return reducer(state, action);
10   };
11 }