blob: 9682d725d4b1e53faa54858d9fdead994b54754e [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_222) on Tue Dec 08 12:28:26 UTC 2020 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>SessionLog (EclipseLink 3.0.0, API Reference)</title>
<meta name="date" content="2020-12-08">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="SessionLog (EclipseLink 3.0.0, API Reference)";
}
}
catch(err) {
}
//-->
var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<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="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 class="aboutLanguage">EclipseLink 3.0.0, API Reference</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/eclipse/persistence/logging/LogLevel.html" title="enum in org.eclipse.persistence.logging"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../org/eclipse/persistence/logging/SessionLogEntry.html" title="class in org.eclipse.persistence.logging"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/eclipse/persistence/logging/SessionLog.html" target="_top">Frames</a></li>
<li><a href="SessionLog.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.eclipse.persistence.logging</div>
<h2 title="Interface SessionLog" class="title">Interface SessionLog</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true" title="class or interface in java.lang">Cloneable</a></dd>
</dl>
<dl>
<dt>All Known Implementing Classes:</dt>
<dd><a href="../../../../org/eclipse/persistence/logging/AbstractSessionLog.html" title="class in org.eclipse.persistence.logging">AbstractSessionLog</a>, <a href="../../../../org/eclipse/persistence/logging/DefaultSessionLog.html" title="class in org.eclipse.persistence.logging">DefaultSessionLog</a>, <a href="../../../../org/eclipse/persistence/logging/JavaLog.html" title="class in org.eclipse.persistence.logging">JavaLog</a>, <a href="../../../../org/eclipse/persistence/platform/server/ServerLog.html" title="class in org.eclipse.persistence.platform.server">ServerLog</a></dd>
</dl>
<hr>
<br>
<pre>public interface <span class="typeNameLabel">SessionLog</span>
extends <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true" title="class or interface in java.lang">Cloneable</a></pre>
<div class="block">SessionLog is the ever-so-simple interface used by
EclipseLink to log generated messages and SQL. An implementor of
this interface can be passed to the EclipseLink session
(via the #setSessionLog(SessionLog) method); and
all logging data will be passed through to the implementor
via an instance of SessionLogEntry. This can be used
to supplement debugging; or the entries could be stored
in a database instead of logged to System.out, etc.
<p>
This class defines EclipseLink logging levels (that are used throughout EclipseLink code) with the following integer values:
<table>
<caption>Logging levels</caption>
<tr><td>&nbsp;</td><td>ALL</td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td></tr>
<tr><td>&nbsp;</td><td>FINEST</td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td></tr>
<tr><td>&nbsp;</td><td>FINER</td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td></tr>
<tr><td>&nbsp;</td><td>FINE</td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td></tr>
<tr><td>&nbsp;</td><td>CONFIG</td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td></tr>
<tr><td>&nbsp;</td><td>INFO</td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td></tr>
<tr><td>&nbsp;</td><td>WARNING</td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td></tr>
<tr><td>&nbsp;</td><td>SEVERE</td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td></tr>
<tr><td>&nbsp;</td><td>OFF</td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td></tr>
</table>
<p>
In addition, EclipseLink categories used for logging name space are defined with the following String values:
<table>
<caption>Logging categories</caption>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CACHE"><code>CACHE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CACHE">"cache"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONNECTION"><code>CONNECTION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONNECTION">"connection"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DMS"><code>DMS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DMS">"dms"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EJB"><code>EJB</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EJB">"ejb"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EVENT"><code>EVENT</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EVENT">"event"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DBWS"><code>DBWS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DBWS">"dbws"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#JPARS"><code>JPARS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#JPARS">"jpars"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METADATA"><code>METADATA</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METADATA">"metadata"</a> </td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METAMODEL"><code>METAMODEL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METAMODEL">"metamodel"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MOXY"><code>MOXY</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MOXY">"moxy"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROCESSOR"><code>PROCESSOR</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROCESSOR">"processor"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPAGATION"><code>PROPAGATION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPAGATION">"propagation"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPERTIES"><code>PROPERTIES</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPERTIES">"properties"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#QUERY"><code>QUERY</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#QUERY">"query"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEQUENCING"><code>SEQUENCING</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEQUENCING">"sequencing"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SERVER"><code>SERVER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SERVER">"server"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SQL"><code>SQL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SQL">"sql"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#TRANSACTION"><code>TRANSACTION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#TRANSACTION">"transaction"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WEAVER"><code>WEAVER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WEAVER">"weaver"</a></td></tr>
</table></div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../org/eclipse/persistence/logging/AbstractSessionLog.html" title="class in org.eclipse.persistence.logging"><code>AbstractSessionLog</code></a>,
<a href="../../../../org/eclipse/persistence/logging/SessionLogEntry.html" title="class in org.eclipse.persistence.logging"><code>SessionLogEntry</code></a>,
<a href="../../../../org/eclipse/persistence/sessions/Session.html" title="interface in org.eclipse.persistence.sessions"><code>Session</code></a></dd>
<dt><span class="simpleTagLabel">Since:</span></dt>
<dd>TOPLink/Java 3.0</dd>
</dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">ALL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL_LABEL">ALL_LABEL</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CACHE">CACHE</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">CONFIG</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG_LABEL">CONFIG_LABEL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONNECTION">CONNECTION</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DBWS">DBWS</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DDL">DDL</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DMS">DMS</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EJB">EJB</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EVENT">EVENT</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">FINE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE_LABEL">FINE_LABEL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">FINER</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER_LABEL">FINER_LABEL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">FINEST</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST_LABEL">FINEST_LABEL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">INFO</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO_LABEL">INFO_LABEL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#JPA">JPA</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#JPARS">JPARS</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#loggerCatagories">loggerCatagories</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METADATA">METADATA</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METAMODEL">METAMODEL</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MISC">MISC</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MONITORING">MONITORING</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MOXY">MOXY</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">OFF</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF_LABEL">OFF_LABEL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROCESSOR">PROCESSOR</a></span></code>
<div class="block">ModelGen logging name space.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPAGATION">PROPAGATION</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPERTIES">PROPERTIES</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#QUERY">QUERY</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEQUENCING">SEQUENCING</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SERVER">SERVER</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">SEVERE</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE_LABEL">SEVERE_LABEL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SQL">SQL</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#TRANSACTION">TRANSACTION</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">WARNING</a></span></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING_LABEL">WARNING_LABEL</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WEAVER">WEAVER</a></span></code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#clone--">clone</a></span>()</code>
<div class="block">PUBLIC:
Clone the log.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#config-java.lang.String-">config</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">PUBLIC:
This method is called when a config level message needs to be logged.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#fine-java.lang.String-">fine</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">PUBLIC:
This method is called when a fine level message needs to be logged.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#finer-java.lang.String-">finer</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">PUBLIC:
This method is called when a finer level message needs to be logged.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#finest-java.lang.String-">finest</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">PUBLIC:
This method is called when a finest level message needs to be logged.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#getLevel--">getLevel</a></span>()</code>
<div class="block">PUBLIC:
Return the log level.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#getLevel-java.lang.String-">getLevel</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category)</code>
<div class="block">PUBLIC:
Return the log level; category is only needed where name space
is available.</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#getLevelString--">getLevelString</a></span>()</code>
<div class="block">PUBLIC:</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code><a href="../../../../org/eclipse/persistence/sessions/Session.html" title="interface in org.eclipse.persistence.sessions">Session</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#getSession--">getSession</a></span>()</code>
<div class="block">PUBLIC:
Get the session that owns this SessionLog.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code><a href="https://docs.oracle.com/javase/8/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#getWriter--">getWriter</a></span>()</code>
<div class="block">PUBLIC:
Return the writer to which an accessor writes logged messages and SQL.</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#info-java.lang.String-">info</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">PUBLIC:
This method is called when a info level message needs to be logged.</div>
</td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">PUBLIC:
Log a message that does not need to be translated.</div>
</td>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.Object-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param)</code>
<div class="block">PUBLIC:
Log a message with one parameter that needs to be translated.</div>
</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.Object:A-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>[]&nbsp;arguments)</code>
<div class="block">PUBLIC:
This method is called when the log request is from somewhere session is not available.</div>
</td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.Object:A-boolean-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>[]&nbsp;arguments,
boolean&nbsp;shouldTranslate)</code>
<div class="block">PUBLIC:
This method is called when the log request is from somewhere session is not available.</div>
</td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.Object-java.lang.Object-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2)</code>
<div class="block">PUBLIC:
Log a message with two parameters that needs to be translated.</div>
</td>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.Object-java.lang.Object-java.lang.Object-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param3)</code>
<div class="block">PUBLIC:
Log a message with three parameters that needs to be translated.</div>
</td>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.Object-java.lang.Object-java.lang.Object-java.lang.Object-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param3,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param4)</code>
<div class="block">PUBLIC:
Log a message with four parameters that needs to be translated.</div>
</td>
</tr>
<tr id="i18" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.String-java.lang.Object-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param)</code>
<div class="block">PUBLIC:
Log a message with one parameter that needs to be translated.</div>
</td>
</tr>
<tr id="i19" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.String-java.lang.Object:A-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>[]&nbsp;arguments)</code>
<div class="block">PUBLIC:
This method is called when the log request is from somewhere session is not available.</div>
</td>
</tr>
<tr id="i20" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.String-java.lang.Object:A-boolean-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>[]&nbsp;arguments,
boolean&nbsp;shouldTranslate)</code>
<div class="block">PUBLIC:
This method is called when the log request is from somewhere session is not available.</div>
</td>
</tr>
<tr id="i21" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.String-java.lang.Object-java.lang.Object-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2)</code>
<div class="block">PUBLIC:
Log a message with two parameters that needs to be translated.</div>
</td>
</tr>
<tr id="i22" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.String-java.lang.Object-java.lang.Object-java.lang.Object-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param3)</code>
<div class="block">PUBLIC:
Log a message with three parameters that needs to be translated.</div>
</td>
</tr>
<tr id="i23" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-int-java.lang.String-java.lang.String-java.lang.Object-java.lang.Object-java.lang.Object-java.lang.Object-">log</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param3,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param4)</code>
<div class="block">PUBLIC:
Log a message with four parameters that needs to be translated.</div>
</td>
</tr>
<tr id="i24" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#log-org.eclipse.persistence.logging.SessionLogEntry-">log</a></span>(<a href="../../../../org/eclipse/persistence/logging/SessionLogEntry.html" title="class in org.eclipse.persistence.logging">SessionLogEntry</a>&nbsp;entry)</code>
<div class="block">PUBLIC:
EclipseLink will call this method whenever something
needs to be logged (messages, SQL, etc.).</div>
</td>
</tr>
<tr id="i25" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#logThrowable-int-java.lang.String-java.lang.Throwable-">logThrowable</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;throwable)</code>
<div class="block">PUBLIC:
Log a throwable with level.</div>
</td>
</tr>
<tr id="i26" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#logThrowable-int-java.lang.Throwable-">logThrowable</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;throwable)</code>
<div class="block">PUBLIC:
Log a <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> with level.</div>
</td>
</tr>
<tr id="i27" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#setLevel-int-">setLevel</a></span>(int&nbsp;level)</code>
<div class="block">PUBLIC:
Set the log level.</div>
</td>
</tr>
<tr id="i28" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#setLevel-int-java.lang.String-">setLevel</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category)</code>
<div class="block">PUBLIC:
Set the log level.</div>
</td>
</tr>
<tr id="i29" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#setSession-org.eclipse.persistence.sessions.Session-">setSession</a></span>(<a href="../../../../org/eclipse/persistence/sessions/Session.html" title="interface in org.eclipse.persistence.sessions">Session</a>&nbsp;session)</code>
<div class="block">PUBLIC:
Set the session that owns this SessionLog.</div>
</td>
</tr>
<tr id="i30" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#setShouldDisplayData-java.lang.Boolean-">setShouldDisplayData</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;shouldDisplayData)</code>
<div class="block">Set whether bind parameters should be displayed when logging SQL.</div>
</td>
</tr>
<tr id="i31" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#setShouldLogExceptionStackTrace-boolean-">setShouldLogExceptionStackTrace</a></span>(boolean&nbsp;flag)</code>
<div class="block">By default stack trace is logged for SEVERE all the time and at FINER level for WARNING or less.</div>
</td>
</tr>
<tr id="i32" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#setShouldPrintConnection-boolean-">setShouldPrintConnection</a></span>(boolean&nbsp;flag)</code>
<div class="block">By default the connection is always printed whenever available, this can be turned off.</div>
</td>
</tr>
<tr id="i33" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#setShouldPrintDate-boolean-">setShouldPrintDate</a></span>(boolean&nbsp;flag)</code>
<div class="block">By default date is printed, this can be turned off.</div>
</td>
</tr>
<tr id="i34" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#setShouldPrintSession-boolean-">setShouldPrintSession</a></span>(boolean&nbsp;flag)</code>
<div class="block">By default the Session is always printed whenever available, this can be turned off.</div>
</td>
</tr>
<tr id="i35" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#setShouldPrintThread-boolean-">setShouldPrintThread</a></span>(boolean&nbsp;flag)</code>
<div class="block">By default the thread is logged at FINE or less level, this can be turned off.</div>
</td>
</tr>
<tr id="i36" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#setWriter-java.io.Writer-">setWriter</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</a>&nbsp;log)</code>
<div class="block">PUBLIC:
Set the writer to which an accessor writes logged messages and SQL.</div>
</td>
</tr>
<tr id="i37" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#severe-java.lang.String-">severe</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">PUBLIC:
This method is called when a severe level message needs to be logged.</div>
</td>
</tr>
<tr id="i38" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#shouldDisplayData--">shouldDisplayData</a></span>()</code>
<div class="block">Return whether bind parameters should be displayed when logging SQL, default is true.</div>
</td>
</tr>
<tr id="i39" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#shouldLog-int-">shouldLog</a></span>(int&nbsp;level)</code>
<div class="block">PUBLIC:
Check if a message of the given level would actually be logged.</div>
</td>
</tr>
<tr id="i40" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#shouldLog-int-java.lang.String-">shouldLog</a></span>(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category)</code>
<div class="block">PUBLIC:
Check if a message of the given level would actually be logged.</div>
</td>
</tr>
<tr id="i41" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#shouldLogExceptionStackTrace--">shouldLogExceptionStackTrace</a></span>()</code>
<div class="block">By default the stack trace is logged for SEVERE all the time and at FINER level for WARNING or less,
this can be turned off.</div>
</td>
</tr>
<tr id="i42" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#shouldPrintConnection--">shouldPrintConnection</a></span>()</code>
<div class="block">By default the connection is always printed whenever available, this can be turned off.</div>
</td>
</tr>
<tr id="i43" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#shouldPrintDate--">shouldPrintDate</a></span>()</code>
<div class="block">By default the date is always printed, this can be turned off.</div>
</td>
</tr>
<tr id="i44" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#shouldPrintSession--">shouldPrintSession</a></span>()</code>
<div class="block">By default the Session is always printed whenever available, this can be turned off.</div>
</td>
</tr>
<tr id="i45" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#shouldPrintThread--">shouldPrintThread</a></span>()</code>
<div class="block">By default the thread is logged at FINE or less level, this can be turned off.</div>
</td>
</tr>
<tr id="i46" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#throwing-java.lang.Throwable-">throwing</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;throwable)</code>
<div class="block">PUBLIC:
This method is called when a throwable at finer level needs to be logged.</div>
</td>
</tr>
<tr id="i47" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#warning-java.lang.String-">warning</a></span>(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</code>
<div class="block">PUBLIC:
This method is called when a warning level message needs to be logged.</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="OFF">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>OFF</h4>
<pre>static final&nbsp;int OFF</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.OFF">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="OFF_LABEL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>OFF_LABEL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> OFF_LABEL</pre>
</li>
</ul>
<a name="SEVERE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SEVERE</h4>
<pre>static final&nbsp;int SEVERE</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.SEVERE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="SEVERE_LABEL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SEVERE_LABEL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SEVERE_LABEL</pre>
</li>
</ul>
<a name="WARNING">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>WARNING</h4>
<pre>static final&nbsp;int WARNING</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.WARNING">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="WARNING_LABEL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>WARNING_LABEL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> WARNING_LABEL</pre>
</li>
</ul>
<a name="INFO">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INFO</h4>
<pre>static final&nbsp;int INFO</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.INFO">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="INFO_LABEL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>INFO_LABEL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> INFO_LABEL</pre>
</li>
</ul>
<a name="CONFIG">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CONFIG</h4>
<pre>static final&nbsp;int CONFIG</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.CONFIG">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="CONFIG_LABEL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CONFIG_LABEL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> CONFIG_LABEL</pre>
</li>
</ul>
<a name="FINE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FINE</h4>
<pre>static final&nbsp;int FINE</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.FINE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="FINE_LABEL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FINE_LABEL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> FINE_LABEL</pre>
</li>
</ul>
<a name="FINER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FINER</h4>
<pre>static final&nbsp;int FINER</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.FINER">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="FINER_LABEL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FINER_LABEL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> FINER_LABEL</pre>
</li>
</ul>
<a name="FINEST">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FINEST</h4>
<pre>static final&nbsp;int FINEST</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.FINEST">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="FINEST_LABEL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>FINEST_LABEL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> FINEST_LABEL</pre>
</li>
</ul>
<a name="ALL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ALL</h4>
<pre>static final&nbsp;int ALL</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.ALL">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ALL_LABEL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ALL_LABEL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> ALL_LABEL</pre>
</li>
</ul>
<a name="SQL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SQL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SQL</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.SQL">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="TRANSACTION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>TRANSACTION</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> TRANSACTION</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.TRANSACTION">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="EVENT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>EVENT</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> EVENT</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.EVENT">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="CONNECTION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CONNECTION</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> CONNECTION</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.CONNECTION">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="QUERY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>QUERY</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> QUERY</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.QUERY">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="CACHE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>CACHE</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> CACHE</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.CACHE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="PROPAGATION">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PROPAGATION</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> PROPAGATION</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.PROPAGATION">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="SEQUENCING">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SEQUENCING</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SEQUENCING</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.SEQUENCING">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="JPA">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>JPA</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> JPA</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.JPA">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="EJB">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>EJB</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> EJB</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.EJB">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="DMS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DMS</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> DMS</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.DMS">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="METADATA">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>METADATA</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> METADATA</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.METADATA">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MONITORING">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MONITORING</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> MONITORING</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.MONITORING">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MISC">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MISC</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> MISC</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.MISC">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="MOXY">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MOXY</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> MOXY</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.MOXY">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="METAMODEL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>METAMODEL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> METAMODEL</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.METAMODEL">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="WEAVER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>WEAVER</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> WEAVER</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.WEAVER">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="PROPERTIES">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PROPERTIES</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> PROPERTIES</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.PROPERTIES">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="SERVER">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SERVER</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> SERVER</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.SERVER">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="DDL">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DDL</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> DDL</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.DDL">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="DBWS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DBWS</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> DBWS</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.DBWS">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="JPARS">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>JPARS</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> JPARS</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.JPARS">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="PROCESSOR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PROCESSOR</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> PROCESSOR</pre>
<div class="block">ModelGen logging name space.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#org.eclipse.persistence.logging.SessionLog.PROCESSOR">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="loggerCatagories">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>loggerCatagories</h4>
<pre>static final&nbsp;<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[] loggerCatagories</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="log-org.eclipse.persistence.logging.SessionLogEntry-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(<a href="../../../../org/eclipse/persistence/logging/SessionLogEntry.html" title="class in org.eclipse.persistence.logging">SessionLogEntry</a>&nbsp;entry)</pre>
<div class="block">PUBLIC:
EclipseLink will call this method whenever something
needs to be logged (messages, SQL, etc.).
All the pertinent information will be contained in
the specified entry.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>entry</code> - org.eclipse.persistence.sessions.LogEntry</dd>
</dl>
</li>
</ul>
<a name="shouldLogExceptionStackTrace--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shouldLogExceptionStackTrace</h4>
<pre>boolean&nbsp;shouldLogExceptionStackTrace()</pre>
<div class="block">By default the stack trace is logged for SEVERE all the time and at FINER level for WARNING or less,
this can be turned off.</div>
</li>
</ul>
<a name="shouldPrintDate--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shouldPrintDate</h4>
<pre>boolean&nbsp;shouldPrintDate()</pre>
<div class="block">By default the date is always printed, this can be turned off.</div>
</li>
</ul>
<a name="shouldPrintThread--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shouldPrintThread</h4>
<pre>boolean&nbsp;shouldPrintThread()</pre>
<div class="block">By default the thread is logged at FINE or less level, this can be turned off.</div>
</li>
</ul>
<a name="shouldDisplayData--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shouldDisplayData</h4>
<pre>boolean&nbsp;shouldDisplayData()</pre>
<div class="block">Return whether bind parameters should be displayed when logging SQL, default is true.</div>
</li>
</ul>
<a name="shouldPrintConnection--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shouldPrintConnection</h4>
<pre>boolean&nbsp;shouldPrintConnection()</pre>
<div class="block">By default the connection is always printed whenever available, this can be turned off.</div>
</li>
</ul>
<a name="shouldPrintSession--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shouldPrintSession</h4>
<pre>boolean&nbsp;shouldPrintSession()</pre>
<div class="block">By default the Session is always printed whenever available, this can be turned off.</div>
</li>
</ul>
<a name="setShouldDisplayData-java.lang.Boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setShouldDisplayData</h4>
<pre>void&nbsp;setShouldDisplayData(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true" title="class or interface in java.lang">Boolean</a>&nbsp;shouldDisplayData)</pre>
<div class="block">Set whether bind parameters should be displayed when logging SQL.</div>
</li>
</ul>
<a name="setShouldLogExceptionStackTrace-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setShouldLogExceptionStackTrace</h4>
<pre>void&nbsp;setShouldLogExceptionStackTrace(boolean&nbsp;flag)</pre>
<div class="block">By default stack trace is logged for SEVERE all the time and at FINER level for WARNING or less.
This can be turned off.</div>
</li>
</ul>
<a name="setShouldPrintDate-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setShouldPrintDate</h4>
<pre>void&nbsp;setShouldPrintDate(boolean&nbsp;flag)</pre>
<div class="block">By default date is printed, this can be turned off.</div>
</li>
</ul>
<a name="setShouldPrintThread-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setShouldPrintThread</h4>
<pre>void&nbsp;setShouldPrintThread(boolean&nbsp;flag)</pre>
<div class="block">By default the thread is logged at FINE or less level, this can be turned off.</div>
</li>
</ul>
<a name="setShouldPrintConnection-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setShouldPrintConnection</h4>
<pre>void&nbsp;setShouldPrintConnection(boolean&nbsp;flag)</pre>
<div class="block">By default the connection is always printed whenever available, this can be turned off.</div>
</li>
</ul>
<a name="setShouldPrintSession-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setShouldPrintSession</h4>
<pre>void&nbsp;setShouldPrintSession(boolean&nbsp;flag)</pre>
<div class="block">By default the Session is always printed whenever available, this can be turned off.</div>
</li>
</ul>
<a name="getWriter--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getWriter</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</a>&nbsp;getWriter()</pre>
<div class="block">PUBLIC:
Return the writer to which an accessor writes logged messages and SQL.
If not set, this reference usually defaults to a writer on System.out.
To enable logging, logMessages must be turned on in the session.</div>
</li>
</ul>
<a name="setWriter-java.io.Writer-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setWriter</h4>
<pre>void&nbsp;setWriter(<a href="https://docs.oracle.com/javase/8/docs/api/java/io/Writer.html?is-external=true" title="class or interface in java.io">Writer</a>&nbsp;log)</pre>
<div class="block">PUBLIC:
Set the writer to which an accessor writes logged messages and SQL.
If not set, this reference usually defaults to a writer on System.out.
To enable logging, logMessages() is used on the session.</div>
</li>
</ul>
<a name="getLevel--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLevel</h4>
<pre>int&nbsp;getLevel()</pre>
<div class="block">PUBLIC:
Return the log level. Used when session is not available.
<p>
The EclipseLink logging levels returned correspond to:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="getLevelString--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLevelString</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getLevelString()</pre>
<div class="block">PUBLIC:
<p>
Return the log level as a string value.</div>
</li>
</ul>
<a name="getLevel-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getLevel</h4>
<pre>int&nbsp;getLevel(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category)</pre>
<div class="block">PUBLIC:
Return the log level; category is only needed where name space
is available.
<p>
The EclipseLink logging levels returned correspond to:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table>
<p>
The EclipseLink categories for the logging name space are:<br>
<table>
<caption>Logging categories</caption>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CACHE"><code>CACHE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CACHE">"cache"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONNECTION"><code>CONNECTION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONNECTION">"connection"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DMS"><code>DMS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DMS">"dms"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EJB"><code>EJB</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EJB">"ejb"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EVENT"><code>EVENT</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EVENT">"event"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DBWS"><code>DBWS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DBWS">"dbws"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#JPARS"><code>JPARS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#JPARS">"jpars"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METAMODEL"><code>METAMODEL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METAMODEL">"metamodel"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MOXY"><code>MOXY</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MOXY">"moxy"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROCESSOR"><code>PROCESSOR</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROCESSOR">"processor"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPAGATION"><code>PROPAGATION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPAGATION">"propagation"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPERTIES"><code>PROPERTIES</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPERTIES">"properties"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#QUERY"><code>QUERY</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#QUERY">"query"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEQUENCING"><code>SEQUENCING</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEQUENCING">"sequencing"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SERVER"><code>SERVER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SERVER">"server"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SQL"><code>SQL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SQL">"sql"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#TRANSACTION"><code>TRANSACTION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#TRANSACTION">"transaction"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WEAVER"><code>WEAVER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WEAVER">"weaver"</a></td></tr>
</table></div>
</li>
</ul>
<a name="setLevel-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setLevel</h4>
<pre>void&nbsp;setLevel(int&nbsp;level)</pre>
<div class="block">PUBLIC:
Set the log level. Used when session is not available.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="setLevel-int-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setLevel</h4>
<pre>void&nbsp;setLevel(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category)</pre>
<div class="block">PUBLIC:
Set the log level. Category is only needed where name space
is available.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table>
<p>
The EclipseLink categories for the logging name space are:<br>
<table>
<caption>Logging categories</caption>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CACHE"><code>CACHE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CACHE">"cache"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONNECTION"><code>CONNECTION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONNECTION">"connection"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DMS"><code>DMS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DMS">"dms"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EJB"><code>EJB</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EJB">"ejb"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EVENT"><code>EVENT</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EVENT">"event"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DBWS"><code>DBWS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DBWS">"dbws"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#JPARS"><code>JPARS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#JPARS">"jpars"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METAMODEL"><code>METAMODEL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METAMODEL">"metamodel"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MOXY"><code>MOXY</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MOXY">"moxy"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROCESSOR"><code>PROCESSOR</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROCESSOR">"processor"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPAGATION"><code>PROPAGATION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPAGATION">"propagation"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPERTIES"><code>PROPERTIES</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPERTIES">"properties"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#QUERY"><code>QUERY</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#QUERY">"query"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEQUENCING"><code>SEQUENCING</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEQUENCING">"sequencing"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SERVER"><code>SERVER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SERVER">"server"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SQL"><code>SQL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SQL">"sql"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#TRANSACTION"><code>TRANSACTION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#TRANSACTION">"transaction"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WEAVER"><code>WEAVER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WEAVER">"weaver"</a></td></tr>
</table></div>
</li>
</ul>
<a name="shouldLog-int-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shouldLog</h4>
<pre>boolean&nbsp;shouldLog(int&nbsp;level)</pre>
<div class="block">PUBLIC:
Check if a message of the given level would actually be logged.
Used when session is not available.
<p>
The EclipseLink logging levels available are:
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="shouldLog-int-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>shouldLog</h4>
<pre>boolean&nbsp;shouldLog(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category)</pre>
<div class="block">PUBLIC:
Check if a message of the given level would actually be logged.
Category is only needed where name space is available.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table>
<p>
The EclipseLink categories for the logging name space are:<br>
<table>
<caption>Logging categories</caption>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CACHE"><code>CACHE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CACHE">"cache"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONNECTION"><code>CONNECTION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONNECTION">"connection"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DMS"><code>DMS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DMS">"dms"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EJB"><code>EJB</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EJB">"ejb"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EVENT"><code>EVENT</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#EVENT">"event"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DBWS"><code>DBWS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#DBWS">"dbws"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#JPARS"><code>JPARS</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#JPARS">"jpars"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METAMODEL"><code>METAMODEL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#METAMODEL">"metamodel"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MOXY"><code>MOXY</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#MOXY">"moxy"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROCESSOR"><code>PROCESSOR</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROCESSOR">"processor"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPAGATION"><code>PROPAGATION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPAGATION">"propagation"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPERTIES"><code>PROPERTIES</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#PROPERTIES">"properties"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#QUERY"><code>QUERY</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#QUERY">"query"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEQUENCING"><code>SEQUENCING</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEQUENCING">"sequencing"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SERVER"><code>SERVER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SERVER">"server"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SQL"><code>SQL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SQL">"sql"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#TRANSACTION"><code>TRANSACTION</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#TRANSACTION">"transaction"</a></td></tr>
<tr><td>&nbsp;</td><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WEAVER"><code>WEAVER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WEAVER">"weaver"</a></td></tr>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">PUBLIC:
Log a message that does not need to be translated. This method is intended for
external use when logging messages are wanted within the EclipseLink output.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param)</pre>
<div class="block">PUBLIC:
Log a message with one parameter that needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.String-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param)</pre>
<div class="block">PUBLIC:
Log a message with one parameter that needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.Object-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2)</pre>
<div class="block">PUBLIC:
Log a message with two parameters that needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.String-java.lang.Object-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2)</pre>
<div class="block">PUBLIC:
Log a message with two parameters that needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.Object-java.lang.Object-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param3)</pre>
<div class="block">PUBLIC:
Log a message with three parameters that needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.String-java.lang.Object-java.lang.Object-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param3)</pre>
<div class="block">PUBLIC:
Log a message with three parameters that needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.Object-java.lang.Object-java.lang.Object-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param3,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param4)</pre>
<div class="block">PUBLIC:
Log a message with four parameters that needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.String-java.lang.Object-java.lang.Object-java.lang.Object-java.lang.Object-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param1,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param2,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param3,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;param4)</pre>
<div class="block">PUBLIC:
Log a message with four parameters that needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.Object:A-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>[]&nbsp;arguments)</pre>
<div class="block">PUBLIC:
This method is called when the log request is from somewhere session is not available.
The message needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.String-java.lang.Object:A-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>[]&nbsp;arguments)</pre>
<div class="block">PUBLIC:
This method is called when the log request is from somewhere session is not available.
The message needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.Object:A-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>[]&nbsp;arguments,
boolean&nbsp;shouldTranslate)</pre>
<div class="block">PUBLIC:
This method is called when the log request is from somewhere session is not available.
shouldTranslate flag determines if the message needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="log-int-java.lang.String-java.lang.String-java.lang.Object:A-boolean-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>log</h4>
<pre>void&nbsp;log(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>[]&nbsp;arguments,
boolean&nbsp;shouldTranslate)</pre>
<div class="block">PUBLIC:
This method is called when the log request is from somewhere session is not available.
shouldTranslate flag determines if the message needs to be translated.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="throwing-java.lang.Throwable-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>throwing</h4>
<pre>void&nbsp;throwing(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;throwable)</pre>
<div class="block">PUBLIC:
This method is called when a throwable at finer level needs to be logged.</div>
</li>
</ul>
<a name="severe-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>severe</h4>
<pre>void&nbsp;severe(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">PUBLIC:
This method is called when a severe level message needs to be logged.
The message will be translated</div>
</li>
</ul>
<a name="warning-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>warning</h4>
<pre>void&nbsp;warning(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">PUBLIC:
This method is called when a warning level message needs to be logged.
The message will be translated</div>
</li>
</ul>
<a name="info-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>info</h4>
<pre>void&nbsp;info(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">PUBLIC:
This method is called when a info level message needs to be logged.
The message will be translated</div>
</li>
</ul>
<a name="config-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>config</h4>
<pre>void&nbsp;config(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">PUBLIC:
This method is called when a config level message needs to be logged.
The message will be translated</div>
</li>
</ul>
<a name="fine-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>fine</h4>
<pre>void&nbsp;fine(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">PUBLIC:
This method is called when a fine level message needs to be logged.
The message will be translated</div>
</li>
</ul>
<a name="finer-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>finer</h4>
<pre>void&nbsp;finer(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">PUBLIC:
This method is called when a finer level message needs to be logged.
The message will be translated</div>
</li>
</ul>
<a name="finest-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>finest</h4>
<pre>void&nbsp;finest(<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;message)</pre>
<div class="block">PUBLIC:
This method is called when a finest level message needs to be logged.
The message will be translated</div>
</li>
</ul>
<a name="logThrowable-int-java.lang.Throwable-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>logThrowable</h4>
<pre>void&nbsp;logThrowable(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;throwable)</pre>
<div class="block">PUBLIC:
Log a <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang"><code>Throwable</code></a> with level.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="logThrowable-int-java.lang.String-java.lang.Throwable-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>logThrowable</h4>
<pre>void&nbsp;logThrowable(int&nbsp;level,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;category,
<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true" title="class or interface in java.lang">Throwable</a>&nbsp;throwable)</pre>
<div class="block">PUBLIC:
Log a throwable with level.
<p>
The EclipseLink logging levels available are:<br>
<table>
<caption>Logging levels</caption>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL"><code>ALL</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#ALL">0</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST"><code>FINEST</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINEST">1</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER"><code>FINER</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINER">2</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE"><code>FINE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#FINE">3</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG"><code>CONFIG</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#CONFIG">4</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO"><code>INFO</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#INFO">5</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING"><code>WARNING</code></a></td><td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#WARNING">6</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE"><code>SEVERE</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#SEVERE">7</a></td>
<tr><td><a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF"><code>OFF</code></a></td> <td>&nbsp;</td><td>= <a href="../../../../org/eclipse/persistence/logging/SessionLog.html#OFF">8</a></td>
</table></div>
</li>
</ul>
<a name="getSession--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSession</h4>
<pre><a href="../../../../org/eclipse/persistence/sessions/Session.html" title="interface in org.eclipse.persistence.sessions">Session</a>&nbsp;getSession()</pre>
<div class="block">PUBLIC:
Get the session that owns this SessionLog.</div>
</li>
</ul>
<a name="setSession-org.eclipse.persistence.sessions.Session-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setSession</h4>
<pre>void&nbsp;setSession(<a href="../../../../org/eclipse/persistence/sessions/Session.html" title="interface in org.eclipse.persistence.sessions">Session</a>&nbsp;session)</pre>
<div class="block">PUBLIC:
Set the session that owns this SessionLog.</div>
</li>
</ul>
<a name="clone--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>clone</h4>
<pre><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a>&nbsp;clone()</pre>
<div class="block">PUBLIC:
Clone the log.</div>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<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="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 class="aboutLanguage">EclipseLink 3.0.0, API Reference</div>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/eclipse/persistence/logging/LogLevel.html" title="enum in org.eclipse.persistence.logging"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../org/eclipse/persistence/logging/SessionLogEntry.html" title="class in org.eclipse.persistence.logging"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/eclipse/persistence/logging/SessionLog.html" target="_top">Frames</a></li>
<li><a href="SessionLog.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li>Nested&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li>Constr&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright &#169; 2007&#x2013;2020 <a href="http://www.eclipse.org/eclipselink">Eclipse.org - EclipseLink Project</a>. All rights reserved.</small></p>
</body>
</html>