Defining custom loglevels
The Aurelia Store plugin provides various logging features to help you understand the flow of actions and state changes. You can customize the log levels used for different features using the logDefinitions
option during plugin registration.
Available Log Levels:
You can use the following standard log levels:
'log'
'debug'
'info'
'warn'
'error'
Customizable Log Features:
You can control the log levels for the following features:
dispatchedActions
: Logs information about dispatched actions (name, parameters).performanceLog
: Logs performance measurements (ifmeasurePerformance
is enabled).devToolsStatus
: Logs the status of the Redux DevTools integration (connected, disconnected).
Example:
In the example above, dispatched actions will be logged using console.debug
, performance information will be logged using console.info
, and DevTools status will be logged using console.warn
.
Last updated
Was this helpful?