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 |
How do I make my application serve its content in different languages?
How to use cookies in laravel?
What are seeds in laravel?
Who are Manually Authenticating Users in Laravel ?
What is a Laravel - Localization ?
How to use stored procedures in laravel?
What is the default session timeout duration and how can it be set?
What is meant by CRUD and explain each of it Operations ?
Does laravel use mvc?
What are the server requirements for laravel 6.0?
What is name route in laravel?
Explain the service container and its advantages.