You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2015/08/27 23:42:11 UTC

logging-log4j2 git commit: Javadoc fixes.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master bc2f21a1a -> 2b1b35613


Javadoc fixes.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/2b1b3561
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/2b1b3561
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/2b1b3561

Branch: refs/heads/master
Commit: 2b1b35613e66eec9658dcd471a28b214b5647174
Parents: bc2f21a
Author: ggregory <gg...@apache.org>
Authored: Thu Aug 27 14:42:08 2015 -0700
Committer: ggregory <gg...@apache.org>
Committed: Thu Aug 27 14:42:08 2015 -0700

----------------------------------------------------------------------
 .../main/java/org/apache/logging/log4j/spi/LoggerContext.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/2b1b3561/log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerContext.java
----------------------------------------------------------------------
diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerContext.java b/log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerContext.java
index b7be917..5cf3eb8 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerContext.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/spi/LoggerContext.java
@@ -30,14 +30,14 @@ public interface LoggerContext {
     Object getExternalContext();
 
     /**
-     * Returns a Logger.
+     * Returns an ExtendedLogger.
      * @param name The name of the Logger to return.
      * @return The logger with the specified name.
      */
     ExtendedLogger getLogger(String name);
 
     /**
-     * Returns a Logger.
+     * Returns an ExtendedLogger.
      * @param name The name of the Logger to return.
      * @param messageFactory The message factory is used only when creating a logger, subsequent use does not change
      *                       the logger but will log a warning if mismatched.