From c2faa783d76cc8964e75c7f0c41e00a79256e44e Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 14 Feb 2010 02:15:23 +0100 Subject: [PATCH] play_random_game(): Show ILLEGAL warning with much lower debug level too --- playout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playout.c b/playout.c index 3829955..e1578f7 100644 --- a/playout.c +++ b/playout.c @@ -49,7 +49,7 @@ play_random: struct move m; m.coord = coord; m.color = color; if (board_play(b, &m) < 0) { - if (DEBUGL(8)) { + if (DEBUGL(4)) { fprintf(stderr, "Pre-picked move %d,%d is ILLEGAL:\n", coord_x(coord, b), coord_y(coord, b)); board_print(b, stderr); -- 2.11.4.GIT