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 2014/10/24 02:42:11 UTC

git commit: Subtle Javadoc adjustment in terminology for string vs. object messages.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 0c580be66 -> 801fb4ba8


Subtle Javadoc adjustment in terminology for string vs. object messages.

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

Branch: refs/heads/master
Commit: 801fb4ba8b5a6e624f9923050f34ecbdc658e450
Parents: 0c580be
Author: Gary Gregory <ga...@gmail.com>
Authored: Thu Oct 23 20:41:50 2014 -0400
Committer: Gary Gregory <ga...@gmail.com>
Committed: Thu Oct 23 20:41:50 2014 -0400

----------------------------------------------------------------------
 .../main/java/org/apache/logging/log4j/Logger.java  | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/801fb4ba/log4j-api/src/main/java/org/apache/logging/log4j/Logger.java
----------------------------------------------------------------------
diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/Logger.java b/log4j-api/src/main/java/org/apache/logging/log4j/Logger.java
index a9b7254..8f9c837 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/Logger.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/Logger.java
@@ -160,7 +160,7 @@ public interface Logger {
     /**
      * Logs a message object with the {@link Level#DEBUG DEBUG} level.
      *
-     * @param message the message object to log.
+     * @param message the message string to log.
      */
     void debug(String message);
 
@@ -309,7 +309,7 @@ public interface Logger {
     /**
      * Logs a message object with the {@link Level#ERROR ERROR} level.
      *
-     * @param message the message object to log.
+     * @param message the message string to log.
      */
     void error(String message);
 
@@ -455,7 +455,7 @@ public interface Logger {
     /**
      * Logs a message object with the {@link Level#FATAL FATAL} level.
      *
-     * @param message the message object to log.
+     * @param message the message string to log.
      */
     void fatal(String message);
 
@@ -604,7 +604,7 @@ public interface Logger {
     /**
      * Logs a message object with the {@link Level#INFO INFO} level.
      *
-     * @param message the message object to log.
+     * @param message the message string to log.
      */
     void info(String message);
 
@@ -856,7 +856,7 @@ public interface Logger {
      * Logs a message object with the given level.
      *
      * @param level the logging level
-     * @param message the message object to log.
+     * @param message the message string to log.
      */
     void log(Level level, String message);
 
@@ -964,7 +964,7 @@ public interface Logger {
      * Logs a message object with the {@link Level#TRACE TRACE} level.
      *
      * @param marker the marker data specific to this log statement
-     * @param message the message object to log.
+     * @param message the message string to log.
      */
     void trace(Marker marker, String message);
 
@@ -1024,7 +1024,7 @@ public interface Logger {
     /**
      * Logs a message object with the {@link Level#TRACE TRACE} level.
      *
-     * @param message the message object to log.
+     * @param message the message string to log.
      */
     void trace(String message);
 
@@ -1149,7 +1149,7 @@ public interface Logger {
     /**
      * Logs a message object with the {@link Level#WARN WARN} level.
      *
-     * @param message the message object to log.
+     * @param message the message string to log.
      */
     void warn(String message);