From aa5d97023f9870c1d4e58523a58cff98921593da Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 18 Oct 2001 01:40:04 +0000 Subject: [PATCH] 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 --- src/java/com/threerings/crowd/client/LocationDirector.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/crowd/client/LocationDirector.java b/src/java/com/threerings/crowd/client/LocationDirector.java index 9294ead09..d5e70969f 100644 --- a/src/java/com/threerings/crowd/client/LocationDirector.java +++ b/src/java/com/threerings/crowd/client/LocationDirector.java @@ -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; @@ -255,6 +255,9 @@ public class LocationDirector int placeId = _pendingPlaceId; _pendingPlaceId = -1; + Log.info("moveTo failed [pid=" + placeId + + ", reason=" + reason + "]."); + // let our observers know that something has gone horribly awry notifyFailure(placeId, reason); }