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 |
Explain how to install valet?
Explain few features of laravel?
What is database seeding in laravel?
Tell me how would you add a 3rd party package like sentry?
What is auth :: routes ();?
Tell me does laravel support caching?
Do you know what developed the laravel?
Define laravel guard.
Explain me how to assign multiple middleware to laravel route ?
Explain faker in laravel.
How to use select query in laravel?
What is service container?