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 are the requirements to install valet?
How to pass custom table name in model?
Explain what is laravel
What are the three service provider types?
what are Important Points contracts in Laravel ?
What is the use of dd() function?
List some features of laravel 5.0?
What is laravel 5?
How to resolve class instance out of the container in laravel?
How to install homestead vagrant box?
How does the ioc (inversion of control) container work?
How to Assigning Middleware to Route ?