赞
踩
本项目为yii2-debug的扩展,使用MongoDB对debug数据进行存储。如果使用Yii2进行多个应用的开发的话,把debug信息汇聚到一起可以方便查阅。
https://packagist.org/packages/yagas/yii2-debug4mongo
src/ 代码目录
src/models/ 数据模型
src/views/ 视图文件
src/controllers/ 控制器
composer require yagas/yii2-debug4mongo
if (YII_ENV_DEV) {
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => 'yagas\debug\Module',
'logTarget' => [
'class' => 'yagas\debug\LogTarget',
'app_no' => 'localhost_001', // 为当前站点设定标识
],
'percent' => 10, // 百分之十的几率清除历史数据(GC)
];
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。