Move "no local subscription" warnings from WARN to DEBUG
This commit is contained in:
parent
df415208a4
commit
f3c811cc03
|
@ -43,7 +43,7 @@ public class KeepAliveController {
|
||||||
@WebSocketSession WebSocketSessionContext context) {
|
@WebSocketSession WebSocketSessionContext context) {
|
||||||
if (auth != null) {
|
if (auth != null) {
|
||||||
if (!clientPresenceManager.isLocallyPresent(auth.getAccount().getUuid(), auth.getAuthenticatedDevice().getId())) {
|
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(),
|
auth.getAccount().getUuid(), auth.getAuthenticatedDevice().getId(),
|
||||||
System.currentTimeMillis() - context.getClient().getCreatedTimestamp(),
|
System.currentTimeMillis() - context.getClient().getCreatedTimestamp(),
|
||||||
context.getClient().getUserAgent());
|
context.getClient().getUserAgent());
|
||||||
|
|
Loading…
Reference in New Issue