Class LoggerNameFilter

java.lang.Object
com.ibm.websphere.logging.hpel.reader.filters.LoggerNameFilter
All Implemented Interfaces:
LogRecordFilter

public class LoggerNameFilter extends Object implements LogRecordFilter
Implementation of the LogRecordFilter interface for filtering out records not written by a logger with a matching name.
  • Constructor Details

    • LoggerNameFilter

      public LoggerNameFilter(String namePattern)
      Creates a filter instance for matching logger names using a specified regular expression.
      Parameters:
      namePattern - regular expression Pattern that each record's logger name will be compared to
  • Method Details

    • accept

      public boolean accept(RepositoryLogRecord record)
      Description copied from interface: LogRecordFilter
      Checks if record should be accepted into the list.
      Specified by:
      accept in interface LogRecordFilter
      Parameters:
      record - log record to check
      Returns:
      true if record should be included in the list; false otherwise.