*** empty log message ***

svn path=/trunk/boinc/; revision=4682
This commit is contained in:
Jeff Cobb 2004-11-30 00:08:11 +00:00
parent 92e9c8a6b6
commit 9d9cc9669c
2 changed files with 12 additions and 0 deletions

View File

@ -20349,3 +20349,9 @@ David 29 Nov 2004
sched/
assimilator.C
handle_request.C
Jeff 29 Nov 2004
- Log the number of WUs assimlated at the end of each WU enumeration.
sched/
assimilator.C

View File

@ -58,6 +58,7 @@ bool do_pass(APP& app) {
bool did_something = false;
char buf[256];
int retval;
int num_assimilated=0;
check_stop_daemons();
@ -102,6 +103,11 @@ bool do_pass(APP& app) {
if (did_something) {
boinc_db.commit_transaction();
}
log_messages.printf(SCHED_MSG_LOG::NORMAL,
"Assimilated %d workunits.\n", num_assimilated
);
return did_something;
}