ARTEMIS-295 Remove 'yet' from log messages

This commit is contained in:
Martyn Taylor 2015-11-04 14:48:03 +00:00
parent 95a8570deb
commit 1cdc01fc44
5 changed files with 6 additions and 6 deletions

View File

@ -1080,7 +1080,7 @@ public class ClientSessionFactoryImpl implements ClientSessionFactoryInternal, C
}
else {
if (ClientSessionFactoryImpl.isDebug) {
ActiveMQClientLogger.LOGGER.debug("Backup is not active yet");
ActiveMQClientLogger.LOGGER.debug("Backup is not active.");
}
}

View File

@ -48,7 +48,7 @@ public interface ActiveMQJMSServerLogger extends BasicLogger {
ActiveMQJMSServerLogger LOGGER = Logger.getMessageLogger(ActiveMQJMSServerLogger.class, ActiveMQJMSServerLogger.class.getPackage().getName());
@LogMessage(level = Logger.Level.INFO)
@Message(id = 121004, value = "JMS Server Manager Caching command for {0} since the JMS Server is not active yet",
@Message(id = 121004, value = "JMS Server Manager Caching command for {0} since the JMS Server is not active.",
format = Message.Format.MESSAGE_FORMAT)
void serverCachingCommand(Object runnable);

View File

@ -1360,7 +1360,7 @@ public class JMSServerManagerImpl implements JMSServerManager, ActivateCallback
private synchronized void checkInitialised() {
if (!active) {
throw new IllegalStateException("Cannot access JMS Server, core server is not yet active");
throw new IllegalStateException("Cannot access JMS Server, core server is not active");
}
}

View File

@ -254,7 +254,7 @@ public interface ActiveMQServerLogger extends BasicLogger {
void restartingReplicatedBackupAfterFailback();
@LogMessage(level = Logger.Level.INFO)
@Message(id = 221040, value = "Remote group coordinators did not start yet", format = Message.Format.MESSAGE_FORMAT)
@Message(id = 221040, value = "Remote group coordinators has not started.", format = Message.Format.MESSAGE_FORMAT)
void remoteGroupCoordinatorsNotStarted();
@LogMessage(level = Logger.Level.INFO)
@ -701,7 +701,7 @@ public interface ActiveMQServerLogger extends BasicLogger {
void errorQueryingBridge(@Cause Throwable t, SimpleString name);
@LogMessage(level = Logger.Level.WARN)
@Message(id = 222097, value = "Address {0} does not have any bindings yet, retry #({1})",
@Message(id = 222097, value = "Address {0} does not have any bindings, retry #({1})",
format = Message.Format.MESSAGE_FORMAT)
void errorQueryingBridge(SimpleString address, Integer retryCount);

View File

@ -52,7 +52,7 @@ public interface ActiveMQXARecoveryLogger extends BasicLogger {
void serverRunningCachedCommand(Runnable run);
@LogMessage(level = Logger.Level.INFO)
@Message(id = 121004, value = "JMS Server Manager Caching command for {0} since the JMS Server is not active yet",
@Message(id = 121004, value = "JMS Server Manager Caching command for {0} since the JMS Server is not active.",
format = Message.Format.MESSAGE_FORMAT)
void serverCachingCommand(Object runnable);