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 2015/06/26 10:20:46 UTC

logging-log4j2 git commit: Use constant instead of magic number.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master e9b628ec5 -> 3d5e21dbc


Use constant instead of magic number.

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

Branch: refs/heads/master
Commit: 3d5e21dbc7062cac1f45c257335c6abcdd9f961a
Parents: e9b628e
Author: ggregory <gg...@apache.org>
Authored: Fri Jun 26 01:20:43 2015 -0700
Committer: ggregory <gg...@apache.org>
Committed: Fri Jun 26 01:20:43 2015 -0700

----------------------------------------------------------------------
 .../ext/logging/log4j2/Log4j2Logger.java        | 186 +++++++++----------
 1 file changed, 93 insertions(+), 93 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/3d5e21db/log4j-liquibase/src/main/java/liquibase/ext/logging/log4j2/Log4j2Logger.java
----------------------------------------------------------------------
diff --git a/log4j-liquibase/src/main/java/liquibase/ext/logging/log4j2/Log4j2Logger.java b/log4j-liquibase/src/main/java/liquibase/ext/logging/log4j2/Log4j2Logger.java
index 27b2f1f..b007cf8 100644
--- a/log4j-liquibase/src/main/java/liquibase/ext/logging/log4j2/Log4j2Logger.java
+++ b/log4j-liquibase/src/main/java/liquibase/ext/logging/log4j2/Log4j2Logger.java
@@ -1,93 +1,93 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache license, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the license for the specific language governing permissions and
- * limitations under the license.
- */
-package liquibase.ext.logging.log4j2;
-
-import liquibase.logging.core.AbstractLogger;
-
-import org.apache.logging.log4j.Level;
-import org.apache.logging.log4j.LogManager;
-import org.apache.logging.log4j.spi.ExtendedLogger;
-
-/**
- * Logs Liquibase messages to Log4j 2.x.
- * <p>
- * This class must be in the {@code liquibase} package in order for the Liquibase plugin discovery mechanism to work.
- * </p>
- */
-public class Log4j2Logger extends AbstractLogger {
-
-    private static final String FQCN = Log4j2Logger.class.getName();
-
-    private ExtendedLogger logger;
-
-    @Override
-    public void debug(final String message) {
-        logger.logIfEnabled(FQCN, Level.DEBUG, null, buildMessage(message));
-    }
-
-    @Override
-    public void debug(final String message, final Throwable e) {
-        logger.logIfEnabled(FQCN, Level.DEBUG, null, buildMessage(message), e);
-    }
-
-    @Override
-    public int getPriority() {
-        return 5;
-    }
-
-    @Override
-    public void info(final String message) {
-        logger.logIfEnabled(FQCN, Level.INFO, null, buildMessage(message));
-    }
-
-    @Override
-    public void info(final String message, final Throwable e) {
-        logger.logIfEnabled(FQCN, Level.INFO, null, buildMessage(message), e);
-    }
-
-    @Override
-    public void setLogLevel(final String logLevel, final String logFile) {
-        setLogLevel(logLevel);
-        // ignore logFile
-    }
-
-    @Override
-    public void setName(final String name) {
-        logger = LogManager.getContext(false).getLogger(name);
-    }
-
-    @Override
-    public void severe(final String message) {
-        logger.logIfEnabled(FQCN, Level.ERROR, null, buildMessage(message));
-    }
-
-    @Override
-    public void severe(final String message, final Throwable e) {
-        logger.logIfEnabled(FQCN, Level.ERROR, null, buildMessage(message), e);
-    }
-
-    @Override
-    public void warning(final String message) {
-        logger.logIfEnabled(FQCN, Level.WARN, null, buildMessage(message));
-    }
-
-    @Override
-    public void warning(final String message, final Throwable e) {
-        logger.logIfEnabled(FQCN, Level.WARN, null, buildMessage(message), e);
-    }
-
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache license, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the license for the specific language governing permissions and
+ * limitations under the license.
+ */
+package liquibase.ext.logging.log4j2;
+
+import liquibase.logging.core.AbstractLogger;
+
+import org.apache.logging.log4j.Level;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.spi.ExtendedLogger;
+
+/**
+ * Logs Liquibase messages to Log4j 2.x.
+ * <p>
+ * This class must be in the {@code liquibase} package in order for the Liquibase plugin discovery mechanism to work.
+ * </p>
+ */
+public class Log4j2Logger extends AbstractLogger {
+
+    private static final String FQCN = Log4j2Logger.class.getName();
+
+    private ExtendedLogger logger;
+
+    @Override
+    public void debug(final String message) {
+        logger.logIfEnabled(FQCN, Level.DEBUG, null, buildMessage(message));
+    }
+
+    @Override
+    public void debug(final String message, final Throwable e) {
+        logger.logIfEnabled(FQCN, Level.DEBUG, null, buildMessage(message), e);
+    }
+
+    @Override
+    public int getPriority() {
+        return PRIORITY_DATABASE;
+    }
+
+    @Override
+    public void info(final String message) {
+        logger.logIfEnabled(FQCN, Level.INFO, null, buildMessage(message));
+    }
+
+    @Override
+    public void info(final String message, final Throwable e) {
+        logger.logIfEnabled(FQCN, Level.INFO, null, buildMessage(message), e);
+    }
+
+    @Override
+    public void setLogLevel(final String logLevel, final String logFile) {
+        setLogLevel(logLevel);
+        // ignore logFile
+    }
+
+    @Override
+    public void setName(final String name) {
+        logger = LogManager.getContext(false).getLogger(name);
+    }
+
+    @Override
+    public void severe(final String message) {
+        logger.logIfEnabled(FQCN, Level.ERROR, null, buildMessage(message));
+    }
+
+    @Override
+    public void severe(final String message, final Throwable e) {
+        logger.logIfEnabled(FQCN, Level.ERROR, null, buildMessage(message), e);
+    }
+
+    @Override
+    public void warning(final String message) {
+        logger.logIfEnabled(FQCN, Level.WARN, null, buildMessage(message));
+    }
+
+    @Override
+    public void warning(final String message, final Throwable e) {
+        logger.logIfEnabled(FQCN, Level.WARN, null, buildMessage(message), e);
+    }
+
+}