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 difference between soft delete & delete in laravel?
Explain important directories used in a common laravel application.
What is laravel?
What is reverse routing?
What is a Middleware Parameters ?
What is x-csrf-token?
What are the steps to configure homestead?
How to set login page as default page in laravel?
Tell me how to set database connection in laravel?
How to create a controller in laravel?
How to use cookies in laravel?
How to Create Creating a Cookie in Laravel ?