blob: 54a2dad8d58b3248459d87443ae1c588aac4b240 [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Sun Sep 20 18:40:46 MST 2015 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Logger (Apache Log4j API 2.4 API)</title>
<meta name="date" content="2015-09-20">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Logger (Apache Log4j API 2.4 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Logger.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../org/apache/logging/log4j/LoggingException.html" title="class in org.apache.logging.log4j"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/logging/log4j/Logger.html" target="_top">Frames</a></li>
<li><a href="Logger.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.apache.logging.log4j</div>
<h2 title="Interface Logger" class="title">Interface Logger</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Known Subinterfaces:</dt>
<dd><a href="../../../../org/apache/logging/log4j/spi/ExtendedLogger.html" title="interface in org.apache.logging.log4j.spi">ExtendedLogger</a></dd>
</dl>
<dl>
<dt>All Known Implementing Classes:</dt>
<dd><a href="../../../../org/apache/logging/log4j/spi/AbstractLogger.html" title="class in org.apache.logging.log4j.spi">AbstractLogger</a>, <a href="../../../../org/apache/logging/log4j/spi/ExtendedLoggerWrapper.html" title="class in org.apache.logging.log4j.spi">ExtendedLoggerWrapper</a>, <a href="../../../../org/apache/logging/log4j/simple/SimpleLogger.html" title="class in org.apache.logging.log4j.simple">SimpleLogger</a>, <a href="../../../../org/apache/logging/log4j/status/StatusLogger.html" title="class in org.apache.logging.log4j.status">StatusLogger</a></dd>
</dl>
<hr>
<br>
<pre>public interface <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.67">Logger</a></pre>
<div class="block">This is the central interface in the log4j package. Most logging operations, except configuration, are done through
this interface.
<p>
The canonical way to obtain a Logger for a class is through <a href="../../../../org/apache/logging/log4j/LogManager.html#getLogger()"><code>LogManager.getLogger()</code></a>. Typically, each class
gets its own Logger named after its fully qualified class name (the default Logger name when obtained through the
<a href="../../../../org/apache/logging/log4j/LogManager.html#getLogger()"><code>LogManager.getLogger()</code></a> method). Thus, the simplest way to use this would be like so:
</p>
<pre>
public class MyClass {
private static final Logger LOGGER = LogManager.getLogger();
// ...
}
</pre>
<p>
For ease of filtering, searching, sorting, etc., it is generally a good idea to create Loggers for each class rather
than sharing Loggers. Instead, <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j"><code>Markers</code></a> should be used for shared, filterable identification.
</p>
<p>
For service provider implementations, it is recommended to extend the
<a href="../../../../org/apache/logging/log4j/spi/AbstractLogger.html" title="class in org.apache.logging.log4j.spi"><code>AbstractLogger</code></a> class rather than implementing this interface directly.
</p>
Since 2.4, methods have been added to the <code>Logger</code> interface to support lambda expressions.
The new methods allow client code to lazily log messages without explicitly checking if the requested log level is
enabled. For example, previously one would write:
<pre>
// pre-Java 8 style optimization: explicitly check the log level
// to make sure the expensiveOperation() method is only called if necessary
if (logger.isTraceEnabled()) {
logger.trace(&quot;Some long-running operation returned {}&quot;, expensiveOperation());
}</pre>
<p>
With Java 8, the same effect can be achieved with a lambda expression:
<pre>
// Java-8 style optimization: no need to explicitly check the log level:
// the lambda expression is not evaluated if the TRACE level is not enabled
logger.trace(&quot;Some long-running operation returned {}&quot;, () -&gt; expensiveOperation());
</pre></div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#catching(org.apache.logging.log4j.Level,%20java.lang.Throwable)">catching</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs an exception or error that has been caught to a specific logging level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#catching(java.lang.Throwable)">catching</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs an exception or error that has been caught.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level with
the specified Marker.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20java.lang.Object)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20java.lang.Object,%20java.lang.Throwable)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20java.lang.String)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Object...)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Throwable)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level with
the specified Marker.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.message.Message)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.util.MessageSupplier)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(java.lang.Object)">debug</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(java.lang.Object,%20java.lang.Throwable)">debug</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(java.lang.String)">debug</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(java.lang.String,%20java.lang.Object...)">debug</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">debug</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(java.lang.String,%20java.lang.Throwable)">debug</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.util.Supplier)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#debug(org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">debug</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#entry()">entry</a></strong>()</code>
<div class="block">Logs entry to a method.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#entry(java.lang.Object...)">entry</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs entry to a method along with its parameters.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level with
the specified Marker.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20java.lang.Object)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20java.lang.Object,%20java.lang.Throwable)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20java.lang.String)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Object...)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Throwable)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level with
the specified Marker.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.message.Message)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.util.MessageSupplier)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(java.lang.Object)">error</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(java.lang.Object,%20java.lang.Throwable)">error</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(java.lang.String)">error</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(java.lang.String,%20java.lang.Object...)">error</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">error</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(java.lang.String,%20java.lang.Throwable)">error</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.util.Supplier)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#error(org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">error</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#exit()">exit</a></strong>()</code>
<div class="block">Logs exit from a method.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>&lt;R&gt;&nbsp;R</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#exit(R)">exit</a></strong>(R&nbsp;result)</code>
<div class="block">Logs exiting from a method with the result.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level with
the specified Marker.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20java.lang.Object)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20java.lang.Object,%20java.lang.Throwable)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20java.lang.String)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Object...)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Throwable)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level with
the specified Marker.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.message.Message)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.util.MessageSupplier)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(java.lang.Object)">fatal</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(java.lang.Object,%20java.lang.Throwable)">fatal</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(java.lang.String)">fatal</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(java.lang.String,%20java.lang.Object...)">fatal</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">fatal</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(java.lang.String,%20java.lang.Throwable)">fatal</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.util.Supplier)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#fatal(org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">fatal</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#getLevel()">getLevel</a></strong>()</code>
<div class="block">Gets the Level associated with the Logger.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message">MessageFactory</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()">getMessageFactory</a></strong>()</code>
<div class="block">Gets the message factory used to convert message Objects and Strings into actual log Messages.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#getName()">getName</a></strong>()</code>
<div class="block">Gets the logger name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level with
the specified Marker.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20java.lang.Object)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20java.lang.Object,%20java.lang.Throwable)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20java.lang.String)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Object...)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Throwable)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level with the
specified Marker.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.message.Message)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.util.MessageSupplier)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(java.lang.Object)">info</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(java.lang.Object,%20java.lang.Throwable)">info</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(java.lang.String)">info</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(java.lang.String,%20java.lang.Object...)">info</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">info</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(java.lang.String,%20java.lang.Throwable)">info</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.util.Supplier)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#info(org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">info</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isDebugEnabled()">isDebugEnabled</a></strong>()</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> Level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isDebugEnabled(org.apache.logging.log4j.Marker)">isDebugEnabled</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> Level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isEnabled(org.apache.logging.log4j.Level)">isEnabled</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level)</code>
<div class="block">Checks whether this Logger is enabled for the the given Level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isEnabled(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker)">isEnabled</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</code>
<div class="block">Checks whether this logger is enabled at the specified level and an optional Marker.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isErrorEnabled()">isErrorEnabled</a></strong>()</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> Level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isErrorEnabled(org.apache.logging.log4j.Marker)">isErrorEnabled</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> Level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isFatalEnabled()">isFatalEnabled</a></strong>()</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> Level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isFatalEnabled(org.apache.logging.log4j.Marker)">isFatalEnabled</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> Level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isInfoEnabled()">isInfoEnabled</a></strong>()</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> Level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isInfoEnabled(org.apache.logging.log4j.Marker)">isInfoEnabled</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> Level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isTraceEnabled()">isTraceEnabled</a></strong>()</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isTraceEnabled(org.apache.logging.log4j.Marker)">isTraceEnabled</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isWarnEnabled()">isWarnEnabled</a></strong>()</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> Level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#isWarnEnabled(org.apache.logging.log4j.Marker)">isWarnEnabled</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</code>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> Level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the given level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the specified level with
the specified Marker.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the specified level) with the
specified Marker and including the stack log of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the given level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20java.lang.Object)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the given level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20java.lang.Object,%20java.lang.Throwable)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the given level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as
parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20java.lang.String)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the given level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Object...)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the given level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the specified level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Throwable)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the given level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as
parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the specified level) with the specified Marker.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the specified level) with the specified Marker and
including the stack log of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.message.Message)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the given level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.util.MessageSupplier)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the specified level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the specified level) including the
stack log of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the given level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20java.lang.Object)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the given level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20java.lang.Object,%20java.lang.Throwable)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the given level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as
parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20java.lang.String)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the given level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20java.lang.String,%20java.lang.Object...)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the given level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the specified level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20java.lang.String,%20java.lang.Throwable)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the given level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as
parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.util.Supplier)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the specified level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#log(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">log</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the specified level) including the stack log of
the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#printf(org.apache.logging.log4j.Level,%20org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Object...)">printf</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;format,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a formatted message using the specified format string and arguments.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#printf(org.apache.logging.log4j.Level,%20java.lang.String,%20java.lang.Object...)">printf</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;format,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a formatted message using the specified format string and arguments.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>&lt;T extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&gt;&nbsp;<br>T</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#throwing(org.apache.logging.log4j.Level,%20T)">throwing</a></strong>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
T&nbsp;t)</code>
<div class="block">Logs an exception or error to be thrown.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>&lt;T extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&gt;&nbsp;<br>T</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#throwing(T)">throwing</a></strong>(T&nbsp;t)</code>
<div class="block">Logs an exception or error to be thrown.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level with
the specified Marker.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20java.lang.Object)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20java.lang.Object,%20java.lang.Throwable)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20java.lang.String)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Object...)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Throwable)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level with
the specified Marker.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.message.Message)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.util.MessageSupplier)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(java.lang.Object)">trace</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(java.lang.Object,%20java.lang.Throwable)">trace</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(java.lang.String)">trace</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(java.lang.String,%20java.lang.Object...)">trace</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">trace</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(java.lang.String,%20java.lang.Throwable)">trace</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.util.Supplier)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#trace(org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">trace</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level with
the specified Marker.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level) with the
specified Marker and including the stack warn of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20java.lang.Object)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20java.lang.Object,%20java.lang.Throwable)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20java.lang.String)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Object...)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20java.lang.String,%20java.lang.Throwable)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level with the
specified Marker.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.Marker,%20org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level) with the
specified Marker and including the stack warn of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.message.Message)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.util.MessageSupplier)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.util.MessageSupplier,%20java.lang.Throwable)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level) including the
stack warn of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.message.Message,%20java.lang.Throwable)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(java.lang.Object)">warn</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(java.lang.Object,%20java.lang.Throwable)">warn</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(java.lang.String)">warn</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(java.lang.String,%20java.lang.Object...)">warn</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</code>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(java.lang.String,%20org.apache.logging.log4j.util.Supplier...)">warn</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</code>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(java.lang.String,%20java.lang.Throwable)">warn</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.util.Supplier)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</code>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#warn(org.apache.logging.log4j.util.Supplier,%20java.lang.Throwable)">warn</a></strong>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</code>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level) including the
stack warn of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="catching(org.apache.logging.log4j.Level, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>catching</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.75">catching</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs an exception or error that has been caught to a specific logging level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - The logging Level.</dd><dd><code>t</code> - The Throwable.</dd></dl>
</li>
</ul>
<a name="catching(java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>catching</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.85">catching</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs an exception or error that has been caught. Normally, one may wish to provide additional information with
an exception while logging it; in these cases, one would not use this method. In other cases where simply
logging the fact that an exception was swallowed somewhere (e.g., at the top of the stack trace in a
<code>main()</code> method), this method is ideal for it.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>t</code> - The Throwable.</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.93">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.102">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.113">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level with
the specified Marker. The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the
<code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.125">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter. The
<code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.133">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.143">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.151">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.161">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>getMessageFactory()</code></a></dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.172">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.182">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.193">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level with
the specified Marker.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.205">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.212">debug</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.220">debug</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.229">debug</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level. The
<code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.240">debug</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter. The <code>MessageSupplier</code> may or may
not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="debug(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.247">debug</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="debug(java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.256">debug</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="debug(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.263">debug</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message string to log.</dd></dl>
</li>
</ul>
<a name="debug(java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.272">debug</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>getMessageFactory()</code></a></dd></dl>
</li>
</ul>
<a name="debug(java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.282">debug</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="debug(java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.291">debug</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.300">debug</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="debug(org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>debug</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.311">debug</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="entry()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>entry</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.317">entry</a>()</pre>
<div class="block">Logs entry to a method. Used when the method in question has no parameters or when the parameters should not be
logged.</div>
</li>
</ul>
<a name="entry(java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>entry</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.336">entry</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs entry to a method along with its parameters. For example,
<pre>
public void doSomething(String foo, int bar) {
LOGGER.entry(foo, bar);
// do something
}
</pre>
<p>The use of methods such as this are more effective when combined with aspect-oriented programming or other
bytecode manipulation tools. It can be rather tedious (and messy) to use this type of method manually.</p></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>params</code> - The parameters to the method.
TODO Use of varargs results in array creation which can be a substantial portion of no-op case. LogMF/LogSF
provides several overrides to avoid vararg except in edge cases. (RG) LogMF and LogSF implement these in
LogXF which calls logger.callAppenders. callAppenders is part of the implementation and cannot be used by
the API. Adding more methods here and in AbstractLogger is sufficient.</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.344">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.353">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.364">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level with
the specified Marker.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.376">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.384">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement.</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.394">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement.</dd><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.402">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement.</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.417">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement.</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>TODO Likely to misinterpret existing log4j client code that intended to call info(Object,Throwable). Incurs
array creation expense on every call. (RG) I assume you meant error, not info. It isn't possible to be
misinterpreted as the previous method is for that signature. Methods should be added to avoid varargs for
1, 2 or 3 parameters.</code></a></dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.428">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.438">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement.</dd><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.449">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level with
the specified Marker.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.461">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.468">error</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.476">error</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.485">error</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.496">error</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="error(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.503">error</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="error(java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.512">error</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="error(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.519">error</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message string to log.</dd></dl>
</li>
</ul>
<a name="error(java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.533">error</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>TODO Likely to misinterpret existing log4j client code that intended to call info(Object,Throwable). Incurs
array creation expense on every call. (RG) I assume you meant error, not info. It isn't possible to be
misinterpreted as the previous method is for that signature. Methods should be added to avoid varargs for
1, 2 or 3 parameters.</code></a></dd></dl>
</li>
</ul>
<a name="error(java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.543">error</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="error(java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.552">error</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.561">error</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="error(org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>error</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.572">error</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="exit()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>exit</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.577">exit</a>()</pre>
<div class="block">Logs exit from a method. Used for methods that do not return anything.</div>
</li>
</ul>
<a name="exit(java.lang.Object)">
<!-- -->
</a><a name="exit(R)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>exit</h4>
<pre>&lt;R&gt;&nbsp;R&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.589">exit</a>(R&nbsp;result)</pre>
<div class="block">Logs exiting from a method with the result. This may be coded as:
<pre>
return LOGGER.exit(myResult);
</pre></div>
<dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>R</code> - The type of the parameter and object being returned.</dd><dt><span class="strong">Parameters:</span></dt><dd><code>result</code> - The result being returned from the method call.</dd>
<dt><span class="strong">Returns:</span></dt><dd>the result.</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.597">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.606">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.617">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level with
the specified Marker.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.629">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.637">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.647">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.655">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.670">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>TODO Likely to misinterpret existing log4j client code that intended to call info(Object,Throwable). Incurs
array creation expense on every call.(RG) I assume you meant fatal, not info. It isn't possible to be
misinterpreted as the previous method is for that signature. Methods should be added to avoid varargs for
1, 2 or 3 parameters.</code></a></dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.681">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.691">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.702">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level with
the specified Marker.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.714">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.721">fatal</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.729">fatal</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.738">fatal</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.749">fatal</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="fatal(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.756">fatal</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="fatal(java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.765">fatal</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="fatal(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.772">fatal</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message string to log.</dd></dl>
</li>
</ul>
<a name="fatal(java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.786">fatal</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>TODO Likely to misinterpret existing log4j client code that intended to call info(Object,Throwable). Incurs
array creation expense on every call.(RG) I assume you meant fatal, not info. It isn't possible to be
misinterpreted as the previous method is for that signature. Methods should be added to avoid varargs for
1, 2 or 3 parameters.</code></a></dd></dl>
</li>
</ul>
<a name="fatal(java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.796">fatal</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="fatal(java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.805">fatal</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.814">fatal</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="fatal(org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fatal</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.825">fatal</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="getLevel()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLevel</h4>
<pre><a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.832">getLevel</a>()</pre>
<div class="block">Gets the Level associated with the Logger.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the Level associate with the Logger.</dd></dl>
</li>
</ul>
<a name="getMessageFactory()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMessageFactory</h4>
<pre><a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message">MessageFactory</a>&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.839">getMessageFactory</a>()</pre>
<div class="block">Gets the message factory used to convert message Objects and Strings into actual log Messages.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the message factory.</dd></dl>
</li>
</ul>
<a name="getName()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getName</h4>
<pre><a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.846">getName</a>()</pre>
<div class="block">Gets the logger name.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>the logger name.</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.854">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.863">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.874">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level with
the specified Marker.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.886">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.894">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.904">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.912">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.926">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>TODO Likely to misinterpret existing log4j client code that intended to call info(Object,Throwable). Incurs
array creation expense on every call. (RG) It isn't possible to be misinterpreted as the previous method
is for that signature. Methods should be added to avoid varargs for 1, 2 or 3 parameters.</code></a></dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.937">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.947">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.958">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level with the
specified Marker.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.970">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.977">info</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.985">info</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.994">info</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1005">info</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="info(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1012">info</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="info(java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1021">info</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="info(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1028">info</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message string to log.</dd></dl>
</li>
</ul>
<a name="info(java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1041">info</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>TODO Likely to misinterpret existing log4j client code that intended to call info(Object,Throwable). Incurs
array creation expense on every call. (RG) It isn't possible to be misinterpreted as the previous method
is for that signature. Methods should be added to avoid varargs for 1, 2 or 3 parameters.</code></a></dd></dl>
</li>
</ul>
<a name="info(java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1051">info</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="info(java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1060">info</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1069">info</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="info(org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1080">info</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="isDebugEnabled()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isDebugEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1087">isDebugEnabled</a>()</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> Level.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level DEBUG, <code>false</code> otherwise.</dd></dl>
</li>
</ul>
<a name="isDebugEnabled(org.apache.logging.log4j.Marker)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isDebugEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1095">isDebugEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#DEBUG"><code>DEBUG</code></a> Level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd>
<dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level DEBUG, <code>false</code> otherwise.</dd></dl>
</li>
</ul>
<a name="isEnabled(org.apache.logging.log4j.Level)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1106">isEnabled</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level)</pre>
<div class="block">Checks whether this Logger is enabled for the the given Level.
<p>
Note that passing in <a href="../../../../org/apache/logging/log4j/Level.html#OFF"><code>OFF</code></a> always returns <code>true</code>.
</p></div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the level to check</dd>
<dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level, <code>false</code> otherwise.</dd></dl>
</li>
</ul>
<a name="isEnabled(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1116">isEnabled</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</pre>
<div class="block">Checks whether this logger is enabled at the specified level and an optional Marker.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - The Level to check.</dd><dd><code>marker</code> - The marker data specific to this log statement.</dd>
<dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a>, <code>false</code>
otherwise.</dd></dl>
</li>
</ul>
<a name="isErrorEnabled()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isErrorEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1124">isErrorEnabled</a>()</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> Level.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a>, <code>false</code>
otherwise.</dd></dl>
</li>
</ul>
<a name="isErrorEnabled(org.apache.logging.log4j.Marker)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isErrorEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1133">isErrorEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a> Level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd>
<dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level <a href="../../../../org/apache/logging/log4j/Level.html#ERROR"><code>ERROR</code></a>, <code>false</code>
otherwise.</dd></dl>
</li>
</ul>
<a name="isFatalEnabled()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isFatalEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1141">isFatalEnabled</a>()</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> Level.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a>, <code>false</code>
otherwise.</dd></dl>
</li>
</ul>
<a name="isFatalEnabled(org.apache.logging.log4j.Marker)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isFatalEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1150">isFatalEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a> Level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd>
<dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level <a href="../../../../org/apache/logging/log4j/Level.html#FATAL"><code>FATAL</code></a>, <code>false</code>
otherwise.</dd></dl>
</li>
</ul>
<a name="isInfoEnabled()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isInfoEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1157">isInfoEnabled</a>()</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> Level.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level INFO, <code>false</code> otherwise.</dd></dl>
</li>
</ul>
<a name="isInfoEnabled(org.apache.logging.log4j.Marker)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isInfoEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1165">isInfoEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#INFO"><code>INFO</code></a> Level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd>
<dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level INFO, <code>false</code> otherwise.</dd></dl>
</li>
</ul>
<a name="isTraceEnabled()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isTraceEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1172">isTraceEnabled</a>()</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level TRACE, <code>false</code> otherwise.</dd></dl>
</li>
</ul>
<a name="isTraceEnabled(org.apache.logging.log4j.Marker)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isTraceEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1180">isTraceEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd>
<dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level TRACE, <code>false</code> otherwise.</dd></dl>
</li>
</ul>
<a name="isWarnEnabled()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isWarnEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1188">isWarnEnabled</a>()</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> Level.</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a>, <code>false</code>
otherwise.</dd></dl>
</li>
</ul>
<a name="isWarnEnabled(org.apache.logging.log4j.Marker)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isWarnEnabled</h4>
<pre>boolean&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1197">isWarnEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker)</pre>
<div class="block">Checks whether this Logger is enabled for the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> Level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - The marker data specific to this log statement.</dd>
<dt><span class="strong">Returns:</span></dt><dd>boolean - <code>true</code> if this Logger is enabled for level <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a>, <code>false</code>
otherwise.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1206">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the given level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1216">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the given level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1228">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the specified level with
the specified Marker.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1241">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the specified level) with the
specified Marker and including the stack log of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1250">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the given level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1261">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the given level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as
parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1271">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the given level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1282">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the given level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>getMessageFactory()</code></a></dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1293">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the specified level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1304">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the given level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as
parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1315">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the specified level) with the specified Marker.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1328">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the specified level) with the specified Marker and
including the stack log of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1336">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the given level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1345">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the given level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1355">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the specified level.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1367">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the specified level) including the
stack log of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - the exception to log, including its stack log.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1375">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the given level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1385">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the given level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as
parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>message</code> - the message to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1393">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the given level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>message</code> - the message string to log.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1403">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the given level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>getMessageFactory()</code></a></dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1413">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the specified level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1423">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the given level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as
parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>message</code> - the message to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1433">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the specified level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="log(org.apache.logging.log4j.Level, org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1445">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the specified level) including the stack log of
the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - the logging level</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - the exception to log, including its stack log.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="printf(org.apache.logging.log4j.Level, org.apache.logging.log4j.Marker, java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>printf</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1455">printf</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;format,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a formatted message using the specified format string and arguments.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - The logging Level.</dd><dd><code>marker</code> - the marker data specific to this log statement.</dd><dd><code>format</code> - The format String.</dd><dd><code>params</code> - Arguments specified by the format.</dd></dl>
</li>
</ul>
<a name="printf(org.apache.logging.log4j.Level, java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>printf</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1464">printf</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;format,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a formatted message using the specified format string and arguments.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - The logging Level.</dd><dd><code>format</code> - The format String.</dd><dd><code>params</code> - Arguments specified by the format.</dd></dl>
</li>
</ul>
<a name="throwing(org.apache.logging.log4j.Level,java.lang.Throwable)">
<!-- -->
</a><a name="throwing(org.apache.logging.log4j.Level, T)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>throwing</h4>
<pre>&lt;T extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1477">throwing</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a>&nbsp;level,
T&nbsp;t)</pre>
<div class="block">Logs an exception or error to be thrown. This may be coded as:
<pre>
throw logger.throwing(Level.DEBUG, myException);
</pre></div>
<dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>T</code> - the Throwable type.</dd><dt><span class="strong">Parameters:</span></dt><dd><code>level</code> - The logging Level.</dd><dd><code>t</code> - The Throwable.</dd>
<dt><span class="strong">Returns:</span></dt><dd>the Throwable.</dd></dl>
</li>
</ul>
<a name="throwing(java.lang.Throwable)">
<!-- -->
</a><a name="throwing(T)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>throwing</h4>
<pre>&lt;T extends <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&gt;&nbsp;T&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1489">throwing</a>(T&nbsp;t)</pre>
<div class="block">Logs an exception or error to be thrown. This may be coded as:
<pre>
throw logger.throwing(myException);
</pre></div>
<dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>T</code> - the Throwable type.</dd><dt><span class="strong">Parameters:</span></dt><dd><code>t</code> - The Throwable.</dd>
<dt><span class="strong">Returns:</span></dt><dd>the Throwable.</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1497">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1506">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1517">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level with
the specified Marker.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1529">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1537">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1548">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#debug(java.lang.String)"><code>debug(String)</code></a></dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1556">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message string to log.</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1566">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>getMessageFactory()</code></a></dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1577">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1588">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#debug(java.lang.String)"><code>debug(String)</code></a></dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1599">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level with
the specified Marker.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1611">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level) with the
specified Marker and including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1618">trace</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1626">trace</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1635">trace</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1646">trace</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="trace(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1653">trace</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="trace(java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1663">trace</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#debug(java.lang.String)"><code>debug(String)</code></a></dd></dl>
</li>
</ul>
<a name="trace(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1670">trace</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message string to log.</dd></dl>
</li>
</ul>
<a name="trace(java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1679">trace</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>getMessageFactory()</code></a></dd></dl>
</li>
</ul>
<a name="trace(java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1689">trace</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="trace(java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1699">trace</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#debug(java.lang.String)"><code>debug(String)</code></a></dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1708">trace</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="trace(org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>trace</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1719">trace</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#TRACE"><code>TRACE</code></a> level) including the
stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1727">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1736">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1747">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level with
the specified Marker.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1759">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level) with the
specified Marker and including the stack warn of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1767">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1777">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1785">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1800">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement.</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>TODO Likely to misinterpret existing log4j client code that intended to call info(Object,Throwable). Incurs
array creation expense on every call. (RG) I assume you meant warn, not info. It isn't possible to be
misinterpreted as the previous method is for that signature.Methods should be added to avoid varargs for
1, 2 or 3 parameters.</code></a></dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1811">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1821">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1832">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level with the
specified Marker.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.Marker, org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1844">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a>&nbsp;marker,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level) with the
specified Marker and including the stack warn of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>marker</code> - the marker data specific to this log statement</dd><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - A Throwable or null.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.message.Message)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1851">warn</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.message.Message, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1859">warn</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a>&nbsp;msg,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message with the specific Marker at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msg</code> - the message string to be logged</dd><dd><code>t</code> - A Throwable or null.</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.util.MessageSupplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1868">warn</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.util.MessageSupplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1879">warn</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a>&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level) including the
stack warn of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.
The <code>MessageSupplier</code> may or may not use the <a href="../../../../org/apache/logging/log4j/message/MessageFactory.html" title="interface in org.apache.logging.log4j.message"><code>MessageFactory</code></a> to construct the <code>Message</code>.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message.</dd><dd><code>t</code> - the exception to log, including its stack warn.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="warn(java.lang.Object)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1886">warn</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd></dl>
</li>
</ul>
<a name="warn(java.lang.Object, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1895">warn</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="warn(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1902">warn</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">Logs a message object with the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message string to log.</dd></dl>
</li>
</ul>
<a name="warn(java.lang.String, java.lang.Object...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1916">warn</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>...&nbsp;params)</pre>
<div class="block">Logs a message with parameters at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>params</code> - parameters to the message.</dd><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../org/apache/logging/log4j/Logger.html#getMessageFactory()"><code>TODO Likely to misinterpret existing log4j client code that intended to call info(Object,Throwable). Incurs
array creation expense on every call. (RG) I assume you meant warn, not info. It isn't possible to be
misinterpreted as the previous method is for that signature.Methods should be added to avoid varargs for
1, 2 or 3 parameters.</code></a></dd></dl>
</li>
</ul>
<a name="warn(java.lang.String, org.apache.logging.log4j.util.Supplier...)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1926">warn</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;...&nbsp;paramSuppliers)</pre>
<div class="block">Logs a message with parameters which are only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message to log; the format depends on the message factory.</dd><dd><code>paramSuppliers</code> - An array of functions, which when called, produce the desired log message parameters.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="warn(java.lang.String, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1935">warn</a>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message at the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level including the stack trace of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a>
<code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the message object to log.</dd><dd><code>t</code> - the exception to log, including its stack trace.</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.util.Supplier)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1944">warn</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier)</pre>
<div class="block">Logs a message which is only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
<a name="warn(org.apache.logging.log4j.util.Supplier, java.lang.Throwable)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>warn</h4>
<pre>void&nbsp;<a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1955">warn</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a>&lt;?&gt;&nbsp;msgSupplier,
<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;t)</pre>
<div class="block">Logs a message (only to be constructed if the logging level is the <a href="../../../../org/apache/logging/log4j/Level.html#WARN"><code>WARN</code></a> level) including the
stack warn of the <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> <code>t</code> passed as parameter.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>msgSupplier</code> - A function, which when called, produces the desired log message; the format depends on the
message factory.</dd><dd><code>t</code> - the exception to log, including its stack warn.</dd><dt><span class="strong">Since:</span></dt>
<dd>2.4</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Logger.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../org/apache/logging/log4j/LoggingException.html" title="class in org.apache.logging.log4j"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/logging/log4j/Logger.html" target="_top">Frames</a></li>
<li><a href="Logger.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li>Field&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><p align="center">Copyright &#169; 1999-2015 <a href="http://www.apache.org">Apache Software Foundation</a>. All Rights Reserved.<br /> Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, and the Apache Log4j logo are trademarks of The Apache Software Foundation.</p></small></p>
</body>
</html>