ARTEMIS-295 Remove 'yet' from log messages
This commit is contained in:
parent
95a8570deb
commit
1cdc01fc44
|
@ -1080,7 +1080,7 @@ public class ClientSessionFactoryImpl implements ClientSessionFactoryInternal, C
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (ClientSessionFactoryImpl.isDebug) {
|
if (ClientSessionFactoryImpl.isDebug) {
|
||||||
ActiveMQClientLogger.LOGGER.debug("Backup is not active yet");
|
ActiveMQClientLogger.LOGGER.debug("Backup is not active.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,7 @@ public interface ActiveMQJMSServerLogger extends BasicLogger {
|
||||||
ActiveMQJMSServerLogger LOGGER = Logger.getMessageLogger(ActiveMQJMSServerLogger.class, ActiveMQJMSServerLogger.class.getPackage().getName());
|
ActiveMQJMSServerLogger LOGGER = Logger.getMessageLogger(ActiveMQJMSServerLogger.class, ActiveMQJMSServerLogger.class.getPackage().getName());
|
||||||
|
|
||||||
@LogMessage(level = Logger.Level.INFO)
|
@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)
|
format = Message.Format.MESSAGE_FORMAT)
|
||||||
void serverCachingCommand(Object runnable);
|
void serverCachingCommand(Object runnable);
|
||||||
|
|
||||||
|
|
|
@ -1360,7 +1360,7 @@ public class JMSServerManagerImpl implements JMSServerManager, ActivateCallback
|
||||||
|
|
||||||
private synchronized void checkInitialised() {
|
private synchronized void checkInitialised() {
|
||||||
if (!active) {
|
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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -254,7 +254,7 @@ public interface ActiveMQServerLogger extends BasicLogger {
|
||||||
void restartingReplicatedBackupAfterFailback();
|
void restartingReplicatedBackupAfterFailback();
|
||||||
|
|
||||||
@LogMessage(level = Logger.Level.INFO)
|
@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();
|
void remoteGroupCoordinatorsNotStarted();
|
||||||
|
|
||||||
@LogMessage(level = Logger.Level.INFO)
|
@LogMessage(level = Logger.Level.INFO)
|
||||||
|
@ -701,7 +701,7 @@ public interface ActiveMQServerLogger extends BasicLogger {
|
||||||
void errorQueryingBridge(@Cause Throwable t, SimpleString name);
|
void errorQueryingBridge(@Cause Throwable t, SimpleString name);
|
||||||
|
|
||||||
@LogMessage(level = Logger.Level.WARN)
|
@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)
|
format = Message.Format.MESSAGE_FORMAT)
|
||||||
void errorQueryingBridge(SimpleString address, Integer retryCount);
|
void errorQueryingBridge(SimpleString address, Integer retryCount);
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ public interface ActiveMQXARecoveryLogger extends BasicLogger {
|
||||||
void serverRunningCachedCommand(Runnable run);
|
void serverRunningCachedCommand(Runnable run);
|
||||||
|
|
||||||
@LogMessage(level = Logger.Level.INFO)
|
@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)
|
format = Message.Format.MESSAGE_FORMAT)
|
||||||
void serverCachingCommand(Object runnable);
|
void serverCachingCommand(Object runnable);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue