scheduler: add log message for beta-test pref, score-based case

This commit is contained in:
David Anderson 2014-05-12 10:21:28 -07:00
parent 9e580f32f8
commit 641099040e
1 changed files with 6 additions and 0 deletions

View File

@ -67,6 +67,12 @@ bool JOB::get_score(WU_RESULT& wu_result) {
if (g_wreq->allow_beta_work) { if (g_wreq->allow_beta_work) {
score += 1; score += 1;
} else { } else {
if (config.debug_send) {
log_messages.printf(MSG_NORMAL,
"[send] can't send job %d for beta app to non-beta user\n",
wu_result.workunit.id
);
}
return false; return false;
} }
} }