Comment logging
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
2023-04-11 11:33:11 +02:00
parent 2a31771ac6
commit b8f8f27794
5 changed files with 18 additions and 18 deletions

View File

@@ -52,8 +52,8 @@ export function provideBootstrapEffects(effects: Type<any>[]) {
// console.log all actions
export function debug(reducer: ActionReducer<any>): ActionReducer<any> {
return function(state, action) {
console.debug('-- State', state);
console.debug('-- Action', action);
//console.debug('-- State', state);
//console.debug('-- Action', action);
return reducer(state, action);
};