Should I add my IP to the existing $debugModeIps array as well?
PHP Code:
$debugModeIps = array( '68.175.61.233', '76.95.12.82' );
Or just create a new al_debug() mirroring the existing sim_debug() one?
PHP Code:
if (!function_exists('al_debug'))
{
function al_debug() { return $_SERVER['REMOTE_ADDR'] == '76.95.12.82'; }
}
Frankly, I'm not certain what debug mode does. I've googled and checked the vB Manual and the official forums; plenty of threads saying how to enable it, but not one listing of the features. Maybe I just failgoogle.
EDIT: Ironically, I seem to have gotten the answer to what it does from you. Well, you from the beforetime, in the thread where you enabled it for yourself based on the same vb.org thread I was just referencing. 

Originally Posted by
Simetrical
This shows a neat little thing at the bottom of the page that allows me to see what templates were used, how long the page took to generate, what queries were used, and how long each took. Very nifty. In particular, I find that MySQL queries take tens of milliseconds, PHP logic takes hundreds. xdebug is definitely something to think about, sooner than more PHP tweaks.