Skip to content

Commit afe6f77

Browse files
authored
docs: logger names are Fully Qualified Class Names (#1476) (#1477)
1 parent ab89da6 commit afe6f77

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

docs/src/main/paradox/typed/logging.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ troubleshooting. Those logger names are typically prefixed with the package name
452452
For example, in Logback the configuration may look like this to enable debug logging for Cluster Sharding:
453453

454454
```
455-
<logger name="pekko.cluster.sharding" level="DEBUG" />
455+
<logger name="org.apache.pekko.cluster.sharding" level="DEBUG" />
456456
457457
<root level="INFO">
458458
<appender-ref ref="ASYNC"/>
@@ -462,18 +462,18 @@ For example, in Logback the configuration may look like this to enable debug log
462462
Other examples of logger names or prefixes:
463463

464464
```
465-
pekko.cluster
466-
pekko.cluster.Cluster
467-
pekko.cluster.ClusterHeartbeat
468-
pekko.cluster.ClusterGossip
469-
pekko.cluster.ddata
470-
pekko.cluster.pubsub
471-
pekko.cluster.singleton
472-
pekko.cluster.sharding
473-
pekko.coordination.lease
474-
pekko.discovery
475-
pekko.persistence
476-
pekko.remote
465+
org.apache.pekko.cluster
466+
org.apache.pekko.cluster.Cluster
467+
org.apache.pekko.cluster.ClusterHeartbeat
468+
org.apache.pekko.cluster.ClusterGossip
469+
org.apache.pekko.cluster.ddata
470+
org.apache.pekko.cluster.pubsub
471+
org.apache.pekko.cluster.singleton
472+
org.apache.pekko.cluster.sharding
473+
org.apache.pekko.coordination.lease
474+
org.apache.pekko.discovery
475+
org.apache.pekko.persistence
476+
org.apache.pekko.remote
477477
```
478478

479479
## Logging in tests

0 commit comments

Comments
 (0)