public void error(String msg, Throwable t) {
log(LogType.ERROR, msg, t);
}
private void formatAndLog(LogType logType, String format, Object... argArray) {
FormattingTuple ft = MessageFormatter.arrayFormat(format, argArray);
log(logType, ft.getMessage(), ft.getThrowable());
}