diff --git a/checkin_notes b/checkin_notes index 0a9513d506..b443674f83 100755 --- a/checkin_notes +++ b/checkin_notes @@ -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 diff --git a/client/app_start.C b/client/app_start.C index 53c0e824f0..ed518fa1eb 100644 --- a/client/app_start.C +++ b/client/app_start.C @@ -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)" ); } diff --git a/client/cs_apps.C b/client/cs_apps.C index 206784e56a..85aee35121 100644 --- a/client/cs_apps.C +++ b/client/cs_apps.C @@ -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;