remove excess logging

This commit is contained in:
Andy2 2010-07-07 06:50:47 -07:00
parent 07940099ed
commit c98451c62a
2 changed files with 8 additions and 8 deletions

View file

@ -1144,11 +1144,11 @@ saveMoveIfQualifies( EngineCtxt* engine, PossibleMove* posmove )
/* we're not interested if we've seen this */
cmpVal = CMPMOVES( posmove, &engine->miData.lastSeenMove );
if ( !usePrev && cmpVal >= 0 ) {
XP_LOGF( "%s: dropping %d: higher than %d", __func__,
posmove->score, engine->miData.lastSeenMove.score );
/* XP_LOGF( "%s: dropping %d: higher than %d", __func__, */
/* posmove->score, engine->miData.lastSeenMove.score ); */
} else if ( usePrev && cmpVal <= 0 ) {
XP_LOGF( "%s: dropping %d: lower than %d", __func__,
posmove->score, engine->miData.lastSeenMove.score );
/* XP_LOGF( "%s: dropping %d: lower than %d", __func__, */
/* posmove->score, engine->miData.lastSeenMove.score ); */
} else {
XP_S16 ii;
/* terminate i at 1 because mostest starts at 0 */
@ -1204,9 +1204,9 @@ saveMoveIfQualifies( EngineCtxt* engine, PossibleMove* posmove )
break;
}
}
XP_LOGF( "saving move with score %d at %d (replacing %d)\n",
posmove->score, mostest,
engine->miData.savedMoves[mostest].score );
/* XP_LOGF( "saving move with score %d at %d (replacing %d)\n", */
/* posmove->score, mostest, */
/* engine->miData.savedMoves[mostest].score ); */
XP_MEMCPY( &engine->miData.savedMoves[mostest], posmove,
sizeof(engine->miData.savedMoves[mostest]) );
break;

View file

@ -1080,7 +1080,7 @@ model_moveBoardToTray( ModelCtxt* model, XP_S16 turn,
player->pendingTiles[player->nPending] = tmpPending;
++player->nUndone;
XP_LOGF( "%s: nUndone(%d): %d", __func__, turn, player->nUndone );
//XP_LOGF( "%s: nUndone(%d): %d", __func__, turn, player->nUndone );
if ( player->nPending == 0 ) {
invalLastMove( model );