Repository: logging-log4j2 Updated Branches: refs/heads/master 47f70fee5 -> d64ec4481
Checkstyle: Variable access definition in wrong order. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/74aa89ab Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/74aa89ab Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/74aa89ab Branch: refs/heads/master Commit: 74aa89aba206eafdd9fea1c7ae5985a477ab4c13 Parents: 2a4479b Author: rpopma <[email protected]> Authored: Thu Sep 24 08:29:57 2015 +0200 Committer: rpopma <[email protected]> Committed: Thu Sep 24 08:29:57 2015 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/logging/log4j/EventLogger.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/74aa89ab/log4j-api/src/main/java/org/apache/logging/log4j/EventLogger.java ---------------------------------------------------------------------- diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/EventLogger.java b/log4j-api/src/main/java/org/apache/logging/log4j/EventLogger.java index f39070f..364b640 100644 --- a/log4j-api/src/main/java/org/apache/logging/log4j/EventLogger.java +++ b/log4j-api/src/main/java/org/apache/logging/log4j/EventLogger.java @@ -24,13 +24,13 @@ import org.apache.logging.log4j.spi.ExtendedLogger; */ public final class EventLogger { - private static final String NAME = "EventLogger"; - /** * Defines the Event Marker. */ public static final Marker EVENT_MARKER = MarkerManager.getMarker("EVENT"); + private static final String NAME = "EventLogger"; + private static final String FQCN = EventLogger.class.getName(); private static final ExtendedLogger LOGGER = LogManager.getContext(false).getLogger(NAME);
