strapi-plugin-persistent-logs
v0.1.16
Published
Logging plugin for strapi
Downloads
2
Readme
Strapi Plugin Logs
Description
This is a plugin for Strapi, a headless CMS, that provides logging functionality. It allows you to keep track of various events and actions in your Strapi application, helping you monitor its performance and troubleshoot issues.
Features
- Detailed logging: Get comprehensive details about each event, including the time it occurred
- Easy-to-read format: Logs are formatted in a way that's easy to read and understand.
Installation
- Navigate to your Strapi project directory.
- Install the plugin using npm:
npm install strapi-plugin-persistent-logs
- Include the plugin in your Strapi project:
// config/plugins.js
module.exports = ({ env }) => ({
"persistent-logs": {
enabled: true,
}
});