Here are two lines of code that will make your error messages easier to read. These two lines should be put in your bootstrap file:
// Make error messages easier to read
ini_set('error_prepend_string', '<pre>');
ini_set('error_append_string', '</pre>');
What it simply does is wrap the error message in <pre> tags so that line breaks remain intact
