Repository: logging-log4j2 Updated Branches: refs/heads/master 7487eca3d -> ff1771879
Remove unnecessary parens. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/ff177187 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/ff177187 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/ff177187 Branch: refs/heads/master Commit: ff177187998fae5e37af7622a201d1cd4d673035 Parents: 7487eca Author: ggregory <[email protected]> Authored: Mon Sep 21 15:37:00 2015 -0700 Committer: ggregory <[email protected]> Committed: Mon Sep 21 15:37:00 2015 -0700 ---------------------------------------------------------------------- .../java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/ff177187/log4j-core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java index f50c49d..ff4797d 100644 --- a/log4j-core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java +++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java @@ -352,7 +352,7 @@ public Log4jLogEvent(final String loggerName, final Marker marker, final String this.loggerName = loggerName; this.marker = marker; this.loggerFqcn = loggerFQCN; - this.level = (level == null) ? Level.OFF : level; // LOG4J2-462, LOG4J2-465 + this.level = level == null ? Level.OFF : level; // LOG4J2-462, LOG4J2-465 this.message = message; this.thrown = thrown; this.thrownProxy = thrownProxy;
