This closes #1343 ARTEMIS-1344 Fix log level in logger message
This commit is contained in:
commit
8dd6b712fc
|
@ -342,6 +342,10 @@ public interface ActiveMQServerLogger extends BasicLogger {
|
|||
@Message(id = 221058, value = "resetting Journal File size from {0} to {1} to fit with alignment of {2}", format = Message.Format.MESSAGE_FORMAT)
|
||||
void invalidJournalFileSize(int journalFileSize, int fileSize, int alignment);
|
||||
|
||||
@LogMessage(level = Logger.Level.INFO)
|
||||
@Message(id = 221059, value = "Deleting old data directory {0} as the max folders is set to 0", format = Message.Format.MESSAGE_FORMAT)
|
||||
void backupDeletingData(String oldPath);
|
||||
|
||||
@LogMessage(level = Logger.Level.WARN)
|
||||
@Message(id = 222000, value = "ActiveMQServer is being finalized and has not been stopped. Please remember to stop the server before letting it go out of scope",
|
||||
format = Message.Format.MESSAGE_FORMAT)
|
||||
|
@ -1146,10 +1150,6 @@ public interface ActiveMQServerLogger extends BasicLogger {
|
|||
format = Message.Format.MESSAGE_FORMAT)
|
||||
void activateSharedStoreSlaveFailed(@Cause Throwable e);
|
||||
|
||||
@LogMessage(level = Logger.Level.INFO)
|
||||
@Message(id = 222190, value = "Deleting old data directory {0} as the max folders is set to 0", format = Message.Format.MESSAGE_FORMAT)
|
||||
void backupDeletingData(String oldPath);
|
||||
|
||||
@LogMessage(level = Logger.Level.WARN)
|
||||
@Message(id = 222191,
|
||||
value = "Could not find any configured role for user {0}.",
|
||||
|
|
Loading…
Reference in New Issue