Package io.quarkus.websockets.next
Interface TrafficLoggingConfig
public interface TrafficLoggingConfig
-
Method Summary
Modifier and TypeMethodDescriptionbooleanenabled()If set to true then binary/text messages received/sent are logged if theDEBUGlevel is enabled for the loggerio.quarkus.websockets.next.traffic.intThe 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 theDEBUGlevel is enabled for the loggerio.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.
-