diff --git a/xwords4/common/board.c b/xwords4/common/board.c index 7c7d6d18f..352f201b1 100644 --- a/xwords4/common/board.c +++ b/xwords4/common/board.c @@ -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; } diff --git a/xwords4/common/model.c b/xwords4/common/model.c index bedaefa22..ec5e4e07c 100644 --- a/xwords4/common/model.c +++ b/xwords4/common/model.c @@ -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; }