vanhoavn/vzt-laravel-log

Laravel 的 VZT 日志模块。

1.5 2020-09-19 03:15 UTC

This package is auto-updated.

Last update: 2024-09-13 19:12:49 UTC


README

配置

添加到 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'),

使用上述配置,您可以在运行控制台命令时通过在前面添加 LOG_DEBUG=1 来调试日志。

LOG_DEBUG=1 php artisan ...