Buggregator App Versions Save

The old version of Buggregator, which uses Laravel framework, is no longer being actively developed. The new beta version, built with Spiral framework, is now available at https://github.com/buggregator/spiral-app and offers significant improvements in performance and stability, as well as a lighter docker image size of around 300mb.

v1.18.3

2 years ago
  • Fixes problem with caching SMTP mail. #62

v1.18.1

2 years ago

v1.18

2 years ago

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

Logs

v1.17

2 years ago
  1. Fixed problem with ray measure units

  2. 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
  1. Fixed app name
  2. Fixed debug int values with spatie/ray

v1.16.2

2 years ago
  • Fixed problem with SMTP events
  • Fixed problem with debug inv variables

v1.16.1

2 years ago

v1.16

2 years ago
  • Extended info for SMTP mails

Group 48

v1.15.2

2 years ago

v1.15.1

2 years ago

Terminal design

v1.15

2 years ago

image 41 (4)

  • Added support for rendering Sentry errors in a terminal
  • added support for ray event for console
  • added support for ray query for console
  • added support for ray job for console
  • added support for ray view for console