EclipseLink 2.1.2, build 'v20101206-r8635' API Reference

org.eclipse.persistence.logging
Class DefaultSessionLog

java.lang.Object
  extended by org.eclipse.persistence.logging.AbstractSessionLog
      extended by org.eclipse.persistence.logging.DefaultSessionLog
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, SessionLog

public class DefaultSessionLog
extends AbstractSessionLog
implements java.io.Serializable

Purpose: Default log used for the session when message logging is enabled. The session can log information such as,

As well information about the message can be logged such as,

See Also:
SessionLog, AbstractSessionLog, Serialized Form
Author:
Big Country

Field Summary
protected  java.lang.String fileName
          The filename associated with this DefaultSessionLog, if it is being written out to a file
 
Fields inherited from class org.eclipse.persistence.logging.AbstractSessionLog
CONFIG_PREFIX, CONNECTION_STRING, DATE_FORMAT_STR, dateFormat, defaultLog, FINE_PREFIX, FINER_PREFIX, FINEST_PREFIX, INFO_PREFIX, level, session, SEVERE_PREFIX, shouldLogExceptionStackTrace, shouldPrintConnection, shouldPrintDate, shouldPrintSession, shouldPrintThread, THREAD_STRING, TOPLINK_PREFIX, WARNING_PREFIX, writer
 
Fields inherited from interface org.eclipse.persistence.logging.SessionLog
ALL, ALL_LABEL, CACHE, CONFIG, CONFIG_LABEL, CONNECTION, DMS, EJB, EJB_OR_METADATA, EVENT, FINE, FINE_LABEL, FINER, FINER_LABEL, FINEST, FINEST_LABEL, INFO, INFO_LABEL, loggerCatagories, METAMODEL, OFF, OFF_LABEL, PROPAGATION, PROPERTIES, QUERY, SEQUENCING, SERVER, SEVERE, SEVERE_LABEL, SQL, TRANSACTION, WARNING, WARNING_LABEL, WEAVER
 
Constructor Summary
DefaultSessionLog()
          PUBLIC: Create a new default session log.
DefaultSessionLog(java.io.Writer writer)
          PUBLIC: Create a new default session log for the given writer.
 
Method Summary
 int getLevel(java.lang.String category)
          PUBLIC: Return the log level for the category name space.
 java.lang.String getWriterFilename()
          PUBLIC: For the given writer, return it's associated filename.
protected  void initialize()
          Initialize the log to be backward-compatible with the original TopLink log.
protected  void initialize(java.io.Writer writer)
          Initialize the log.
 void log(SessionLogEntry entry)
          PUBLIC: Log the entry.
 void setLevel(int level, java.lang.String category)
          PUBLIC: Set the log level for the category name space.
 void setWriter(java.lang.String aFileName)
          PUBLIC: Set the writer that will receive the formatted log entries for a file name.
 boolean shouldLog(int level, java.lang.String category)
          PUBLIC: Check if a message of the given level would actually be logged by the logger with name space built from the given session and category.
protected  void writeMessage(java.lang.String message)
          Append the specified message information to the writer.
protected  void writeSeparator()
          Append the separator string to the writer.
 
Methods inherited from class org.eclipse.persistence.logging.AbstractSessionLog
clone, config, fine, finer, finest, formatMessage, getConnectionString, getDateFormat, getDateString, getDefaultLoggingLevel, getLevel, getLevelString, getLog, getSession, getSessionString, getSupplementDetailString, getThreadString, getWriter, info, isOff, log, log, log, log, log, log, log, logThrowable, printPrefixString, setDateFormat, setLevel, setLog, setSession, setShouldLogExceptionStackTrace, setShouldPrintConnection, setShouldPrintDate, setShouldPrintSession, setShouldPrintThread, setWriter, setWriter, severe, shouldLog, shouldLogExceptionStackTrace, shouldPrintConnection, shouldPrintDate, shouldPrintSession, shouldPrintThread, throwing, translateLoggingLevelToString, translateStringToLoggingLevel, warning
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

fileName

protected java.lang.String fileName
The filename associated with this DefaultSessionLog, if it is being written out to a file

Constructor Detail

DefaultSessionLog

public DefaultSessionLog()
PUBLIC: Create a new default session log.


DefaultSessionLog

public DefaultSessionLog(java.io.Writer writer)
PUBLIC: Create a new default session log for the given writer.

Method Detail

setLevel

public void setLevel(int level,
                     java.lang.String category)
Description copied from class: AbstractSessionLog
PUBLIC:

Set the log level for the category name space.

Specified by:
setLevel in interface SessionLog
Overrides:
setLevel in class AbstractSessionLog
Parameters:
level - the new log level
category - the string representation of a TopLink category, e.g. "sql", "transaction" ...


getLevel

public int getLevel(java.lang.String category)
Description copied from class: AbstractSessionLog
PUBLIC:

Return the log level for the category name space.

Specified by:
getLevel in interface SessionLog
Overrides:
getLevel in class AbstractSessionLog
Parameters:
category - the string representation of a TopLink category, e.g. "sql", "transaction" ...

Returns:
the log level


shouldLog

public boolean shouldLog(int level,
                         java.lang.String category)
PUBLIC:

Check if a message of the given level would actually be logged by the logger with name space built from the given session and category.

Specified by:
shouldLog in interface SessionLog
Overrides:
shouldLog in class AbstractSessionLog
Parameters:
level - the log request level
category - the string representation of a TopLink category, e.g. "sql", "transaction" ...*

Returns:
true if the given message level will be logged for the given category


initialize

protected void initialize()
Initialize the log to be backward-compatible with the original TopLink log.


initialize

protected void initialize(java.io.Writer writer)
Initialize the log.


log

public void log(SessionLogEntry entry)
PUBLIC: Log the entry. This writes the log entries information to a writer such as System.out or a file.

Specified by:
log in interface SessionLog
Specified by:
log in class AbstractSessionLog
Parameters:
entry - org.eclipse.persistence.sessions.LogEntry

setWriter

public void setWriter(java.lang.String aFileName)
PUBLIC: Set the writer that will receive the formatted log entries for a file name.


getWriterFilename

public java.lang.String getWriterFilename()
PUBLIC: For the given writer, return it's associated filename. If associated writer does not have a filename, return null.


writeMessage

protected void writeMessage(java.lang.String message)
                     throws java.io.IOException
Append the specified message information to the writer.

Throws:
java.io.IOException

writeSeparator

protected void writeSeparator()
                       throws java.io.IOException
Append the separator string to the writer.

Throws:
java.io.IOException

EclipseLink 2.1.2, build 'v20101206-r8635' API Reference