npm install shasta-logger
- Logging is done using
console.debug
- There is no configuration, this is by design.
- If you want more granular configuration, use redux-logger
Use the logger function as middleware in your store.
import { createStore } from 'shasta'
import logger from 'shasta-logger'
// you get the point
let store = createStore({
plugins: [
otherStuff,
logger
]
})