7677787980818283
} } public void trace(final String format, final Throwable t) { if (logger.isTraceEnabled()) { logger.log(null, FQCN, Level.TRACE, new SimpleMessage(format), t); } }
9091929394959697
return logger.isTraceEnabled((org.apache.logging.log4j.Marker) marker); } public void trace(final Marker marker, final String s) { if (isTraceEnabled(marker)) { logger.log((org.apache.logging.log4j.Marker) marker, FQCN, Level.TRACE, new SimpleMessage(s), null); } }
118119120121122123124125
} public void trace(final Marker marker, final String s, final Throwable throwable) { if (isTraceEnabled(marker)) { logger.log((org.apache.logging.log4j.Marker) marker, FQCN, Level.TRACE, new SimpleMessage(s), throwable); } }
124125126127128129130131
} } public void debug(final String format) { if (logger.isDebugEnabled()) { logger.log(null, FQCN, Level.DEBUG, new SimpleMessage(format), null); } }
150151152153154155156157
} } public void debug(final String format, final Throwable t) { if (logger.isDebugEnabled()) { logger.log(null, FQCN, Level.DEBUG, new SimpleMessage(format), t); } }
164165166167168169170171
return logger.isDebugEnabled((org.apache.logging.log4j.Marker) marker); } public void debug(final Marker marker, final String s) { if (isDebugEnabled(marker)) { logger.log((org.apache.logging.log4j.Marker) marker, FQCN, Level.DEBUG, new SimpleMessage(s), null); } }
192193194195196197198199
} public void debug(final Marker marker, final String s, final Throwable throwable) { if (isDebugEnabled(marker)) { logger.log((org.apache.logging.log4j.Marker) marker, FQCN, Level.DEBUG, new SimpleMessage(s), throwable); } }
198199200201202203204205
} } public void info(final String format) { if (logger.isInfoEnabled()) { logger.log(null, FQCN, Level.INFO, new SimpleMessage(format), null); } }
224225226227228229230231
} } public void info(final String format, final Throwable t) { if (logger.isInfoEnabled()) { logger.log(null, FQCN, Level.INFO, new SimpleMessage(format), t); } }
238239240241242243244245
return logger.isInfoEnabled((org.apache.logging.log4j.Marker) marker); } public void info(final Marker marker, final String s) { if (isInfoEnabled(marker)) { logger.log((org.apache.logging.log4j.Marker) marker, FQCN, Level.INFO, new SimpleMessage(s), null); } }