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 to create real time sitemap.xml file in laravel?
What is fluent query builder in laravel?
How to Redirecting to Controller Actions in Laravel ?
Do you know validations in laravel?
What is laravel trait?
Why doesn't laravel use semantic versioning?
How to use where null and where not null eloquent query in laravel?
What are Global Middleware and Route Middleware ?
What is homestead.yaml?
How to Create Creating a Cookie in Laravel ?
what is meant by Global Middleware and Route Middleware ?
How do I use sub-domain routing?