mirror of https://github.com/BOINC/boinc.git
80 lines
2.3 KiB
PHP
80 lines
2.3 KiB
PHP
|
<?php
|
||
|
require_once("docutil.php");
|
||
|
page_head("Controlling message from the core client");
|
||
|
echo "
|
||
|
The core client generates messages:
|
||
|
informational messages saying what it's doing,
|
||
|
and error messages when it encounters problems.
|
||
|
If you run the BOINC manager, these appear in the Messages tab -
|
||
|
informational messages in black, error messages in red.
|
||
|
On Unix, informational messages are written to standard output,
|
||
|
and error messages are written to standard error.
|
||
|
<p>
|
||
|
addition, the core client can write a variety of 'logging' messages.
|
||
|
The logging options are read from a file
|
||
|
<b>log_flags.xml</b>.
|
||
|
This file has the following format:
|
||
|
".html_text("
|
||
|
<log_flags>
|
||
|
[ flags ]
|
||
|
</log_flags>
|
||
|
")."
|
||
|
The flags are as follows:
|
||
|
";
|
||
|
list_start();
|
||
|
list_item_func("<task/>",
|
||
|
"Log the start, restart and completion of computational tasks."
|
||
|
);
|
||
|
list_item_func("<file_xfer/>",
|
||
|
" Log the start, restart and completion of file transfers. "
|
||
|
);
|
||
|
list_item_func("<sched_ops/>",
|
||
|
" Log connections with scheduling servers. "
|
||
|
);
|
||
|
list_item_func("<state_debug/>",
|
||
|
" Log changes to the 'client state' data structures. "
|
||
|
);
|
||
|
list_item_func("<task_debug/>",
|
||
|
" Log debugging information about task execution. "
|
||
|
);
|
||
|
list_item_func("<file_xfer_debug/>",
|
||
|
" Log debugging information about file transfers. "
|
||
|
);
|
||
|
list_item_func("<sched_op_debug/>",
|
||
|
" Log the request and reply messages of exchanges with scheduling servers. "
|
||
|
);
|
||
|
list_item_func("<http_debug/>",
|
||
|
" Log debugging information about HTTP operations. "
|
||
|
);
|
||
|
list_item_func("<proxy_debug/>",
|
||
|
" Log debugging information about HTTP proxy operations. "
|
||
|
);
|
||
|
list_item_func("<time_debug/>",
|
||
|
" Log the passage of time. "
|
||
|
);
|
||
|
list_item_func("<net_xfer_debug/>",
|
||
|
" Log debugging information about network communication. "
|
||
|
);
|
||
|
list_item_func("<measurement_debug/>",
|
||
|
" Log debugging information about measurements of CPU speed, platform, disk space, etc. "
|
||
|
);
|
||
|
list_item_func("<poll_debug/>",
|
||
|
" Show what poll functions do"
|
||
|
);
|
||
|
list_item_func("<guirpc_debug/>",
|
||
|
" Log debugging information about the GUI RPC interface. "
|
||
|
);
|
||
|
list_item_func("<sched_cpu_debug/>",
|
||
|
" Log debugging information about the CPU scheduler. "
|
||
|
);
|
||
|
list_item_func("<scrsave_debug/>",
|
||
|
" Log debugging information about the screen saver. "
|
||
|
);
|
||
|
list_item_func("<dont_check_file_sizes/>",
|
||
|
" Don't check file sizes"
|
||
|
);
|
||
|
list_end();
|
||
|
|
||
|
page_tail();
|
||
|
?>
|