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 |
Do you know laravel service container?
What is routing in laravel 5 and how we can use it?
What is fillable in laravel model?
How can someone turn off csrf protection for a specific route?
What version of laravel do you generally use?
What is auth :: routes ();?
How do I disable csrf protection in laravel?
How do you call artisan command in laravel?
How x-csrf-token is different from csrf tokens?
Command to connect vagrant via ssh?
What is named route?
What is meant by Laravel - Validation ?