- client: removed extra msgs

svn path=/trunk/boinc/; revision=19142
This commit is contained in:
David Anderson 2009-09-23 16:15:04 +00:00
parent 5d1ff3ab39
commit 0767636c2d
2 changed files with 6 additions and 12 deletions

View File

@ -7985,3 +7985,9 @@ David 22 Sept 2009
client/
cpu_sched.cpp
David 23 Sept 2009
- client: removed extra msgs
client/
cpu_sched.cpp

View File

@ -325,12 +325,6 @@ RESULT* first_coproc_result() {
if (rp->project->non_cpu_intensive) continue;
if (rp->already_selected) continue;
if (!rp->uses_coprocs()) continue;
if (log_flags.cpu_sched_debug) {
msg_printf(0, MSG_INFO,
"[cpu_sched_debug] first coproc res: %s started %d recv %f",
rp->name, rp->not_started()?0:1, rp->received_time
);
}
if (!best) {
best = rp;
continue;
@ -354,12 +348,6 @@ RESULT* first_coproc_result() {
}
}
}
if (log_flags.cpu_sched_debug) {
msg_printf(0, MSG_INFO,
"[cpu_sched_debug] first coproc res: returning %s",
best->name
);
}
return best;
}