From 2a144bc4eec59390bc792bcba75992a7db4787b4 Mon Sep 17 00:00:00 2001 From: jbertram Date: Fri, 1 Jul 2016 15:14:15 -0500 Subject: [PATCH] ARTEMIS-598 fix native logger code --- .../org/apache/activemq/artemis/jlibaio/NativeLogger.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/artemis-native/src/main/java/org/apache/activemq/artemis/jlibaio/NativeLogger.java b/artemis-native/src/main/java/org/apache/activemq/artemis/jlibaio/NativeLogger.java index 6ebcc8fc7b..0bd95dbd85 100644 --- a/artemis-native/src/main/java/org/apache/activemq/artemis/jlibaio/NativeLogger.java +++ b/artemis-native/src/main/java/org/apache/activemq/artemis/jlibaio/NativeLogger.java @@ -25,7 +25,7 @@ import org.jboss.logging.annotations.MessageLogger; /** * Logger Code 14 * - * each message id must be 6 digits long starting with 14, the 3rd digit donates the level so + * each message id must be 6 digits long starting with 14, the 3rd digit denotes the level so * * INF0 1 * WARN 2 @@ -34,7 +34,7 @@ import org.jboss.logging.annotations.MessageLogger; * TRACE 5 * FATAL 6 * - * so an INFO message would be 1000 to 6000 + * so an INFO message would be 141000 to 141999 */ @MessageLogger(projectCode = "jlibaio") public interface NativeLogger extends BasicLogger { @@ -45,6 +45,6 @@ public interface NativeLogger extends BasicLogger { NativeLogger LOGGER = Logger.getMessageLogger(NativeLogger.class, NativeLogger.class.getPackage().getName()); @LogMessage(level = Logger.Level.WARN) - @Message(id = 1001, value = "You have a native library with a different version than expected", format = Message.Format.MESSAGE_FORMAT) + @Message(id = 143001, value = "You have a native library with a different version than expected", format = Message.Format.MESSAGE_FORMAT) void incompatibleNativeLibrary(); }