From afe6f77b0cbd1d9c77f21e62c65d1b25462da4cb Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Fri, 13 Sep 2024 13:01:17 +0100 Subject: [PATCH] docs: logger names are Fully Qualified Class Names (#1476) (#1477) --- docs/src/main/paradox/typed/logging.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/src/main/paradox/typed/logging.md b/docs/src/main/paradox/typed/logging.md index 3531c8213e9..b1466f037a7 100644 --- a/docs/src/main/paradox/typed/logging.md +++ b/docs/src/main/paradox/typed/logging.md @@ -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: ``` - + @@ -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