Log when we set a tile to be placed on the board.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@438 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-11-07 18:03:33 +00:00
parent d23fa8e8a7
commit 674bfee950
@@ -1,5 +1,5 @@
//
// $Id: AtlantiBoard.java,v 1.13 2001/10/18 23:11:24 mdb Exp $
// $Id: AtlantiBoard.java,v 1.14 2001/11/07 18:03:33 mdb Exp $
package com.threerings.venison;
@@ -214,6 +214,8 @@ public class VenisonBoard
*/
public void setTileToBePlaced (VenisonTile tile)
{
Log.info("Setting tile to be placed [tile=" + tile + "].");
// make a copy of this tile so that we can play with it
_placingTile = (VenisonTile)tile.clone();;