Report failed moveTo requests in case no one else does.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@485 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-18 01:40:04 +00:00
parent bed0a2facb
commit aa5d97023f
@@ -1,5 +1,5 @@
// //
// $Id: LocationDirector.java,v 1.12 2001/10/12 00:03:02 mdb Exp $ // $Id: LocationDirector.java,v 1.13 2001/10/18 01:40:04 mdb Exp $
package com.threerings.crowd.client; package com.threerings.crowd.client;
@@ -255,6 +255,9 @@ public class LocationDirector
int placeId = _pendingPlaceId; int placeId = _pendingPlaceId;
_pendingPlaceId = -1; _pendingPlaceId = -1;
Log.info("moveTo failed [pid=" + placeId +
", reason=" + reason + "].");
// let our observers know that something has gone horribly awry // let our observers know that something has gone horribly awry
notifyFailure(placeId, reason); notifyFailure(placeId, reason);
} }