Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: logger names are Fully Qualified Class Names #1476

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions docs/src/main/paradox/typed/logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ troubleshooting. Those logger names are typically prefixed with the package name
For example, in Logback the configuration may look like this to enable debug logging for Cluster Sharding:

```
<logger name="pekko.cluster.sharding" level="DEBUG" />
<logger name="org.apache.pekko.cluster.sharding" level="DEBUG" />

<root level="INFO">
<appender-ref ref="ASYNC"/>
Expand All @@ -462,18 +462,18 @@ For example, in Logback the configuration may look like this to enable debug log
Other examples of logger names or prefixes:

```
pekko.cluster
pekko.cluster.Cluster
pekko.cluster.ClusterHeartbeat
pekko.cluster.ClusterGossip
pekko.cluster.ddata
pekko.cluster.pubsub
pekko.cluster.singleton
pekko.cluster.sharding
pekko.coordination.lease
pekko.discovery
pekko.persistence
pekko.remote
org.apache.pekko.cluster
org.apache.pekko.cluster.Cluster
org.apache.pekko.cluster.ClusterHeartbeat
org.apache.pekko.cluster.ClusterGossip
org.apache.pekko.cluster.ddata
org.apache.pekko.cluster.pubsub
org.apache.pekko.cluster.singleton
org.apache.pekko.cluster.sharding
org.apache.pekko.coordination.lease
org.apache.pekko.discovery
org.apache.pekko.persistence
org.apache.pekko.remote
```

## Logging in tests
Expand Down