What are the Severity Levels in Laravel ?
Answer / rajani
As Laravel uses monolog PHP logging library, there are various parameters used for analyzing severity levels.
Various severity levels that are available are error, critical, alert and emergency messages.
You can set the severity level as shown in the command below -
'log_level' => env('APP_LOG_LEVEL', 'error')
| Is This Answer Correct ? | 0 Yes | 0 No |
What are Global Middleware and Route Middleware ?
What is singleton design pattern in laravel?
What do you know about laravel eloquent?
How to install laravel by composer?
What is composer lock in laravel?
Do you know what version of laravel do you generally use?
Explain Events and Listeners ?
How will you describe fillable attribute in a laravel model?
What is active record in laravel?
Tell me how to use insert statement in laravel?
How do you generate urls?
Explain Constructor Injection ?