Interface TrafficLoggingConfig


public interface TrafficLoggingConfig
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    If set to true then binary/text messages received/sent are logged if the DEBUG level is enabled for the logger io.quarkus.websockets.next.traffic.
    int
    The number of characters of a text message which will be logged if traffic logging is enabled.
  • Method Details

    • enabled

      @WithDefault("false") boolean enabled()
      If set to true then binary/text messages received/sent are logged if the DEBUG level is enabled for the logger io.quarkus.websockets.next.traffic.
    • textPayloadLimit

      @WithDefault("100") int textPayloadLimit()
      The number of characters of a text message which will be logged if traffic logging is enabled. The payload of a binary message is never logged.