pinia-plugin-logger
v0.0.3
Published
Logger for Pinia
Downloads
25
Maintainers
Readme
Pinia Actions Logger Plugin
🕹Guide
Install
$ npm install --save pinia-plugin-logger
Usage
import { createPinia } from "pinia";
import piniaPluginLogger from "pinia-plugin-logger";
const pinia = createPinia();
const logger = piniaPluginLogger({
activate: true, // Activate the logger
expanded: true, // Expand the console group
store: true, // Show the store name in the console
timestamp: true, // Show the time of the action in the console
errors: true, // Show error the console
include: [], // If defined, only the actions in this list will be logged
exclude: [], // If defined, the work of this list is excluded
});
pinia.use(logger);
export default pinia;
📬 Recommended Commit Message
| When | Commit Message | | :----------------- | :-------------------------- | | Add function | feat: ⚡️ Add function | | Fix bug | fix: 🐞 Fix bug | | Refactoring | refactor: 🛠 Refactoring | | Add package | package: 📦 Add package | | Fix readme | docs: 📚 Fix readme | | Improvements style | style: 👁 Improvements style |