Move "no local subscription" warnings from WARN to DEBUG

This commit is contained in:
Jon Chambers 2022-03-25 11:37:05 -04:00 committed by Chris Eager
parent df415208a4
commit f3c811cc03
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class KeepAliveController {
@WebSocketSession WebSocketSessionContext context) {
if (auth != null) {
if (!clientPresenceManager.isLocallyPresent(auth.getAccount().getUuid(), auth.getAuthenticatedDevice().getId())) {
logger.warn("***** No local subscription found for {}::{}; age = {}ms, User-Agent = {}",
logger.debug("***** No local subscription found for {}::{}; age = {}ms, User-Agent = {}",
auth.getAccount().getUuid(), auth.getAuthenticatedDevice().getId(),
System.currentTimeMillis() - context.getClient().getCreatedTimestamp(),
context.getClient().getUserAgent());