Answer Posted / 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 |
Post New Answer View All Answers
How do I perform dependency injection in laravel?
What is x-csrf-token?
What is the difference between echo print print_r and var_dump?
Explain the difference between implicit and explicit route binding in laravel?
How to resolve class instance out of the container in laravel?
Does wordpress use laravel?
What is route group in laravel?
Tell me how to enable the query logging?
State the difference between get and post method.
How do I send 5 emails and a text message efficiently to newly registered users?
What is csrf protection in laravel?
Explain api.php route.
Explain what is mvc architecture?
Define http middleware?
Tell me what are the feature of laravel 5.0?