| <!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 Dec 06 17:56:46 MST 2015 --> |
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
| <title>Logger (Apache Log4j API 2.5 API)</title> |
| <meta name="date" content="2015-12-06"> |
| <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.5 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: </li> |
| <li>Nested | </li> |
| <li>Field | </li> |
| <li>Constr | </li> |
| <li><a href="#method_summary">Method</a></li> |
| </ul> |
| <ul class="subNavList"> |
| <li>Detail: </li> |
| <li>Field | </li> |
| <li>Constr | </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.69">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("Some long-running operation returned {}", 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("Some long-running operation returned {}", () -> 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"> </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> 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> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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><?> 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><?> 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> 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>... 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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><?> 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><?> 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> 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><R> R</code></td> |
| <td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#exit(R)">exit</a></strong>(R 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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><?> 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><?> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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><?> 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><?> 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> 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> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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> 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> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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>... 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> level, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> level, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> level, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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>... 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> 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> 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>... 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><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>> <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> level, |
| T t)</code> |
| <div class="block">Logs an exception or error to be thrown.</div> |
| </td> |
| </tr> |
| <tr class="altColor"> |
| <td class="colFirst"><code><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>> <br>T</code></td> |
| <td class="colLast"><code><strong><a href="../../../../org/apache/logging/log4j/Logger.html#throwing(T)">throwing</a></strong>(T 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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><?> 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><?> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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> 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>... 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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> 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> 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><?> 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><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.77">catching</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.87">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.95">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.104">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.115">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.127">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.135">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.145">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.153">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.163">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.174">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.184">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.195">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.207">debug</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.214">debug</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.222">debug</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.231">debug</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.242">debug</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.249">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.258">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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.265">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.274">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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.284">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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.293">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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.302">debug</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.313">debug</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.319">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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.341">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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.349">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.358">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.369">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.381">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.389">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.399">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.407">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.422">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.433">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.443">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.454">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.466">error</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.473">error</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.481">error</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.490">error</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.501">error</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.508">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.517">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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.524">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.538">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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.548">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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.557">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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.566">error</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.577">error</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.582">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><R> R <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.595">exit</a>(R 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.603">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.612">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.623">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.635">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.643">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.653">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.661">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.676">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.687">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.697">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.708">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.720">fatal</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.727">fatal</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.735">fatal</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.744">fatal</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.755">fatal</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.762">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.771">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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.778">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.792">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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.802">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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.811">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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.820">fatal</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.831">fatal</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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> <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.838">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> <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.845">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> <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.852">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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.860">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.869">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.880">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.892">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.900">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.910">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.918">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.932">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.943">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.953">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.964">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.976">info</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.983">info</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.991">info</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1000">info</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1011">info</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1018">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1027">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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1034">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1047">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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1057">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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1066">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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1075">info</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1086">info</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1093">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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1101">isDebugEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1112">isEnabled</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1122">isEnabled</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1130">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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1139">isErrorEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1147">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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1156">isFatalEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1163">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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1171">isInfoEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1178">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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1186">isTraceEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1194">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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1203">isWarnEnabled</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1212">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1222">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1234">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1247">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1256">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1267">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1276">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1287">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1298">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1309">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1320">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1333">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1341">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1350">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1360">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1372">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1380">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1390">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1398">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1408">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> 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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1418">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1428">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1438">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1450">log</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1460">printf</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| <a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1469">printf</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> 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> 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>... 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><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>> T <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1483">throwing</a>(<a href="../../../../org/apache/logging/log4j/Level.html" title="class in org.apache.logging.log4j">Level</a> level, |
| T 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><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>> T <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1496">throwing</a>(T 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1504">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1513">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1524">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1536">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1544">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1555">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1563">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1573">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1584">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1595">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1606">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1618">trace</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1625">trace</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1633">trace</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1642">trace</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1653">trace</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1660">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> 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 <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/Object.html?is-external=true" title="class or interface in java.lang">Object</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1677">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1686">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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1696">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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1706">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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1715">trace</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1726">trace</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1734">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1743">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1754">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1766">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1774">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1784">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1792">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1807">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1818">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1828">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> 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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1839">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1851">warn</a>(<a href="../../../../org/apache/logging/log4j/Marker.html" title="interface in org.apache.logging.log4j">Marker</a> marker, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1858">warn</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1866">warn</a>(<a href="../../../../org/apache/logging/log4j/message/Message.html" title="interface in org.apache.logging.log4j.message">Message</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1875">warn</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1886">warn</a>(<a href="../../../../org/apache/logging/log4j/util/MessageSupplier.html" title="interface in org.apache.logging.log4j.util">MessageSupplier</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1893">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> 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 <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/Object.html?is-external=true" title="class or interface in java.lang">Object</a> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1909">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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1923">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> 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>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1933">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> message, |
| <a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?>... 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1942">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> 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> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1951">warn</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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 <a href="../../../../src-html/org/apache/logging/log4j/Logger.html#line.1962">warn</a>(<a href="../../../../org/apache/logging/log4j/util/Supplier.html" title="interface in org.apache.logging.log4j.util">Supplier</a><?> 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> 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: </li> |
| <li>Nested | </li> |
| <li>Field | </li> |
| <li>Constr | </li> |
| <li><a href="#method_summary">Method</a></li> |
| </ul> |
| <ul class="subNavList"> |
| <li>Detail: </li> |
| <li>Field | </li> |
| <li>Constr | </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 © 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> |