- AccessLogFeature (webserver.accesslog) Configuration
Type: io.helidon.webserver.accesslog.AccessLogFeature
Config keyaccess-logcontent_copyThis type provides the following service implementations:
io.helidon.webserver.spi.ServerFeatureProvider
Configuration options
| key | type | default value | description |
|---|---|---|---|
enabled | boolean | true | Whether this feature will be enabled. @return whether enabled |
format | string | The format for log entries (similar to the Apache @return format string, such as `%h %l %u %t %r %b %{Referer`i} | |
logger-name | string | io.helidon.webserver.AccessLog | Name of the logger used to obtain access log logger from System#getLogger(String). Defaults to @return name of the logger to use |
sockets | string[] | List of sockets to register this feature on. If empty, it would get registered on all sockets. The logger used will have the expected logger with a suffix of the socket name. @return socket names to register on, defaults to empty (all available sockets) | |
weight | double | 1000.0 | Weight of the access log feature. We need to log access for anything happening on the server, so weight is high: @return weight of the feature |