Ejemplo n.º 1
0
  private static void createLogger(
      String pattern, String logName, long maxLogSize, Logger logger, Priority priority) {
    // debug log file
    ExtendedPatternFormatter formatter = new ExtendedPatternFormatter(pattern);
    StreamTarget target = null;
    Exception ioe = null;

    try {
      // home was not setup correctly
      if (logName == null) {
        throw new IOException("LogName was null - WildfireHome not set?");
      } else {
        RevolvingFileStrategy fileStrategy = new RevolvingFileStrategy(logName, 5);
        RotateStrategyBySize rotateStrategy = new RotateStrategyBySize(maxLogSize * 1024);
        target = new RotatingFileTarget(formatter, rotateStrategy, fileStrategy);
      }
    } catch (IOException e) {
      ioe = e;
      // can't log to file, log to stderr
      target = new StreamTarget(System.err, formatter);
    }

    logger.setLogTargets(new LogTarget[] {target});
    logger.setPriority(priority);

    if (ioe != null) {
      logger.debug("Error occurred opening log file: " + ioe.getMessage());
    }
  }
Ejemplo n.º 2
0
 public static void fatal(String s, Throwable throwable) {
   if (isFatalEnabled()) {
     errorLog.fatalError(s, throwable);
     if (isDebugEnabled()) {
       printToStdErr(s, throwable);
     }
   }
 }
Ejemplo n.º 3
0
 public static void error(String s, Throwable throwable) {
   if (isErrorEnabled()) {
     errorLog.error(s, throwable);
     if (isDebugEnabled()) {
       printToStdErr(s, throwable);
     }
   }
 }
Ejemplo n.º 4
0
 public static void error(String s) {
   if (isErrorEnabled()) {
     errorLog.error(s);
     if (isDebugEnabled()) {
       printToStdErr(s, null);
     }
   }
 }
Ejemplo n.º 5
0
 public static void error(Throwable throwable) {
   if (isErrorEnabled()) {
     errorLog.error("", throwable);
     if (isDebugEnabled()) {
       printToStdErr(null, throwable);
     }
   }
 }
Ejemplo n.º 6
0
 public static void fatal(String s) {
   if (isFatalEnabled()) {
     errorLog.fatalError(s);
     if (isDebugEnabled()) {
       printToStdErr(s, null);
     }
   }
 }
Ejemplo n.º 7
0
 public static void fatal(Throwable throwable) {
   if (isFatalEnabled()) {
     errorLog.fatalError("", throwable);
     if (isDebugEnabled()) {
       printToStdErr(null, throwable);
     }
   }
 }
Ejemplo n.º 8
0
 public static void rotateErrorLogFile() {
   RotatingFileTarget target = (RotatingFileTarget) errorLog.getLogTargets()[0];
   try {
     target.rotate();
   } catch (IOException e) {
     System.err.println(
         "Warning: There was an error rotating the Jive error log file. "
             + "Logging may not work correctly until a restart happens.");
   }
 }
Ejemplo n.º 9
0
 public static void markErrorLogFile(String username) {
   RotatingFileTarget target = (RotatingFileTarget) errorLog.getLogTargets()[0];
   markLogFile(username, target);
 }
Ejemplo n.º 10
0
 public static void warn(String s, Throwable throwable) {
   if (isWarnEnabled()) {
     warnLog.warn(s, throwable);
   }
 }
Ejemplo n.º 11
0
 public static boolean isWarnEnabled() {
   return warnLog.isWarnEnabled();
 }
Ejemplo n.º 12
0
 public static void info(String s, Throwable throwable) {
   if (isInfoEnabled()) {
     infoLog.info(s, throwable);
   }
 }
Ejemplo n.º 13
0
 public static void info(Throwable throwable) {
   if (isInfoEnabled()) {
     infoLog.info("", throwable);
   }
 }
Ejemplo n.º 14
0
 public static void info(String s) {
   if (isInfoEnabled()) {
     infoLog.info(s);
   }
 }
Ejemplo n.º 15
0
 public static void debug(String s, Throwable throwable) {
   if (isDebugEnabled()) {
     debugLog.debug(s, throwable);
   }
 }
Ejemplo n.º 16
0
 public static void debug(Throwable throwable) {
   if (isDebugEnabled()) {
     debugLog.debug("", throwable);
   }
 }
Ejemplo n.º 17
0
 public static void debug(String s) {
   if (isDebugEnabled()) {
     debugLog.debug(s);
   }
 }
Ejemplo n.º 18
0
 public static boolean isFatalEnabled() {
   return errorLog.isFatalErrorEnabled();
 }
Ejemplo n.º 19
0
 public static void warn(Throwable throwable) {
   if (isWarnEnabled()) {
     warnLog.warn("", throwable);
   }
 }
Ejemplo n.º 20
0
 public static void warn(String s) {
   if (isWarnEnabled()) {
     warnLog.warn(s);
   }
 }
Ejemplo n.º 21
0
 public static boolean isInfoEnabled() {
   return infoLog.isInfoEnabled();
 }