vanhoavn/vzt-laravel-log

VZT Logger module for Laravel.

Installs: 295

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/vanhoavn/vzt-laravel-log

1.5 2020-09-19 03:15 UTC

This package is auto-updated.

Last update: 2025-09-13 21:08:41 UTC


README

Configurations

Add to config\logging.php

    /**
     * Write the logs to stderr first
     **/
    'override_output'   => env('LOG_DEBUG', false),
    /**
     * Minimum logging levels: all levels below this will be ignored
     **/
    'min_logging_level' => env('MIN_LOGGING_LEVEL', 'notice'),

With the above configs, you can debug loggings while running console commands by prepending LOG_DEBUG=1.

LOG_DEBUG=1 php artisan ...