Browse Source

Include temperature in thermal cutoff warning

Luke Dashjr 12 years ago
parent
commit
6fa0e6d25d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      miner.c

+ 2 - 2
miner.c

@@ -9956,8 +9956,8 @@ void bfg_watchdog(struct cgpu_info * const cgpu, struct timeval * const tvp_now)
 			else
 			if (cgpu->temp > cgpu->cutofftemp)
 			{
-				applog(LOG_WARNING, "%s hit thermal cutoff limit, disabling!",
-				       dev_str);
+				applog(LOG_WARNING, "%s hit thermal cutoff limit at %fC, disabling!",
+				       dev_str, cgpu->temp);
 				*denable = DEV_RECOVER;
 
 				dev_error(cgpu, REASON_DEV_THERMAL_CUTOFF);