Fixed - Tomcat Manager "Session can't be found" message should have debug level.

pull/5004/head^2
Nikita Koksharov 2 years ago
parent f4a80a19ff
commit ba2d285653

@ -185,7 +185,7 @@ public class RedissonSessionManager extends ManagerBase {
}
if (attrs.isEmpty() || (broadcastSessionEvents && getNotifiedNodes(id).contains(nodeId))) {
log.info("Session " + id + " can't be found");
log.debug("Session " + id + " can't be found");
return null;
}

@ -185,7 +185,7 @@ public class RedissonSessionManager extends ManagerBase {
}
if (attrs.isEmpty() || (broadcastSessionEvents && getNotifiedNodes(id).contains(nodeId))) {
log.info("Session " + id + " can't be found");
log.debug("Session " + id + " can't be found");
return null;
}

@ -185,7 +185,7 @@ public class RedissonSessionManager extends ManagerBase {
}
if (attrs.isEmpty() || (broadcastSessionEvents && getNotifiedNodes(id).contains(nodeId))) {
log.info("Session " + id + " can't be found");
log.debug("Session " + id + " can't be found");
return null;
}

@ -185,7 +185,7 @@ public class RedissonSessionManager extends ManagerBase {
}
if (attrs.isEmpty() || (broadcastSessionEvents && getNotifiedNodes(id).contains(nodeId))) {
log.info("Session " + id + " can't be found");
log.debug("Session " + id + " can't be found");
return null;
}

Loading…
Cancel
Save