12345678910111213141516171819202122232425262728 |
- <?php namespace App\Providers;
- use Illuminate\Contracts\Logging\Log;
- use Illuminate\Support\ServiceProvider;
- class LogServiceProvider extends ServiceProvider {
- /**
- * Configure the application's logging facilities.
- *
- * @return void
- */
- public function boot(Log $log)
- {
- $log->useFiles(storage_path().'/logs/laravel.log');
- }
- /**
- * Register the service provider.
- *
- * @return void
- */
- public function register()
- {
- //
- }
- }
|