heqiauto/json-log

Yii2 的 JSON 文件日志

1.1.1 2019-06-11 07:22 UTC

This package is auto-updated.

Last update: 2024-09-11 20:06:43 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License Yii2

Yii2 的 JSON 文件日志。

要求

  • PHP 5.5 或更高版本。

安装

要安装此插件,请按照以下说明操作。

  1. 打开终端并进入您的 Yii2 项目目录

     cd /path/to/project
    
  2. 然后让 Composer 加载库

     composer require heqiauto/json-log
    
  3. 配置应用程序组件

[
    'components' => [
        'log' => [
            'targets' => [
                [
                    'class' => \heqiauto\jsonlog\FileTarget::class,
                    'levels' => ['error', 'warning', 'info'], // Without TRACE and PROFILE on production environment
                ],
            ],
        ],
    ],
]

许可证

JSON Log 是开源软件,根据 MIT 许可证授权。