gpt4 book ai didi

php - 无法在 Yii 中看到日志文件

转载 作者:可可西里 更新时间:2023-11-01 13:08:50 31 4
gpt4 key购买 nike

我无法在 Yii 框架中看到日志文件。默认情况下,它保存在“protected/runtime”中。这是我在 main 中的配置:

'log'=>array(
'class'=>'CLoCFileLogRoutegRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning, info',
'categories'=>'system.*',
))),

这就是我记录的方式:

Yii::log("Index Checkout", "profile", 'system.web.CController');
Yii::trace('IndexCheckout', 'system.web.CController');

没有收到任何错误,但找不到任何日志文件。

有什么想法吗?谢谢。

最佳答案

可能是您的日志类 CLoCFileLogRoutegRouter 的名称有误。应该是CLogRouter

'log' => array(
'class' => 'CLogRouter',
'routes' => array(
array(
'class' => 'CFileLogRoute',
'levels' => 'error, warning, info',
'categories'=>'system.*',
),

关于php - 无法在 Yii 中看到日志文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8223292/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com