overfirmament / over-util
A Laravel Util Package
v3.9
2025-03-07 02:46 UTC
Requires
- php: ^8.1
- guzzlehttp/guzzle: ^7.8
- laravel/framework: ~10.0|~11.0|~12.0
- monolog/monolog: ^3.4
README
个人使用的工具包
安装本包后,请在 config/logging.php
文件中加入两项日志 channels:
'http_out' => [ 'driver' => 'daily', 'path' => storage_path('logs/http/out_info.log'), 'level' => env('LOG_LEVEL', 'debug'), 'days' => 14, 'formatter' => Overfirmament\OverUtils\Logger\LogFormatter::class ], "http_in" => [ 'driver' => 'daily', 'path' => storage_path('logs/http/in_info.log'), 'level' => env('LOG_LEVEL', 'debug'), 'days' => 14, 'formatter' => Overfirmament\OverUtils\Logger\LogFormatter::class ],