mirror of https://github.com/BOINC/boinc.git
- client: in startup msgs, show resource shares, don't show prefs details
svn path=/trunk/boinc/; revision=19044
This commit is contained in:
parent
7ff65c111f
commit
31a19d1def
|
@ -7632,3 +7632,9 @@ Charlie 10 Sept 2009
|
|||
client_state.cpp
|
||||
lib/
|
||||
coproc.cpp
|
||||
|
||||
David 11 Sept 2009
|
||||
- client: in startup msgs, show resource shares, don't show prefs details
|
||||
|
||||
client/
|
||||
client_state.cpp
|
||||
|
|
|
@ -377,7 +377,7 @@ int CLIENT_STATE::init() {
|
|||
}
|
||||
|
||||
|
||||
// show host IDs and venues on various projects
|
||||
// show projects
|
||||
//
|
||||
for (i=0; i<projects.size(); i++) {
|
||||
p = projects[i];
|
||||
|
@ -387,10 +387,8 @@ int CLIENT_STATE::init() {
|
|||
strcpy(buf, "not assigned yet");
|
||||
}
|
||||
msg_printf(p, MSG_INFO,
|
||||
"URL: %s; Computer ID: %s; location: %s; project prefs: %s",
|
||||
p->master_url,
|
||||
buf, strlen(p->host_venue)?p->host_venue:"(none)",
|
||||
p->using_venue_specific_prefs?p->host_venue:"default"
|
||||
"URL %s; Computer ID %s; resource share %.0f",
|
||||
p->master_url, buf, p->resource_share
|
||||
);
|
||||
if (p->ended) {
|
||||
msg_printf(p, MSG_INFO, "Project has ended - OK to detach");
|
||||
|
|
Loading…
Reference in New Issue