Commit 8d99a449933f69d88cbe6deda729c861e4213455

Con Kolivas 2013-08-30T22:38:56

Show how small a too small result in bflsc is.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/driver-bflsc.c b/driver-bflsc.c
index e3ad394..f488972 100644
--- a/driver-bflsc.c
+++ b/driver-bflsc.c
@@ -1324,8 +1324,8 @@ static int process_results(struct cgpu_info *bflsc, int dev, char *pbuf, int *no
 
 	if (lines < QUE_RES_LINES_MIN) {
 		tmp = str_text(pbuf);
-		applog(LOG_ERR, "%s%i:%s result too small (%s) ignored",
-					bflsc->drv->name, bflsc->device_id, xlink, tmp);
+		applog(LOG_ERR, "%s%i:%s result of %d too small (%s) ignored",
+					bflsc->drv->name, bflsc->device_id, xlink, lines, tmp);
 		free(tmp);
 		goto arigatou;
 	}