public static void fatal(String s, Throwable throwable) { if (isFatalEnabled()) { errorLog.fatalError(s, throwable); if (isDebugEnabled()) { printToStdErr(s, throwable); } } }
public static void fatal(Throwable throwable) { if (isFatalEnabled()) { errorLog.fatalError("", throwable); if (isDebugEnabled()) { printToStdErr(null, throwable); } } }
public static void fatal(String s) { if (isFatalEnabled()) { errorLog.fatalError(s); if (isDebugEnabled()) { printToStdErr(s, null); } } }
public static void error(String s, Throwable throwable) { if (isErrorEnabled()) { errorLog.error(s, throwable); if (isDebugEnabled()) { printToStdErr(s, throwable); } } }
public static void error(Throwable throwable) { if (isErrorEnabled()) { errorLog.error("", throwable); if (isDebugEnabled()) { printToStdErr(null, throwable); } } }
public static void error(String s) { if (isErrorEnabled()) { errorLog.error(s); if (isDebugEnabled()) { printToStdErr(s, null); } } }