The debug option in your ./config/app.php configuration file determines how much information is shown based on
the set environment. This option is based on the APP_DEBUG setting in your environment file.
During testing, you can set APP_DEBUG to true and APP_ENV to development.
Before going to production, make sure to set APP_DEBUG to false, and set APP_ENV to production.
PSR-3 Logging
Codefy uses a PSR-3 implementation of logging that sends your logs to files and inboxes. Check out the Logging section for logging levels and SMTP logging for mission-critical applications.