Add debugging to hfa driver for how many jobs are being sent.
diff --git a/driver-hashfast.c b/driver-hashfast.c
index d5924a5..2f0c076 100644
--- a/driver-hashfast.c
+++ b/driver-hashfast.c
@@ -831,6 +831,11 @@ restart:
jobs = hfa_jobs(info);
}
+ if (jobs) {
+ applog(LOG_DEBUG, "HFA %d: Sending %d new jobs", hashfast->device_id,
+ jobs);
+ }
+
while (jobs-- > 0) {
struct hf_hash_usb op_hash_data;
struct work *work;