removed the concept of prerender strategies. rehydrate is the default now

This commit is contained in:
Art Lowel
2018-02-01 13:57:24 +01:00
parent 4fbceab1b9
commit 78574df60b
3 changed files with 5 additions and 12 deletions

View File

@@ -6,13 +6,11 @@ let actionCounter = 0;
export function debugMetaReducer(reducer) {
return (state, action) => {
if (isNotEmpty(console.debug)) {
actionCounter++;
console.debug('@ngrx action', actionCounter, action.type);
console.debug('state', state);
console.debug('action', action);
console.debug('------------------------------------');
}
actionCounter++;
console.log('@ngrx action', actionCounter, action.type);
console.log('state', JSON.stringify(state));
console.log('action', JSON.stringify(action));
console.log('------------------------------------');
return reducer(state, action);
}
}