Logger
Explore how to implement and configure the AdonisJs logger for debugging and monitoring your applications. Understand logging levels and methods to record important data and system events for better error tracking and analysis.
We'll cover the following...
We'll cover the following...
When we build an application, we may need to log something for debugging or recording purposes. Adonis has a built-in logger based on the popular Winston package. The logger comes with two drivers: console and file. These drivers can be configured inside config/app.js.
Logging levels and methods
The logger uses ...