remove logging

This commit is contained in:
Eric House 2014-02-27 21:44:25 -08:00
parent 5274a803b2
commit 39983f65b6
2 changed files with 0 additions and 2 deletions

View file

@ -709,7 +709,6 @@ board_canHideRack( const BoardCtxt* board )
{
XP_Bool result = 0 <= server_getCurrentTurn( board->server )
&& (board->boardObscuresTray || !board->gameOver);
LOG_RETURNF( "%d", result );
return result;
}

View file

@ -830,7 +830,6 @@ model_canUndo( const ModelCtxt* model )
/* More than just tile assignment? */
XP_Bool result = nStackEntries > model->nPlayers;
LOG_RETURNF( "%d", result );
return result;
}