From 8090769730c77c1cf48dbbfb26170862092eac72 Mon Sep 17 00:00:00 2001 From: Roland Kuhn Date: Fri, 3 Feb 2012 11:42:59 +0100 Subject: [PATCH] =?UTF-8?q?change=20=E2=80=9CClass[=5F]=E2=80=9D=20into=20?= =?UTF-8?q?proper=20Java=20raw=20generics?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- akka-docs/java/logging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs/java/logging.rst b/akka-docs/java/logging.rst index 7ac04ca657..61e3269bd8 100644 --- a/akka-docs/java/logging.rst +++ b/akka-docs/java/logging.rst @@ -194,7 +194,7 @@ More fine grained log levels can be defined in the configuration of the SLF4J ba } The SLF4J logger selected for each log event is chosen based on the -:class:`Class[_]` of the log source specified when creating the +:class:`Class` of the log source specified when creating the :class:`LoggingAdapter`, unless that was given directly as a string in which case that string is used (i.e. ``LoggerFactory.getLogger(Class c)`` is used in the first case and ``LoggerFactory.getLogger(String s)`` in the second).