Skip to content
This repository has been archived by the owner on May 20, 2023. It is now read-only.

Tags: buggregator/laravel-app

Tags

v1.18.3

Toggle v1.18.3's commit message
Small fix

v1.18.2

Toggle v1.18.2's commit message
Fixes problem with caching SMTP mail

fixed #62

v1.18.1

Toggle v1.18.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update docker-image.yml

v1.18

Toggle v1.18's commit message
Added ability to receive monolog logs via TCP connection.

You can add a new channel to config file `config/logging.php`

```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
```

fixed #10

v1.17

Toggle v1.17's commit message
Added ability to suppress cli output for smtp, var-dumper, ray and se…

…ntry

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
```

v1.16.2

Toggle v1.16.2's commit message
Merge remote-tracking branch 'origin/master'

v1.16.1

Toggle v1.16.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update docker-image.yml

v1.16

Toggle v1.16's commit message
Merge remote-tracking branch 'origin/master'

v1.15.2

Toggle v1.15.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update docker-image.yml

v1.15.1

Toggle v1.15.1's commit message
Merge remote-tracking branch 'origin/master'