websupport/yii-stream-log

Yii 流日志路由

v1.0 2018-11-22 12:15 UTC

This package is auto-updated.

Last update: 2024-09-23 02:49:30 UTC


README

为 Yii 1 提供日志路由,将日志消息写入 stdout / stderr

安装

composer install websupport/yii-stream-log

配置

<?php
return array(
    // ...
    'components' => array(
        // ...
        'log' => array(
            'routes' => array(
                array(
                    'class' => 'Websupport\YiiStreamLog\StreamLogRoute',
                    'levels' => 'error, warning',
                    'stream' => 'php://stderr',
                ),
                array(
                    'class' => 'Websupport\YiiStreamLog\StreamLogRoute',
                    'levels' => 'info, trace',
                    'stream' => 'php://stdout',
                ),
                // ...
            ),
        ),
        // ...
    ),
);