我想将特定用户的调试级别设置为 2。如果我使用 app_controller.php 来显示 DebugKit 不会显示,只有当我在 core.php 中设置它但我只想为一个特定的登录时这样做用户。
最好的方法是什么?
更新: 这是我在 app_controller.php 的 beforeFilter 函数中所做的(没有用):
if($this->Auth->user('id') == 1)
Configure::write('debug', 2);
我想将特定用户的调试级别设置为 2。如果我使用 app_controller.php 来显示 DebugKit 不会显示,只有当我在 core.php 中设置它但我只想为一个特定的登录时这样做用户。
最好的方法是什么?
更新: 这是我在 app_controller.php 的 beforeFilter 函数中所做的(没有用):
if($this->Auth->user('id') == 1)
Configure::write('debug', 2);