This repository has been archived by the owner on May 20, 2023. It is now read-only.
Releases: buggregator/laravel-app
Releases · buggregator/laravel-app
v1.18.3
v1.18.1
Update docker-image.yml
Added ability to receive monolog logs via TCP connection and display logs in a Terminal
You can add a new channel to config file config/logging.php
'channels' => [
...
'socket' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => \Monolog\Handler\SocketHandler::class,
'formatter' => \Monolog\Formatter\JsonFormatter::class,
'handler_with' => [
'connectionString' => env('LOG_SOCKET_URL', '127.0.0.1:9913'),
],
],
]
the set default channel to socket
LOG_CHANNEL=socket
LOG_SOCKET_URL=127.0.0.1:9913
v1.17
-
Fixed problem with ray measure units
-
Added ability to suppress cli output for smtp, var-dumper, ray and sentry
If you don't want to see dump output in your terminal, you can disable it through ENV variables:
CLI_SMTP_STREAM=false
CLI_VAR_DUMPER_STREAM=false
CLI_SENTRY_STREAM=false
CLI_RAY_STREAM=false
Example
docker run --pull always --env CLI_SMTP_STREAM=false --env CLI_SENTRY_STREAM=false -p 23517:8000 -p 1025:1025 -p 9912:9912 butschster/debugger:latest
- Fixed app name
- Fixed debug int values with spatie/ray
Fix
- Fixed problem with SMTP events
- Fixed problem with debug inv variables
v1.16.1
Update docker-image.yml
Added ability to display SMTP mails in a Terminal
v1.15.2
Update docker-image.yml