Now that the PresentsSession reports its authname type, we can skip it in a few

of these places.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5656 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2009-02-13 03:08:16 +00:00
parent 1f6f8edeb9
commit f75d810a92
@@ -479,13 +479,13 @@ public class ClientManager
// sanity check just because we can
if (rc == null) {
log.info("Ending session: unregistered!", "type", type, "session", session);
log.info("Ending session: unregistered!", "session", session);
} else if (rc != session) {
log.info("Ending session: multiple!", "type", type, "s1", rc, "s2", session);
log.info("Ending session: multiple!", "s1", rc, "s2", session);
} else {
log.info("Ending session", "type", type, "session", session);
log.info("Ending session", "session", session);
}
// notify the observers that the session is ended
@@ -518,7 +518,7 @@ public class ClientManager
// now end their sessions
for (PresentsSession client : victims) {
try {
log.info("Client expired, ending session [client=" + client +
log.info("Client expired, ending session [session=" + client +
", dtime=" + (now-client.getNetworkStamp()) + "ms].");
client.endSession();
} catch (Exception e) {