forked from External/mage
Some minor logging and comment changes.
This commit is contained in:
parent
a42318070e
commit
797ee3d945
4 changed files with 11 additions and 4 deletions
|
|
@ -65,7 +65,7 @@ public class ChatManager {
|
|||
if (chatSessions.containsKey(chatId)) {
|
||||
chatSessions.get(chatId).join(userId);
|
||||
} else {
|
||||
logger.warn("User could not join chatId: " + chatId +" userId: " + userId);
|
||||
logger.trace("User could not join chatId: " + chatId +" userId: " + userId);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -81,7 +81,7 @@ public class ChatManager {
|
|||
chatSessions.remove(chatId);
|
||||
logger.debug("Chat removed - chatId: " + chatId);
|
||||
} else {
|
||||
logger.warn("Chat to destroy does not exist - chatId: " + chatId);
|
||||
logger.trace("Chat to destroy does not exist - chatId: " + chatId);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue