From 14a504f7b115de8a0dfde92792ee4a2d9df71450 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Tue, 10 Mar 2020 06:50:03 +0100 Subject: [PATCH] Update logging.asciidoc - changed `2 seconds` to `2s` for consistency - exchanged *trace* with *debug* time values and vice versa to be referable to the example above Fixes #11671 --- docs/static/logging.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/static/logging.asciidoc b/docs/static/logging.asciidoc index 8e78ff284..82f0d1c4d 100644 --- a/docs/static/logging.asciidoc +++ b/docs/static/logging.asciidoc @@ -165,10 +165,10 @@ slowlog.threshold.trace: 100ms In this example: -* If the log level is set to `warn`, the log shows events that took longer than 2 seconds to process. +* If the log level is set to `warn`, the log shows events that took longer than 2s to process. * If the log level is set to `info`, the log shows events that took longer than 1s to process. -* If the log level is set to `trace`, the log shows events that took longer than 100ms to process. * If the log level is set to `debug`, the log shows events that took longer than 500ms to process. +* If the log level is set to `trace`, the log shows events that took longer than 100ms to process. The logs include the full event and filter configuration that are responsible for the slowness.