Put the following into config.php
PHP Code:
if ($_SERVER['REMOTE_ADDR'] == 'IP address of admin 1') {
$config['Misc']['debug'] = true;
} else if ($_SERVER['REMOTE_ADDR'] == 'IP address of admin 2') {
$config['Misc']['debug'] = true;
} else if ($_SERVER['REMOTE_ADDR'] == 'IP address of admin 3') {
$config['Misc']['debug'] = true;
} else {
$config['Misc']['debug'] = false;
}
I realise you could put it all on 1 line or'd together.