Interface RequestLogger


public interface RequestLogger
Request logging API.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    fine(String msg)
    Logs the message to the request log at FINE level.
    void
    Logs the message to the request log at FINER level.
    void
    Logs the message to the request log at FINEST level.
    void
    log(Level level, String msg)
    Logs the message to the request log at the given log level.
  • Method Details

    • log

      void log(Level level, String msg)
      Logs the message to the request log at the given log level.
      Parameters:
      level - log level for the message.
      msg - message to log.
    • fine

      void fine(String msg)
      Logs the message to the request log at FINE level.
      Parameters:
      msg - message to log.
    • finer

      void finer(String msg)
      Logs the message to the request log at FINER level.
      Parameters:
      msg - message to log.
    • finest

      void finest(String msg)
      Logs the message to the request log at FINEST level.
      Parameters:
      msg - message to log.