Home | History | Annotate | Download | only in log4testng

Lines Matching defs:FATAL

20  * TRACE, DEBUG, INFO, WARN, ERROR and FATAL.

72 private static final int FATAL= i++;
102 levelNames[FATAL] = "FATAL";
288 * Log a message object with the FATAL level.
292 public void fatal(Object message) {
293 log(FATAL, message, null);
297 * Log a message object with the FATAL level including the stack trace of the
303 public void fatal(Object message, Throwable t) {
304 log(FATAL, message, t);
586 strLogger.fatal("fatal should appear");
588 Assert.assertTrue(err1.toString().contains("[java.lang.String] [FATAL] fatal should appear"));