Added a toString() to our scene loading unit.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2813 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-09-25 00:26:16 +00:00
parent 73373b8844
commit c1c3285b96
@@ -1,5 +1,5 @@
//
// $Id: SceneRegistry.java,v 1.19 2003/09/22 23:57:20 mdb Exp $
// $Id: SceneRegistry.java,v 1.20 2003/09/25 00:26:16 mdb Exp $
package com.threerings.whirled.server;
@@ -195,6 +195,13 @@ public class SceneRegistry
}
}
public String toString ()
{
return "SceneRegistry.SceneLoader " +
(_model == null ? "" : _model.name) +
"(" + fsceneId + ")";
}
protected SceneModel _model;
protected UpdateList _updates;
protected Exception _cause;