smartapps-fr / yii-monolog
Monolog Yii 扩展
dev-master
2015-10-13 10:46 UTC
Requires
- php: >=5.3
- monolog/monolog: ~1.17.1
This package is auto-updated.
Last update: 2024-09-25 07:24:22 UTC
README
为 Yii 1.* 的 Monolog
灵感来源于 baibaratsky/yii-rollbar.
安装
- 将
Component添加到预加载列表
'preload' => array( 'monolog' ),
- 配置
Component
'monolog' => array( 'class' => 'application.vendor.smartapps-fr.yii-monolog.MonologComponent', 'environment' => 'production', 'syslog_identity' => 'SmartPublisher_Errors', //'stream_handler_filepath' => '/var/log/application.log', 'use_json_formatter' => TRUE ),
- 添加
LogRoute
'monolog' => array( 'class' => 'application.vendor.smartapps-fr.yii-monolog.MonologLogRoute', 'levels' => 'error, warning', 'except' => array('exception.CHttpException.*') ),
- 添加
Exception处理器
'errorHandler' => array( 'class' => 'application.vendor.smartapps-fr.yii-monolog.MonologErrorHandler', ),