/** Get the actual error level from the given String.
* @param errorlevel the String to translate.
* @return the errorlevel suitable for the given String.
*/
private Level getErrorLevel (String errorlevel) {
Level l = Enum.valueOf (Level.class, errorlevel.toUpperCase ());
return l;
}