savannabits / advanced-logger
Advanced logger
Requires
- php: ^7.2.5
- ext-json: *
- illuminate/http: ^6.0|^7.0
- illuminate/support: ^6.0|^7.0
- monolog/monolog: ^1.12|^2.0
Requires (Dev)
- laravel/framework: 6.*|7.*
- orchestra/testbench: ~4.0
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2024-10-15 17:19:55 UTC
README
Advanced logger is a laravel package used to automatically log every request made to you laravel application. Each request is also identified by hash, which can be used in standard log to identify the request.
This package has been inspired by package https://github.com/andersao/laravel-request-logger from Anderson Andrade.
Installation
Composer
Run composer require savannabits/advamnced-logger
in your terminal.
Laravel
This package is for Laravel 5.5, 5.6 and 5.7, so it has auto discovery.
To publish config file, run
php artisan vendor:publish --provider="Savannabits\AdvancedLogger\AdvancedLoggerServiceProvider"
Configuration
All options are described in config/advanced-logger.php
.
Using request hash in standard log file in Laravel 5.7
If you would like to have request identifier in you standard log, to match log events with request you could add to config/logging.php
'tap' => [Savannabits\AdvancedLogger\LogCustomizers\HashLogCustomizer::class],
to daily
channel. The resulted code should looks like
'channels' => [ ... 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/laravel.log'), 'level' => 'debug', 'days' => 14, 'tap' => [Savannabits\AdvancedLogger\LogCustomizers\HashLogCustomizer::class], ], ... ],
This log modifier can be used also in other channels, however it uses extended LineFormatter
.