diff --git a/checkin_notes b/checkin_notes index 08241fac73..66f6d06a35 100644 --- a/checkin_notes +++ b/checkin_notes @@ -2954,3 +2954,9 @@ David 19 Apr 2010 boinc_db.cpp sched/ credit.cpp + +David 19 Apr 2010 + - validator: message tweak + + sched/ + credit.cpp diff --git a/sched/credit.cpp b/sched/credit.cpp index c6fdbed701..922793029f 100644 --- a/sched/credit.cpp +++ b/sched/credit.cpp @@ -634,7 +634,7 @@ int get_pfc( if (config.debug_credit) { log_messages.printf(MSG_NORMAL, "[credit] [RESULT#%d] old client: raw credit %.2f\n", - pfc*COBBLESTONE_SCALE + r.id, pfc*COBBLESTONE_SCALE ); } bool do_scale = true; @@ -678,8 +678,8 @@ int get_pfc( double raw_pfc = (r.elapsed_time * r.flops_estimate); if (config.debug_credit) { log_messages.printf(MSG_NORMAL, - "[credit] [RESULT#%d] raw credit: %.2f\n", - r.id, raw_pfc*COBBLESTONE_SCALE + "[credit] [RESULT#%d] raw credit: %.2f (%.2f sec, %.2f est GFLOPS)\n", + r.id, raw_pfc*COBBLESTONE_SCALE, r.elapsed_time, r.flops_estimate ); }