Move to single file log setup for simplicity.
This commit is contained in:
parent
80b1c853ce
commit
088f4b69b6
|
@ -27,13 +27,11 @@
|
||||||
|
|
|
|
||||||
| Here we will configure the error logger setup for the application which
|
| Here we will configure the error logger setup for the application which
|
||||||
| is built on top of the wonderful Monolog library. By default we will
|
| is built on top of the wonderful Monolog library. By default we will
|
||||||
| build a rotating log file setup which creates a new file each day.
|
| build a basic log file setup which creates a single file for logs.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$logFile = 'log-'.php_sapi_name().'.txt';
|
Log::useFiles(storage_path().'/logs/laravel.log');
|
||||||
|
|
||||||
Log::useDailyFiles(storage_path().'/logs/'.$logFile);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue