Uses of Interface
com.resilientedge.util.logger.LogRecord

Packages that use LogRecord
com.resilientedge.util.logger   
com.resilientedge.util.logger.console   
 

Uses of LogRecord in com.resilientedge.util.logger
 

Classes in com.resilientedge.util.logger that implement LogRecord
 class SimpleLogRecord
          This class is an general implementation of a LogRecord.
 

Methods in com.resilientedge.util.logger that return LogRecord
protected  LogRecord SimpleLogger.createLogRecord()
          This method returns a LogRecord matching the logger
 

Methods in com.resilientedge.util.logger with parameters of type LogRecord
 boolean TopicLevelFilter.isLoggable(LogRecord logRecord)
          Returns true if the log record should be logged, false if not.
 void AbstractHandler.publish(LogRecord logRecord)
          This method does the real work for a handler.
 boolean Filter.isLoggable(LogRecord logRecord)
          Defines a method used to determine if the supplied log record can pass through the filter.
 void SimpleLogger.localizeMessage(LogRecord logRecord)
          This method performs a message lookup, for situations where user is logging by key.
abstract  void Formatter.format(LogRecord logRecord)
          Generate a fully-formatted log message.
 boolean LevelFilter.isLoggable(LogRecord logRecord)
          Returns true if the supplied LogRecord's level is equal or greater than the Filter's level.
 void Handler.publish(LogRecord logRecord)
          The implementation of this method should process the log record and generate the logging of the message.
protected  void LoggerWorker.forwardToHandlers(LogRecord logRecord)
          This method forwards a LogRecord to each of the Logger's Handlers for processing and exporting.
 void MemoryHandler.publish(LogRecord logRecord)
          This method processes the log record and displays the message using System.out.println().
 

Uses of LogRecord in com.resilientedge.util.logger.console
 

Methods in com.resilientedge.util.logger.console with parameters of type LogRecord
 void ConsoleHandler.publish(LogRecord logRecord)
          This method processes the log record and displays the message using System.out.println().
 void ConsoleFormatter.format(LogRecord logRecord)
          This method configures the LogRecord with the fully-formatted message to be logged.
protected  void ConsoleFormatter.formatDateAndTime(LogRecord logRecord, java.lang.StringBuffer messageBuffer)
          Adds formatted Date and Time text to the supplied StringBuffer.
protected  void ConsoleFormatter.formatLevel(LogRecord logRecord, java.lang.StringBuffer messageBuffer)
          Adds formatted Level information to the supplied StringBuffer.
protected  void ConsoleFormatter.formatTopic(LogRecord logRecord, java.lang.StringBuffer messageBuffer)
          Adds formatted Topic information to the supplied StringBuffer.
protected  void ConsoleFormatter.formatMessage(LogRecord logRecord, java.lang.StringBuffer messageBuffer)
          Adds formatted Message text to the supplied StringBuffer.
protected  void ConsoleFormatter.formatClassName(LogRecord logRecord, java.lang.StringBuffer messageBuffer)
          Adds formatted classname information to the supplied StringBuffer.
protected  void ConsoleFormatter.formatMethodName(LogRecord logRecord, java.lang.StringBuffer messageBuffer)
          Adds formatted method information to the supplied StringBuffer.
protected  void ConsoleFormatter.formatThreadName(LogRecord logRecord, java.lang.StringBuffer messageBuffer)
          Adds formatted thread information to the supplied StringBuffer.
protected  void ConsoleFormatter.formatException(LogRecord logRecord, java.lang.StringBuffer messageBuffer)
          Adds formatted exception information to the supplied StringBuffer.
 void NoTimestampConsoleFormatter.format(LogRecord logRecord)
          This method configures the LogRecord with the fully-formatted message to be logged.
 



Copyright © 2001 Resilient Edge, Inc. All Rights Reserved.