我想将特定用户的调试级别设置为2.如果我使用app_controller.php,那么DebugKit没有显示,只有我在core.php中设置它但我只想这样做一个特定的登录用户。
最好的方法是什么?
更新 这是我在app_controller.php中的beforeFilter函数中所做的(这不起作用):
if($this->Auth->user('id') == 1)
Configure::write('debug', 2);
答案 0 :(得分:2)
你是怎么做到的?
通常情况下,我会在beforeFilter
的{{1}}中进行此操作并正常工作。
AppController
<强>更新强>
if (...) {
Configure::write('debug', 2);
}