drewdan / devdump-laravel-log-monitor
description
v1.0.0
2023-08-08 19:31 UTC
Requires
- php: ^8.2
- ext-json: *
Requires (Dev)
- orchestra/testbench: ^8.6
- spatie/laravel-ray: ^1.32
This package is not auto-updated.
Last update: 2025-01-09 00:38:14 UTC
README
Description
This package is designed to be used with the DevDump.online Laravel Log tool. It sends your logs to DevDump, so they can be reviewed and monitored alongside your other dumps.
Installation
composer require drewdan/devdump-laravel-log-monitor
Usage
Add the following to your config/logging.php
file:
'devdump' => [ 'driver' => 'devdump', ],
Then add the following to your .env
file:
DEVDUMP_INGRESS_URL=your-ingress-url-here DEVDUMP_KEY=your-key-here
The ingress url and key can be generated from within the devdump.online application.
Finally, in your ENV file, change the LOG_CHANNEL
to devdump
:
LOG_CHANNEL=devdump