mirror of https://github.com/BOINC/boinc.git
scheduler: add log message for beta-test pref, score-based case
This commit is contained in:
parent
9e580f32f8
commit
641099040e
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue