mirror of https://github.com/BOINC/boinc.git
client: show alt platforms in event log at startup. Fixes #1920.
This commit is contained in:
parent
06c3decb69
commit
e436be9574
|
@ -196,6 +196,11 @@ void CC_CONFIG::show() {
|
|||
if (dont_use_vbox) {
|
||||
msg_printf(NULL, MSG_INFO, "Config: don't use VirtualBox");
|
||||
}
|
||||
for (i=0; i<alt_platforms.size(); i++) {
|
||||
msg_printf(NULL, MSG_INFO,
|
||||
"Config: alternate platform: %s", alt_platforms[i].c_str()
|
||||
);
|
||||
}
|
||||
for (i=0; i<exclude_gpus.size(); i++) {
|
||||
show_exclude_gpu(exclude_gpus[i]);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue