logging-log4j2 git commit: Rename param.

2017-07-12 Thread ggregory
Repository: logging-log4j2
Updated Branches:
  refs/heads/master 241c702aa -> 1334bb41a


Rename param.

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

Branch: refs/heads/master
Commit: 1334bb41acfba3ccff7e7c6d6a61ec60a630e958
Parents: 241c702
Author: Gary Gregory 
Authored: Wed Jul 12 18:35:36 2017 -0700
Committer: Gary Gregory 
Committed: Wed Jul 12 18:35:36 2017 -0700

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


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/1334bb41/log4j-api/src/main/java/org/apache/logging/log4j/util/Activator.java
--
diff --git 
a/log4j-api/src/main/java/org/apache/logging/log4j/util/Activator.java 
b/log4j-api/src/main/java/org/apache/logging/log4j/util/Activator.java
index c35dd21..2547b7d 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/util/Activator.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/Activator.java
@@ -71,11 +71,11 @@ public class Activator implements BundleActivator, 
SynchronousBundleListener {
 }
 }
 
-private void loadProvider(final BundleWiring provider) {
-ProviderUtil.loadProviders(provider.getClassLoader());
-final List urls = provider.findEntries("META-INF", 
"log4j-provider.properties", 0);
+private void loadProvider(final BundleWiring bundleWiring) {
+ProviderUtil.loadProviders(bundleWiring.getClassLoader());
+final List urls = bundleWiring.findEntries("META-INF", 
"log4j-provider.properties", 0);
 for (final URL url : urls) {
-ProviderUtil.loadProvider(url, provider.getClassLoader());
+ProviderUtil.loadProvider(url, bundleWiring.getClassLoader());
 }
 }
 



logging-log4j2 git commit: Javadoc: Be as specific as possible in describing the levels.

2017-07-12 Thread ggregory
Repository: logging-log4j2
Updated Branches:
  refs/heads/master bcaa2a40a -> 241c702aa


Javadoc: Be as specific as possible in describing the levels.

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

Branch: refs/heads/master
Commit: 241c702aa41ce879556f6b890ccd9b7f0fff1b08
Parents: bcaa2a4
Author: Gary Gregory 
Authored: Wed Jul 12 14:14:42 2017 -0700
Committer: Gary Gregory 
Committed: Wed Jul 12 14:14:42 2017 -0700

--
 .../src/main/java/org/apache/logging/log4j/Level.java | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/241c702a/log4j-api/src/main/java/org/apache/logging/log4j/Level.java
--
diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/Level.java 
b/log4j-api/src/main/java/org/apache/logging/log4j/Level.java
index 4375118..05d0655 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/Level.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/Level.java
@@ -159,12 +159,14 @@ public final class Level implements Comparable, 
Serializable {
  * Compares this level against the level passed as an argument and returns 
true if this level is the same or is less
  * specific.
  * 
- * Concretely, {@link #TRACE} is less specific than {@link #DEBUG}, which 
is less specific than {@link #INFO},
- * etc., until {@link #FATAL}, and finally {@link #OFF}, which is the most 
specific standard level.
- * The least specific level is {@link #ALL}.
+ * Concretely, {@link #ALL} is less specific than {@link #TRACE}, which is 
less specific than {@link #DEBUG}, which
+ * is less specific than {@link #INFO}, which is less specific than {@link 
#WARN}, which is less specific than
+ * {@link #ERROR}, which is less specific than {@link #FATAL}, and finally 
{@link #OFF}, which is the most specific
+ * standard level.
  * 
  *
- * @param level The level to test.
+ * @param level
+ *The level to test.
  * @return True if this level Level is less specific or the same as the 
given Level.
  */
 public boolean isLessSpecificThan(final Level level) {