configured to
- Produce more detailed log messages.
These messages appear in the Messages tab of the BOINC Manager
(informational messages in black, error messages in red).
On Windows, they are written to a file (stdoutdae.txt).
On Unix, they are written to standard output.
- Control various behavioral parameters, such as how many
simultaneous file transfers to allow.
These options are useful primarily for testing and debugging.
The configuration is read from a file cc_config.xml.
If this file is absent, the default configuration is used.
This file has the following format:
".html_text("
[ flags ]
[ N ]
[ 0|1 ]
[ 0|1 ]
[ N ]
[ N ]
[ N ]
[ 0|1 ]
[ 0|1 ]
[ 0|1 ]
")."
For example, if you want to see messages about CPU scheduling,
use a text editor (such as Notepad) to create the following file,
and save it as cc_config.xml in your BOINC directory.
".html_text("
1
")."
Logging flags
The flags within <log_flags> are used to
selectively turn different types of messages on and off
(<tag>0</tag> for off, <tag>1</tag> for on):
The following messages are enabled by default:
";
list_start();
list_item_func("",
"The start and completion of compute jobs
(should get two messages per job)."
);
list_item_func("",
"The start and completion of file transfers."
);
list_item_func("",
"Connections with scheduling servers."
);
list_end();
echo "
The following messages are disabled by default
(typically they generate lots of output,
and are used for specific debugging purposes):
";
list_start();
list_item_func("",
"CPU scheduler actions (preemption and resumption)"
);
list_item_func("",
"Explain CPU scheduler decisions"
);
list_item_func("",
"Results of the round-robin simulation used by CPU scheduler and work-fetch"
);
list_item_func("",
"Changes to project debt"
);
list_item_func("",
"Low-level details of process start/end (status codes, PIDs etc.),
and when applications checkpoint."
);
list_item_func("",
"Work fetch policy decisions"
);
list_item_func("",
"Show any unparsed XML"
);
list_item_func("",
"Show summary of client state after scheduler RPC and garbage collection;
also show garbage collection actions, and when state file is read/written."
);
list_item_func("",
"Show completion status of file transfers"
);
list_item_func("",
"Details of scheduler RPCs"
);
list_item_func("",
"Debugging information about HTTP operations"
);
list_item_func("",
"Debugging information about HTTP proxy operations"
);
list_item_func("",
"Updates to on_frac, active_frac, connected_frac."
);
list_item_func("",
"Debugging information about network communication"
);
list_item_func("",
"Debugging information about CPU benchmarks (version 5.8+)"
);
list_item_func("",
"Show what poll functions do"
);
list_item_func("",
"Debugging information about GUI RPC operations"
);
list_item_func("",
"Debugging information about the screen saver."
);
list_item_func("",
"Shared-memory messages sent to applications."
);
list_item_func("",
"Shared-memory messages received fromapplications."
);
list_item_func("",
"Application memory usage."
);
list_item_func("",
"Network status (whether need physical connection)."
);
list_item_func("",
"Show when applications checkpoint (version 5.10+)"
);
list_end();
echo "
Behavioral parameters
The following options control the behavior of BOINC:
";
list_start();
list_item_func("",
"How many days to save the per-project credit totals
that are displayed in the Statistics tab of the BOINC Manager.
Default is 30."
);
list_item_func("",
"Normally, the size of application and input files
are compared with the project-supplied values
after the files are downloaded,
and just before starting an application.
If this flag is set, this check is skipped.
Use it if you need to modify files locally for some reason."
);
list_item_func("",
"Set this flag to use HTTP 1.0 instead of 1.1
(this may be needed with some proxies)."
);
list_item_func("",
"Act as if there were N CPUs: run N tasks at once.
This is for debugging, i.e. to simulate 2 CPUs
on a machine that has only 1.
Don't use it to limit the number of CPUs used by BOINC;
use general preferences instead."
);
list_item_func("",
"Maximum number of simultaneous file transfers (default 8)."
);
list_item_func("",
"Maximum number of simultaneous file transfers per project (default 2)."
);
list_item_func("suppress_net_info",
"If nonzero, don't send this host's IP address and domain name to servers.
Otherwise, this information is sent to, and stored on, servers.
It is visible to you (but not others) via the web.
Implemented on version 5.10+.
"
);
list_item_func("disallow_attach",
"If nonzero, the client won't attach to new projects.
Implemented on version 5.10+.
"
);
list_item_func("os_random_only",
"If nonzero, the client will use only OS-level functions
to generate a random GUI RPC password,
and will exit if these functions fail.
Otherwise, the client will fall back to a random-string generator
based on time of day, free disk space, and other host-specific information.
Implemented on version 5.10+.
"
);
list_end();
page_tail();
?>