mirror of https://github.com/BOINC/boinc.git
- validator: remove spurious messages
svn path=/trunk/boinc/; revision=23855
This commit is contained in:
parent
4d261afbe6
commit
d1be15b9fb
|
@ -4176,3 +4176,9 @@ David 18 July 2011
|
|||
|
||||
html/user/
|
||||
forum_user_posts.php
|
||||
|
||||
David 19 July 2011
|
||||
- validator: remove spurious messages
|
||||
|
||||
sched/
|
||||
credit.cpp
|
||||
|
|
|
@ -820,19 +820,9 @@ int write_modified_app_versions(vector<DB_APP_VERSION>& app_versions) {
|
|||
int retval = 0;
|
||||
double now = dtime();
|
||||
|
||||
if (config.debug_credit && app_versions.size()) {
|
||||
log_messages.printf(MSG_NORMAL,
|
||||
"[credit] start write_modified_app_versions()\n"
|
||||
);
|
||||
}
|
||||
for (i=0; i<app_versions.size(); i++) {
|
||||
DB_APP_VERSION& av = app_versions[i];
|
||||
if (av.pfc_samples.empty() && av.credit_samples.empty()) {
|
||||
if (config.debug_credit) {
|
||||
log_messages.printf(MSG_NORMAL,
|
||||
"[credit] skipping app version %d - no change\n", av.id
|
||||
);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
for (int k=0; k<10; k++) {
|
||||
|
|
Loading…
Reference in New Issue