I want to set the debug level for a specific user to 2. If I use the app_controller.php for that DebugKit does not show up, only if I set it in the core.php but I only want to do it for one specific loggedin user.
What is the best way to do that?
Update: This is what I did in the beforeFilter function in app_controller.php (which didn't work):
if($this->Auth->user('id') == 1)
Configure::write('debug', 2);