What is meant by Logging ?
Answer / surbhi
Logging is an important mechanism by which system can log errors that are generated.
It is useful to improve the reliability of the system.
Laravel supports different logging modes like single, daily, syslog, and errorlog modes.
You can set these modes in config/app.php file.
'log' => 'daily'
You can see the generated log entries in storage/logs/laravel.log file.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the benefits of laravel?
What is a Artisan command ?
Explain service container?
List the applications supported by valet?
What is a Encryption Process ?
How do I see all defined routes?
What are service providers in laravel?
What is a Restful Resource Controllers ?
What is use of laravel?
Tell me how to use insert statement in laravel?
What is Testability ?
How to enable or disable maintaince mode in laravel.