mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
const logger = store => next => action => {
|
|
console.group(action.type)
|
|
console.info('dispatching', action)
|
|
let result = next(action)
|
|
console.log('next state', store.getState())
|
|
console.groupEnd()
|
|
return result
|
|
}
|
|
export default logger |