I'm sure this is accomplishable by turning debug mode on.
To turn debug mode on:
Open includes/config.php
at the bottom, under this code:
PHP Code:
$config['Misc']['maxwidth'] = 2592;
$config['Misc']['maxheight'] = 1944;
add under this:
PHP Code:
$config['Misc']['debug'] = true;
If you want it to only be enabled for you, and nobody else (I recommend this):
PHP Code:
if($_SERVER['REMOTE_ADDR'] == '{Your IP}') {
$config['Misc']['debug'] = true;
Edit {Your IP} to mimic your IP address.