From 0abb1f36d0b1fcd2ab3a17c380d4806252c77c1d Mon Sep 17 00:00:00 2001 From: tometchy Date: Mon, 30 Aug 2021 16:06:10 +0200 Subject: [PATCH] Fix example configuration (#5233) There was missing last curly bracket. --- docs/articles/utilities/logging.md | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/docs/articles/utilities/logging.md b/docs/articles/utilities/logging.md index 055b7abe8d5..bbe33664d2e 100644 --- a/docs/articles/utilities/logging.md +++ b/docs/articles/utilities/logging.md @@ -64,17 +64,18 @@ akka { ``` ## Example configuration ```hocon -akka { - stdout-loglevel = DEBUG - loglevel = DEBUG - log-config-on-start = on - actor { - debug { - receive = on - autoreceive = on - lifecycle = on - event-stream = on - unhandled = on - } - } +akka { + stdout-loglevel = DEBUG + loglevel = DEBUG + log-config-on-start = on + actor { + debug { + receive = on + autoreceive = on + lifecycle = on + event-stream = on + unhandled = on + } + } +} ```