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 an artisan? Name some common artisan commands?
What are the Features of Laravel ?
What is Testability ?
How can you exclude uris from csrf protection in laravel?
What do you mean by dusk used in laravel 5?
How to register a middleware in laravel?
What are named routes in laravel?
What do you understand by reverse routing?
What is named route?
Differentiate between delete() and softdeletes().
What is meant by Implicit Controllers
What is method spoofing in laravel?