Exemple #1
0
 public static void fatal(String s, Throwable throwable) {
   if (isFatalEnabled()) {
     errorLog.fatalError(s, throwable);
     if (isDebugEnabled()) {
       printToStdErr(s, throwable);
     }
   }
 }
Exemple #2
0
 public static void fatal(Throwable throwable) {
   if (isFatalEnabled()) {
     errorLog.fatalError("", throwable);
     if (isDebugEnabled()) {
       printToStdErr(null, throwable);
     }
   }
 }
Exemple #3
0
 public static void fatal(String s) {
   if (isFatalEnabled()) {
     errorLog.fatalError(s);
     if (isDebugEnabled()) {
       printToStdErr(s, null);
     }
   }
 }
Exemple #4
0
 public static void error(String s, Throwable throwable) {
   if (isErrorEnabled()) {
     errorLog.error(s, throwable);
     if (isDebugEnabled()) {
       printToStdErr(s, throwable);
     }
   }
 }
Exemple #5
0
 public static void error(Throwable throwable) {
   if (isErrorEnabled()) {
     errorLog.error("", throwable);
     if (isDebugEnabled()) {
       printToStdErr(null, throwable);
     }
   }
 }
Exemple #6
0
 public static void error(String s) {
   if (isErrorEnabled()) {
     errorLog.error(s);
     if (isDebugEnabled()) {
       printToStdErr(s, null);
     }
   }
 }