Commit 011ea64096563eb958276cbbbd8e521c16526d4b

Con Kolivas 2013-03-07T12:42:44

Make stratum connection interrupted message higher priority to be visible at normal logging levels.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cgminer.c b/cgminer.c
index 88bb33a..d7f8439 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -4886,7 +4886,7 @@ static void *stratum_thread(void *userdata)
 		else
 			s = recv_line(pool);
 		if (!s) {
-			applog(LOG_INFO, "Stratum connection to pool %d interrupted", pool->pool_no);
+			applog(LOG_NOTICE, "Stratum connection to pool %d interrupted", pool->pool_no);
 			pool->getfail_occasions++;
 			total_go++;