From 5cb9ab0fc0bba3891c3133e8b842f661ac6aaa5c Mon Sep 17 00:00:00 2001 From: Veebs Date: Sun, 12 Jan 2014 15:50:46 -0800 Subject: [PATCH] Correct JavaDoc --- .../netty/util/internal/logging/InternalLoggerFactory.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/common/src/main/java/io/netty/util/internal/logging/InternalLoggerFactory.java b/common/src/main/java/io/netty/util/internal/logging/InternalLoggerFactory.java index 680606980d..a80e94c9c8 100644 --- a/common/src/main/java/io/netty/util/internal/logging/InternalLoggerFactory.java +++ b/common/src/main/java/io/netty/util/internal/logging/InternalLoggerFactory.java @@ -18,9 +18,10 @@ package io.netty.util.internal.logging; /** * Creates an {@link InternalLogger} or changes the default factory * implementation. This factory allows you to choose what logging framework - * Netty should use. The default factory is {@link JdkLoggerFactory}. - * You can change it to your preferred logging framework before other Netty - * classes are loaded: + * Netty should use. The default factory is {@link Slf4JLoggerFactory}. If SLF4J + * is not available, {@link Log4JLoggerFactory} is used. If Log4J is not available, + * {@link JdkLoggerFactory} is used. You can change it to your preferred + * logging framework before other Netty classes are loaded: *
  * {@link InternalLoggerFactory}.setDefaultFactory(new {@link Log4JLoggerFactory}());
  *