Ive tweaked a few mods that submit errors to the error logs but currently they are listed under 'general'. What I'd like to know (beta 4) is where are the error types listed (Im most likely answer my own question) so I can direct my weak to create its own error category
I think its whatever type is in the db
'critical' seems to be the only predefined one.
undefined_vars (for missing variable/language strings).
Errors.php sets the type for general
$error_type = strpos(strtolower($error_string), 'undefined') !== false ? 'undefined_vars' : 'general';
Yea, mentioned in the post I'd figure it out almost immediately after I asked..
Error types are defined in the array of Errors.php so all I needed to do was add my own error type
'Spam'
Then append that to the end of the fatal_error and presto!