You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rp...@apache.org on 2016/08/28 12:24:47 UTC

[26/50] logging-log4j2 git commit: Fix Scaladoc

Fix Scaladoc


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

Branch: refs/heads/LOG4J2-1010&LOG4J2-1447-injectable-contextdata&better-datastructure
Commit: c6c494813ddc044d93315346dcc28f3c76e047eb
Parents: 567acc7
Author: Mikael St�ldal <mi...@magine.com>
Authored: Thu Jun 30 10:42:21 2016 +0200
Committer: Mikael St�ldal <mi...@magine.com>
Committed: Thu Jun 30 10:42:21 2016 +0200

----------------------------------------------------------------------
 .../main/scala/org/apache/logging/log4j/scala/Logger.scala   | 8 ++++----
 .../main/scala/org/apache/logging/log4j/scala/Logger.scala   | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/c6c49481/log4j-api-scala_2.10/src/main/scala/org/apache/logging/log4j/scala/Logger.scala
----------------------------------------------------------------------
diff --git a/log4j-api-scala_2.10/src/main/scala/org/apache/logging/log4j/scala/Logger.scala b/log4j-api-scala_2.10/src/main/scala/org/apache/logging/log4j/scala/Logger.scala
index 4999bdb..2f78ba0 100644
--- a/log4j-api-scala_2.10/src/main/scala/org/apache/logging/log4j/scala/Logger.scala
+++ b/log4j-api-scala_2.10/src/main/scala/org/apache/logging/log4j/scala/Logger.scala
@@ -417,7 +417,7 @@ class Logger private(val delegate: ExtendedLogger) {
     *
     * Note that passing in `Level.OFF` always returns `true`.
     *
-    * @param level the level to check
+    * @param level the Level to check
     * @return boolean - `true` if this Logger is enabled for the level, `false` otherwise
     */
   def isEnabled(level: Level): Boolean = delegate.isEnabled(level)
@@ -425,9 +425,9 @@ class Logger private(val delegate: ExtendedLogger) {
   /**
     * Checks whether this Logger is enabled for the the given `Level` and `Marker`.
     *
-    * @param level  the level to check
-    * @param marker The marker to check
-    * @return boolean - `true` if this Logger is enabled for the level, `false` otherwise
+    * @param level  the Level to check
+    * @param marker the Marker to check
+    * @return boolean - `true` if this Logger is enabled for the level and marker, `false` otherwise
     */
   def isEnabled(level: Level, marker: Marker): Boolean = delegate.isEnabled(level, marker)
 

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/c6c49481/log4j-api-scala_2.11/src/main/scala/org/apache/logging/log4j/scala/Logger.scala
----------------------------------------------------------------------
diff --git a/log4j-api-scala_2.11/src/main/scala/org/apache/logging/log4j/scala/Logger.scala b/log4j-api-scala_2.11/src/main/scala/org/apache/logging/log4j/scala/Logger.scala
index 4999bdb..2f78ba0 100644
--- a/log4j-api-scala_2.11/src/main/scala/org/apache/logging/log4j/scala/Logger.scala
+++ b/log4j-api-scala_2.11/src/main/scala/org/apache/logging/log4j/scala/Logger.scala
@@ -417,7 +417,7 @@ class Logger private(val delegate: ExtendedLogger) {
     *
     * Note that passing in `Level.OFF` always returns `true`.
     *
-    * @param level the level to check
+    * @param level the Level to check
     * @return boolean - `true` if this Logger is enabled for the level, `false` otherwise
     */
   def isEnabled(level: Level): Boolean = delegate.isEnabled(level)
@@ -425,9 +425,9 @@ class Logger private(val delegate: ExtendedLogger) {
   /**
     * Checks whether this Logger is enabled for the the given `Level` and `Marker`.
     *
-    * @param level  the level to check
-    * @param marker The marker to check
-    * @return boolean - `true` if this Logger is enabled for the level, `false` otherwise
+    * @param level  the Level to check
+    * @param marker the Marker to check
+    * @return boolean - `true` if this Logger is enabled for the level and marker, `false` otherwise
     */
   def isEnabled(level: Level, marker: Marker): Boolean = delegate.isEnabled(level, marker)