drewdan/devdump-laravel-log-monitor

v1.0.0 2023-08-08 19:31 UTC

This package is not auto-updated.

Last update: 2024-06-12 22:12:04 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