Skip to content

Commit

Permalink
Fix example configuration (#5233)
Browse files Browse the repository at this point in the history
There was missing last curly bracket.
  • Loading branch information
tometchy authored Aug 30, 2021
1 parent a23ebf0 commit 0abb1f3
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions docs/articles/utilities/logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}
```

0 comments on commit 0abb1f3

Please sign in to comment.