Report more useful information if an already in-play game is requested to

start.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1895 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-11-05 02:24:42 +00:00
parent fa206b76ed
commit 260c304fbe
@@ -1,5 +1,5 @@
//
// $Id: GameManager.java,v 1.53 2002/11/02 01:20:59 shaper Exp $
// $Id: GameManager.java,v 1.54 2002/11/05 02:24:42 mdb Exp $
package com.threerings.parlor.game;
@@ -455,7 +455,8 @@ public class GameManager extends PlaceManager
// complain if we're already started
if (_gameobj.state == GameObject.IN_PLAY) {
Log.warning("Requested to start an already in-play game " +
"[game=" + _gameobj + "].");
"[game=" + _gameobj.which() + "].");
Thread.dumpStack();
return false;
}