What is meant by Error Log ?
Answer / nafees ahmad
Logging the errors in a web application helps to track them and in planning a strategy for removing them.
The log information can be configured in the web application in config/app.php file. Please note the following points while dealing with Error Log in Laravel -
Laravel uses monolog PHP logging library.
The logging parameters used for error tracking are single, daily, syslog and errorlog.
For example, if you wish to log the error messages in log files, you should set the log value in your app configuration to daily as shown in the command below -
'log' => env('APP_LOG',’daily’),
| Is This Answer Correct ? | 0 Yes | 0 No |
What is dd() function in laravel?
What is mvc in php laravel?
How we can upload files in laravel? Explain
Explain me what directories that need to be writable laravel installation?
How to Deleting Session Data in Laravel ?
explain how to add a middleware in route group?
Please write some additional where clauses in laravel?
How to enable or disable maintenance mode in laravel?
When laravel was launched?
Name aggregates methods of query builder.
What is console in laravel?
What is x-csrf-token?