aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/manual/cowboy_http2.asciidoc
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-10-07 11:43:44 +0200
committerLoïc Hoguin <[email protected]>2019-10-07 11:43:44 +0200
commit53bc54a860c7bdc089d637fa96c91f8d6f3a92c3 (patch)
tree7623649f9bab442456d373bc5f42109ed1bd2e05 /doc/src/manual/cowboy_http2.asciidoc
parent0342866c2e3490f2f9ef98ea9c8cefb405222818 (diff)
downloadcowboy-53bc54a860c7bdc089d637fa96c91f8d6f3a92c3.tar.gz
cowboy-53bc54a860c7bdc089d637fa96c91f8d6f3a92c3.tar.bz2
cowboy-53bc54a860c7bdc089d637fa96c91f8d6f3a92c3.zip
Document the logger option
Diffstat (limited to 'doc/src/manual/cowboy_http2.asciidoc')
-rw-r--r--doc/src/manual/cowboy_http2.asciidoc6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/src/manual/cowboy_http2.asciidoc b/doc/src/manual/cowboy_http2.asciidoc
index 2764705..ccd3bb3 100644
--- a/doc/src/manual/cowboy_http2.asciidoc
+++ b/doc/src/manual/cowboy_http2.asciidoc
@@ -25,6 +25,7 @@ opts() :: #{
inactivity_timeout => timeout(),
initial_connection_window_size => 65535..16#7fffffff,
initial_stream_window_size => 0..16#7fffffff,
+ logger => module(),
max_concurrent_streams => non_neg_integer() | infinity,
max_connection_buffer_size => non_neg_integer(),
max_connection_window_size => 0..16#7fffffff,
@@ -104,6 +105,10 @@ Initial window size in bytes for new streams. This is the total amount
of data (from request bodies for example) that may be buffered
by a single stream before the user code explicitly requests it.
+logger (error_logger)::
+
+The module that will be used to write log messages.
+
max_concurrent_streams (infinity)::
Maximum number of concurrent streams allowed on the connection.
@@ -234,6 +239,7 @@ too many `WINDOW_UPDATE` frames.
to protect against various flood scenarios; and
`stream_window_data_threshold` to control how small
the DATA frames that Cowboy sends can get.
+* *2.7*: The `logger` option was added.
* *2.6*: The `proxy_header` and `sendfile` options were added.
* *2.4*: Add the options `initial_connection_window_size`,
`initial_stream_window_size`, `max_concurrent_streams`,