File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11<?php
22
3+ use GuzzleHttp \Exception \RequestException ;
34use GuzzleHttp \Exception \ClientException ;
45use GuzzleHttp \Exception \ServerException ;
56use Illuminate \Foundation \Application ;
2930 ]);
3031 })
3132 ->withExceptions (function (Exceptions $ exceptions ) {
32- $ exceptions ->report (function (ServerException |ClientException $ e ) {
33+ $ exceptions ->report (function (ServerException |ClientException | RequestException $ e ) {
3334 Log::warning ('HTTP Request Exception ' , [
3435 'url ' => (string ) $ e ->getRequest ()->getUri (),
3536 'status ' => $ e ->getResponse ()->getStatusCode (),
Original file line number Diff line number Diff line change 6969 'driver ' => 'daily ' ,
7070 'path ' => storage_path ('logs/laravel.log ' ),
7171 'level ' => env ('LOG_LEVEL ' , 'debug ' ),
72- 'days ' => env ('LOG_DAILY_DAYS ' , 14 ),
72+ 'days ' => env ('LOG_DAILY_DAYS ' , 3 ),
7373 'replace_placeholders ' => true ,
7474 ],
7575
You can’t perform that action at this time.
0 commit comments