mirror of https://github.com/BOINC/boinc.git
47 lines
1.5 KiB
HTML
47 lines
1.5 KiB
HTML
<title>Core client: debugging</title>
|
|
<body bgcolor=ffffff>
|
|
<h2>Core client: debugging</h2>
|
|
<h3>Logging and error output</h3>
|
|
<p>
|
|
The core client writes error messages to stderr.
|
|
This mechanism is reserved for serious problems,
|
|
i.e. those that reflect bugs in the core
|
|
client program or conditions that require user intervention.
|
|
<p>
|
|
In addition, the core client can write a variety of "logging"
|
|
information to stdout.
|
|
The logging options are read from a file
|
|
<b>log_flags.xml</b>.
|
|
This file has the following format:
|
|
<pre>
|
|
<log_flags>
|
|
[ flags ]
|
|
</log_flags>
|
|
</pre>
|
|
The flags are as follows:
|
|
<dl>
|
|
<dt> <task/>
|
|
<dd> Log the start, restart and completion of computational tasks.
|
|
<dt> <file_xfer/>
|
|
<dd> Log the start, restart and completion of file transfers.
|
|
<dt> <sched_ops/>
|
|
<dd> Log connections with scheduling servers.
|
|
<dt> <state_debug/>
|
|
<dd> Log changes to the "client state" data structures.
|
|
<dt> <task_debug/>
|
|
<dd> Log debugging information about task execution.
|
|
<dt> <file_xfer_debug/>
|
|
<dd> Log debugging information about file transfers.
|
|
<dt> <sched_op_debug/>
|
|
<dd> Log the request and reply messages of exchanges with scheduling
|
|
servers.
|
|
<dt> <time_debug/>
|
|
<dd> Log the passage of time.
|
|
<dt> <http_debug/>
|
|
<dd> Log debugging information about HTTP operations.
|
|
<dt> <net_xfer_debug/>
|
|
<dd> Log debugging information about network communication.
|
|
<dt> <measurement_debug/>
|
|
<dd> Log debugging information host speed, platform, disk space, etc measurements.
|
|
</dl>
|