* @param format the format string
* @param argArray an array of arguments
*/
public void error(String format, Object[] argArray) {
if (log.isErrorEnabled()) {
FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
log.error(ft.getMessage(), ft.getThrowable());
}
}