Class LoggerHandler

java.lang.Object
io.vertx.reactivex.ext.web.handler.LoggerHandler
All Implemented Interfaces:
Handler<RoutingContext>, io.vertx.lang.rx.RxDelegate, PlatformHandler

public class LoggerHandler extends Object implements io.vertx.lang.rx.RxDelegate, PlatformHandler, Handler<RoutingContext>
A handler which logs request information to the Vert.x logger. You should mount this handler before any handler that could fail the routing context. Logs will be produced with the appropriate severity level depending on the status code of the response. To capture the logs configure the logger in your logging configuration with the name: io.vertx.ext.web.handler.LoggerHandler.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final io.vertx.lang.rx.TypeArg<LoggerHandler> __TYPE_ARG
    • DEFAULT_FORMAT

      public static final LoggerFormat DEFAULT_FORMAT
  • Constructor Details

    • LoggerHandler

      public LoggerHandler(LoggerHandler delegate)
    • LoggerHandler

      public LoggerHandler(Object delegate)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getDelegate

      public LoggerHandler getDelegate()
      Specified by:
      getDelegate in interface PlatformHandler
      Specified by:
      getDelegate in interface io.vertx.lang.rx.RxDelegate
    • handle

      public void handle(RoutingContext event)
      Something has happened, so handle it.
      Specified by:
      handle in interface Handler<RoutingContext>
      Specified by:
      handle in interface PlatformHandler
      Parameters:
      event - the event to handle
    • create

      public static LoggerHandler create()
      Create a handler with default format
      Returns:
      the handler
    • create

      public static LoggerHandler create(LoggerFormat format)
      Create a handler with he specified format
      Parameters:
      format - the format
      Returns:
      the handler
    • create

      public static LoggerHandler create(boolean immediate, LoggerFormat format)
      Create a handler with he specified format
      Parameters:
      immediate - true if logging should occur as soon as request arrives
      format - the format
      Returns:
      the handler
    • customFormatter

      public LoggerHandler customFormatter(LoggerFormatter formatter)
      Set the custom formatter to be used by the handler.
      Parameters:
      formatter - the formatter
      Returns:
      the formatted log string
    • newInstance

      public static LoggerHandler newInstance(LoggerHandler arg)