From 872bc435544f9ecde8eccd848bbce2acaede2040 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Mal=C3=A9=C5=99?= Date: Tue, 12 Sep 2023 16:57:13 +0200 Subject: [PATCH] Applying the QE feedback for the Logging guide MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Maléř --- docs/src/main/asciidoc/logging.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/logging.adoc b/docs/src/main/asciidoc/logging.adoc index c73193e15366b4..78483f3aa643cd 100644 --- a/docs/src/main/asciidoc/logging.adoc +++ b/docs/src/main/asciidoc/logging.adoc @@ -247,7 +247,8 @@ A category configuration recursively applies to all subcategories of that catego The parent of all logging categories is called the "root category". This category, being the ultimate parent, may contain configuration which applies globally to all other categories. This includes the globally configured handlers and formatters. -Thus, configurations made under `quarkus.log.console.*`, `quarkus.log.file.*`, and `quarkus.log.syslog.*`, are global and apply for all categories. For more information, see <>. +Thus, configurations made under `quarkus.log.console.+*+`, `quarkus.log.file.+*+`, and `quarkus.log.syslog.+*+` are global and apply for all categories. +For more information, see <>. If you want to configure something extra for a specific category, create a named handler like `quarkus.log.handler.[console|file|syslog]..*` and set it up for that category by using `quarkus.log.category..handlers`.