*** empty log message ***

svn path=/trunk/boinc/; revision=11953
This commit is contained in:
David Anderson 2007-01-24 20:39:50 +00:00
parent 2b3045ac49
commit 048073dcf2
3 changed files with 9 additions and 8 deletions

View File

@ -1077,3 +1077,10 @@ David 24 Jan 2007
app_control.C
py/Boinc/
setup_project.py
David 24 Jan 2007
- core client: tweak messages
client/
app_start.C
cs_apps.C

View File

@ -321,12 +321,12 @@ int ACTIVE_TASK::start(bool first_time) {
#endif
if (first_time && log_flags.task) {
msg_printf(0, MSG_INFO,
msg_printf(result->project, MSG_INFO,
"Starting %s", result->name
);
}
if (log_flags.cpu_sched) {
msg_printf(0, MSG_INFO,
msg_printf(result->project, MSG_INFO,
"[cpu_sched] Starting %s%s", result->name, first_time?" (initial)":"(resume)"
);
}

View File

@ -169,12 +169,6 @@ bool CLIENT_STATE::handle_finished_apps() {
"Computation for task %s finished", atp->result->name
);
}
if (log_flags.task_debug) {
msg_printf(0, MSG_INFO,
"[task_debug] CLIENT_STATE::handle_finished_apps(): task finished; pid %d, status %d\n",
atp->pid, atp->result->exit_status
);
}
app_finished(*atp);
active_tasks.remove(atp);
delete atp;