logging.xml 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
  4. <!ENTITY mdash "&#x2014;" >
  5. ]>
  6. <!-- Note: Please use the following terminology:
  7. - daemon - one process (e.g. kea-dhcp4)
  8. - component - one piece of code within a daemon (e.g. libdhcp or hooks)
  9. - server - currently equal to daemon, but the difference will be more
  10. prominent once we add client or relay support
  11. - logger - one instance of isc::log::Logger
  12. - structure - an element in config file (e.g. "Dhcp4")
  13. Do not use:
  14. - module => daemon
  15. -->
  16. <chapter id="logging">
  17. <title>Logging</title>
  18. <section>
  19. <title>Logging Configuration</title>
  20. <para>
  21. During its operation Kea may produce many messages. They differ in
  22. severity (some are more important than others) and source (some are
  23. produced by specific components, e.g. hooks). It is useful to understand
  24. which log messages are needed and which are not and configure your
  25. logging appropriately. For example, debug level messages can be safely
  26. ignored in a typical deployment. They are, however, very useful when
  27. debugging a problem.
  28. </para>
  29. <para>
  30. The logging system in Kea is configured through the
  31. <replaceable>Logging</replaceable> structure in your configuration
  32. file. All daemons (e.g. DHCPv4 and DHCPv6 servers) will use the
  33. configuration in the <replaceable>Logging</replaceable> structure to see
  34. what should be logged and to where. This allows for sharing identical
  35. logging configuration between daemons.
  36. </para>
  37. <section>
  38. <title>Loggers</title>
  39. <para>
  40. Within Kea, a message is logged through an entity
  41. called a "logger". Different parts of the code log messages
  42. through different loggers, and each logger can be configured
  43. independently of one another. For example there are different
  44. components that deal with hooks ("hooks" logger) and with
  45. DHCP engine ("dhcpsrv" logger).
  46. </para>
  47. <para>
  48. In the Logging structure in a configuration file you can
  49. specify the configuration for zero or more loggers. If there are
  50. no loggers specified, the code will use default values which
  51. cause Kea to log messages on at least INFO severity to standard
  52. output.
  53. <!-- @todo: add reference to section about controlling default
  54. behavior with env. variables, after #3591 is merged. -->
  55. </para>
  56. <para>
  57. The three most important elements of a logger configuration
  58. are the <option>name</option> (the component that is
  59. generating the messages), the <option>severity</option>
  60. (what to log), and the <option>output_options</option>
  61. (where to log).
  62. </para>
  63. <section>
  64. <title>name (string)</title>
  65. <para>
  66. Each logger in the system has a name, the name being that of the
  67. component binary file using it to log messages. For instance, if you
  68. want to configure logging for the DHCPv4 server, you add an entry
  69. for a logger named <quote>kea-dhcp4</quote>. This configuration will
  70. then be used by the loggers in the DHCPv4 server, and all the
  71. libraries used by it (unless a library defines its own logger and
  72. there is specific logger configuration that applies to that logger).
  73. </para>
  74. <para>
  75. When diagnosing the problem with the server's operation it is often
  76. desired to use the DEBUG logging level to obtain the verbose output
  77. from the server and libraries it uses. However, high verbosity may
  78. be an overkill for the logging system in cases when the server
  79. is processing high volume traffic. To mitigate this problem, Kea
  80. is using multiple loggers, which can be configured independently
  81. and which are responsible for logging messages from different
  82. functional parts of the server. If the user, trying to diagnose the
  83. problem, has a reasonably high confidence that the problem origins
  84. in a specific function of the server, or the problem is related
  85. to the specific type of operation, he may enable high verbosity
  86. only for the relevant logger, thus limiting the debug messages
  87. to the required minimum.
  88. </para>
  89. <para>
  90. The loggers are associated with a particular library or binary
  91. of Kea. However, each library or binary may (and usually does)
  92. include multiple loggers. For example, the DHCPv4 server binary
  93. contains separate loggers for: packet parsing, for dropped packets,
  94. for callouts etc. Each logger "derives" its configuration from the
  95. root logger. In the typical case, the root logger configuration
  96. is the only logging configuration specified in the configuration
  97. file. Creating a specific configuration for the selected logger,
  98. thus overriding the configuration settings specified in the
  99. root logger configuration, requires putting its configuration
  100. aside of the root logger's configuration with some of the
  101. parameters modified.
  102. </para>
  103. <para>
  104. To illustrate this, suppose you are using the DHCPv4 server
  105. with the root logger <quote>kea-dhcp4</quote> logging at the
  106. INFO level. In order to enable DEBUG verbosity for the DHCPv4
  107. packet drops, you must create configuration entry for the
  108. logger called <quote>kea-dhcp4.bad_packet</quote> and specify
  109. severity DEBUG for this logger. All other configuration
  110. parameters may be omited for this logger if the logger should
  111. use the default values specified in the root logger's
  112. configuration.
  113. </para>
  114. <!-- we don't support asterisk anymore.
  115. <para>
  116. One special case is that of a component name of <quote>*</quote>
  117. (asterisks), which is interpreted as <emphasis>any</emphasis>
  118. component. You can set global logging options by using this,
  119. including setting the logging configuration for a library
  120. that is used by multiple daemons (e.g. <quote>*.config</quote>
  121. specifies the configuration library code in whatever
  122. daemon is using it).
  123. </para> -->
  124. <para>
  125. If there are multiple logger specifications in the configuration
  126. that might match a particular logger, the specification with the
  127. more specific logger name takes precedence. For example, if there
  128. are entries for both <quote>kea-dhcp4</quote> and
  129. <quote>kea-dhcp4.dhcpsrv</quote>, the DHCPv4 server &mdash; and all
  130. libraries it uses that are not dhcpsrv &mdash; will log messages
  131. according to the configuration in the first entry
  132. (<quote>kea-dhcp4</quote>).
  133. </para>
  134. <para>
  135. Currently defined loggers are:
  136. </para>
  137. <itemizedlist>
  138. <listitem>
  139. <simpara><command>kea-dhcp4</command> - this is the root logger for
  140. the DHCPv4 server. All components used by the DHCPv4 server inherit
  141. the settings from this logger if there is no specialized logger
  142. provided.</simpara>
  143. </listitem>
  144. <listitem>
  145. <simpara><command>kea-dhcp4.bad_packet</command> - this is the
  146. logger used by the DHCPv4 server deamon for logging inbound client
  147. packets that were dropped or to which the server responded with a
  148. DHCPNAK. The allows adminstrators to configure a separate log
  149. output that contains only packet drop and reject entries.</simpara>
  150. </listitem>
  151. <listitem>
  152. <simpara><command>kea-dhcp4.dhcp4</command> - this is the logger
  153. used solely by the DHCPv4 server deamon. This logger does not
  154. specify logging settings for libraries used by the deamon.</simpara>
  155. </listitem>
  156. <listitem>
  157. <simpara><command>kea-dhcp4.dhcpsrv</command> - this logger is used
  158. by the libdhcpsrv library. This covers mostly DHCP engine (the lease
  159. allocation and renewal process), database operations and
  160. configuration.</simpara>
  161. </listitem>
  162. <listitem>
  163. <simpara><command>kea-dhcp4.hooks</command> - this logger is used
  164. by the libkea-hooks library to log messages related to the execution
  165. of callouts for various hook points. This logger doesn't log messages
  166. pertaining to actions on the server, being the result of the
  167. callout execution, e.g. skipping packet parsing by the server
  168. because the callout has indicated that it has parsed the packet
  169. already.</simpara>
  170. </listitem>
  171. <listitem>
  172. <simpara><command>kea-dhcp4.ddns</command> - this logger is
  173. used by the DHCPv4 server to log messages related to the Client
  174. FQDN and Hostname option processing. It also includes log messages
  175. related to the relevant DNS updates.</simpara>
  176. </listitem>
  177. <listitem>
  178. <simpara><command>kea-dhcp4.hosts</command> - this logger is used
  179. within the libdhcpsrv and it logs messages related to the management
  180. of the DHCPv4 host reservations, i.e. retrieval of the resevations
  181. and adding new reservations.</simpara>
  182. </listitem>
  183. <listitem>
  184. <simpara><command>kea-dhcp4.leases</command> - this logger is used
  185. by the DHCPv4 server to log messages related to the lease allocation.
  186. The messages include detailed information about the allocated or
  187. offered leases, errors during the lease allocation etc.
  188. </simpara>
  189. </listitem>
  190. <listitem>
  191. <simpara><command>kea-dhcp4.options</command> - this logger is
  192. used by the DHCPv4 server to log messages related to processing
  193. of the options in the DHCPv4 messages, i.e. parsing options,
  194. encoding options into on-wire format and packet classification
  195. using options contained in the received packets.</simpara>
  196. </listitem>
  197. <listitem>
  198. <simpara><command>kea-dhcp4.packets</command> - this logger
  199. is mostly used to log messages related to transmission of the DHCPv4
  200. packets, i.e. packet reception and sending a response. Such messages
  201. include the information about the source and destination IP addresses
  202. and interfaces used to transmit packets. This logger is also used
  203. to log messages related to subnet selection, as this selection is
  204. usually based on the IP addresses and/or interface names, which can
  205. be retrieved from the received packet, even before the DHCPv4 message
  206. carried in the packet is parsed.
  207. </simpara>
  208. </listitem>
  209. <listitem>
  210. <simpara><command>kea-dhcp4.server-hooks</command> - this logger is
  211. used by the DHCPv4 server to log messages pertaining to the
  212. preparations for the callouts execution by the server and to the
  213. actions taken by the server as a result of the callouts execution.
  214. Note that it is a different logger than the
  215. <command>kea-dhcp4.hooks</command> logger.
  216. </simpara>
  217. </listitem>
  218. <listitem>
  219. <simpara><command>kea-dhcp6</command> - this is the root logger for
  220. the DHCPv6 server. All components used by the DHCPv6 server inherit
  221. the settings from this logger if there is no specialized logger
  222. provided.</simpara>
  223. </listitem>
  224. <listitem>
  225. <simpara><command>kea-dhcp6.dhcp6</command> - this is the logger
  226. used solely by the DHCPv6 server deamon. This logger does not
  227. specify logging settings for libraries used by the daemon.</simpara>
  228. </listitem>
  229. <listitem>
  230. <simpara><command>kea-dhcp6.dhcpsrv</command> - this logger is used
  231. by the libdhcpsrv library. This covers mostly DHCP engine (the lease
  232. allocation and renewal process), database operations and
  233. configuration.</simpara>
  234. </listitem>
  235. <listitem>
  236. <simpara><command>kea-dhcp6.hooks</command> - this logger is used
  237. by the hooks framework to log messages related to the execution of
  238. callouts for various hook points. This logger doesn't log messages
  239. which pertain to actions on the server side being the result of
  240. the callout execution, e.g. skipping packet parsing by the server
  241. because the callout has indicated that it has parsed the packet
  242. already.</simpara>
  243. </listitem>
  244. <listitem>
  245. <simpara><command>kea-dhcp6.hosts</command> - this logger is used
  246. within the libdhcpsrv and it logs messages related to the management
  247. of the DHCPv6 host reservations, i.e. retrieval of the resevations
  248. and adding new reservations.</simpara>
  249. </listitem>
  250. <listitem>
  251. <simpara><command>kea-dhcp-ddns</command> - this is the root logger for
  252. the kea-dhcp-ddns deamon. All components used by this deamon inherit
  253. the settings from this logger if there is no specialized logger
  254. provided.</simpara>
  255. </listitem>
  256. <listitem>
  257. <simpara><command>kea-dhcp-ddns.dhcpddns</command> - this is the logger
  258. used solely by the kea-dhcp-ddns deamon. This logger does not
  259. specify logging settings for libraries used by the deamon.</simpara>
  260. </listitem>
  261. </itemizedlist>
  262. <para>Additional loggers may be defined in the future. The easiest
  263. way to find out the logger name is to configure all logging to go
  264. to a single destination and look for specific logger names. See
  265. <xref linkend="logging-message-format"/> for details.</para>
  266. </section>
  267. <section>
  268. <title>severity (string)</title>
  269. <para>
  270. This specifies the category of messages logged.
  271. Each message is logged with an associated severity which
  272. may be one of the following (in descending order of
  273. severity):
  274. </para>
  275. <itemizedlist>
  276. <listitem>
  277. <simpara> FATAL </simpara>
  278. </listitem>
  279. <listitem>
  280. <simpara> ERROR </simpara>
  281. </listitem>
  282. <listitem>
  283. <simpara> WARN </simpara>
  284. </listitem>
  285. <listitem>
  286. <simpara> INFO </simpara>
  287. </listitem>
  288. <listitem>
  289. <simpara> DEBUG </simpara>
  290. </listitem>
  291. </itemizedlist>
  292. <para>
  293. When the severity of a logger is set to one of these
  294. values, it will only log messages of that severity, and
  295. the severities above it. The severity may also be set to
  296. NONE, in which case all messages from that logger are
  297. inhibited.
  298. <!-- TODO: worded wrong? If I set to INFO, why would it show DEBUG which is literally below in that list? -->
  299. </para>
  300. </section>
  301. <section>
  302. <title>output_options (list)</title>
  303. <para>
  304. Each logger can have zero or more
  305. <option>output_options</option>. These specify where log
  306. messages are sent. These are explained in detail below.
  307. </para>
  308. <para>
  309. The other options for a logger are:
  310. </para>
  311. </section>
  312. <section>
  313. <title>debuglevel (integer)</title>
  314. <para>
  315. When a logger's severity is set to DEBUG, this value
  316. specifies what debug messages should be printed. It ranges
  317. from 0 (least verbose) to 99 (most verbose).
  318. </para>
  319. <!-- TODO: complete this sentence:
  320. The general classification of debug message types is
  321. TODO; there's a ticket to determine these levels, see #1074
  322. -->
  323. <para>
  324. If severity for the logger is not DEBUG, this value is ignored.
  325. </para>
  326. </section>
  327. </section>
  328. <section>
  329. <title>Output Options</title>
  330. <para>
  331. The main settings for an output option are the
  332. <option>destination</option> and a value called
  333. <option>output</option>, the meaning of which depends on
  334. the destination that is set.
  335. </para>
  336. <section>
  337. <title>destination (string)</title>
  338. <para>
  339. The destination is the type of output. It can be one of:
  340. </para>
  341. <itemizedlist>
  342. <listitem>
  343. <simpara> console </simpara>
  344. </listitem>
  345. <listitem>
  346. <simpara> file </simpara>
  347. </listitem>
  348. <listitem>
  349. <simpara> syslog </simpara>
  350. </listitem>
  351. </itemizedlist>
  352. </section>
  353. <section>
  354. <title>output (string)</title>
  355. <para>
  356. This value determines the type of output. There are several
  357. special values allowed here: <command>stdout</command> (messages
  358. are printed on standard output), <command>stderr</command>
  359. (messages are printed on stderr), <command>syslog</command> (messages
  360. are logged to syslog using default name, <command>syslog:name</command>
  361. (messages are logged to syslog using specified name). Any other
  362. value is interpreted as a filename that the logs should be written to.
  363. </para>
  364. <para>
  365. The other options for <option>output_options</option> are:
  366. </para>
  367. <!-- configuration of flush is not supported yet.
  368. <section>
  369. <title>flush (true of false)</title>
  370. <para>
  371. Flush buffers after each log message. Doing this will
  372. reduce performance but will ensure that if the program
  373. terminates abnormally, all messages up to the point of
  374. termination are output.
  375. </para>
  376. </section> -->
  377. <section>
  378. <title>maxsize (integer)</title>
  379. <para>
  380. Only relevant when destination is file, this is maximum
  381. file size of output files in bytes. When the maximum
  382. size is reached, the file is renamed and a new file opened.
  383. (For example, a ".1" is appended to the name &mdash;
  384. if a ".1" file exists, it is renamed ".2",
  385. etc.)
  386. </para>
  387. <para>
  388. If this is 0, no maximum file size is used.
  389. </para>
  390. <note>
  391. <simpara>
  392. Due to a limitation of the underlying logging library
  393. (log4cplus), rolling over the log files (from ".1" to
  394. ".2", etc) may show odd results: There can be
  395. multiple small files at the timing of roll over. This
  396. can happen when multiple processes try to roll
  397. over the files simultaneously.
  398. Version 1.1.0 of log4cplus solved this problem, so if
  399. this or higher version of log4cplus is used to build
  400. Kea, it shouldn't happen. Even for older versions
  401. it is normally expected to happen rarely unless the log
  402. messages are produced very frequently by multiple
  403. different processes.
  404. </simpara>
  405. </note>
  406. </section>
  407. <section>
  408. <title>maxver (integer)</title>
  409. <para>
  410. Maximum number of old log files to keep around when
  411. rolling the output file. Only relevant when
  412. <option>output</option> is <quote>file</quote>.
  413. </para>
  414. </section>
  415. </section>
  416. </section>
  417. <section>
  418. <title>Example Logger Configurations</title>
  419. <para>
  420. In this example we want to set the global logging to
  421. write to the console using standard output.
  422. </para>
  423. <screen><userinput>
  424. "Logging": {
  425. "loggers": [
  426. {
  427. "name": "kea-dhcp4",
  428. "output_options": [
  429. {
  430. "output": "stdout"
  431. }
  432. ],
  433. "severity": "WARN"
  434. }
  435. ]
  436. }
  437. </userinput>
  438. </screen>
  439. <para>In this second example, we want to store debug log messages
  440. in a file that is at most 2MB and keep up to 8 copies of old logfiles.
  441. Once the logfile grows to 2MB, it will be renamed and a new file
  442. file be created.</para>
  443. <screen><userinput>
  444. "Logging": {
  445. "loggers": [
  446. {
  447. "name": "kea-dhcp6",
  448. "output_options": [
  449. {
  450. "output": "/var/log/kea-debug.log",
  451. "maxver": 8,
  452. "maxsize": 204800,
  453. "destination": "file"
  454. }
  455. ],
  456. "severity": "DEBUG",
  457. "debuglevel": 99
  458. }
  459. ]
  460. }</userinput></screen>
  461. </section>
  462. </section>
  463. <section id="logging-message-format">
  464. <title>Logging Message Format</title>
  465. <para>
  466. Each message written to the configured logging
  467. destinations comprises a number of components that identify
  468. the origin of the message and, if the message indicates
  469. a problem, information about the problem that may be
  470. useful in fixing it.
  471. </para>
  472. <para>
  473. Consider the message below logged to a file:
  474. <screen>2014-04-11 12:58:01.005 INFO [kea-dhcp4.dhcpsrv/27456]
  475. DHCPSRV_MEMFILE_DB opening memory file lease database: type=memfile universe=4</screen>
  476. </para>
  477. <para>
  478. Note: the layout of messages written to the system logging
  479. file (syslog) may be slightly different. This message has
  480. been split across two lines here for display reasons; in the
  481. logging file, it will appear on one line.
  482. </para>
  483. <para>
  484. The log message comprises a number of components:
  485. <variablelist>
  486. <varlistentry>
  487. <term>2014-04-11 12:58:01.005</term>
  488. <!-- TODO: timestamp repeated even if using syslog? -->
  489. <listitem><para>
  490. The date and time at which the message was generated.
  491. </para></listitem>
  492. </varlistentry>
  493. <varlistentry>
  494. <term>INFO</term>
  495. <listitem><para>
  496. The severity of the message.
  497. </para></listitem>
  498. </varlistentry>
  499. <varlistentry>
  500. <term>[kea-dhcp4.dhcpsrv/27456]</term>
  501. <listitem><para>
  502. The source of the message. This comprises two elements:
  503. the Kea process generating the message (in this
  504. case, <command>kea-dhcp4</command>) and the component
  505. within the program from which the message originated
  506. (which is the name of the common library used by DHCP server
  507. implementations). The number after the slash is a process id
  508. (pid).
  509. </para></listitem>
  510. </varlistentry>
  511. <varlistentry>
  512. <term>DHCPSRV_MEMFILE_DB</term>
  513. <listitem><para>
  514. The message identification. Every message in Kea
  515. has a unique identification, which can be used as an
  516. index into the <ulink
  517. url="kea-messages.html"><citetitle>Kea Messages
  518. Manual</citetitle></ulink> (<ulink
  519. url="http://kea.isc.org/docs/kea-messages.html"
  520. />) from which more information can be obtained.
  521. </para></listitem>
  522. </varlistentry>
  523. <varlistentry>
  524. <term>opening memory file lease database: type=memfile universe=4</term>
  525. <listitem><para>
  526. A brief description.
  527. Within this text, information relating to the condition
  528. that caused the message to be logged will be included.
  529. In this example, the information is logged that the in-memory
  530. lease database backend will be used to store DHCP leases.
  531. </para></listitem>
  532. </varlistentry>
  533. </variablelist>
  534. </para>
  535. </section>
  536. <section>
  537. <title>Logging During Kea Startup</title>
  538. <para>
  539. The logging configuration is specified in the configuration file.
  540. However, when Kea starts, the file is not read until some way into the
  541. initialization process. Prior to that, the logging settings are
  542. set to default values, although it is possible to modify some
  543. aspects of the settings by means of environment variables. Note
  544. that in the absence of any logging configuration in the configuration
  545. file, the settings of (possibly modified) default configuration will
  546. persist while the program is running.
  547. </para>
  548. <para>
  549. The following environment variables can be used to control the
  550. behavio of logging during startup:
  551. </para>
  552. <variablelist>
  553. <varlistentry>
  554. <term>KEA_LOCKFILE_DIR</term>
  555. <listitem><para>
  556. Specifies a directory where the logging system should create its
  557. lock file. If not specified, it is
  558. <replaceable>prefix</replaceable>/var/run/kea, where
  559. <replaceable>prefix</replaceable> defaults to /usr/local.
  560. This variable must not end
  561. with a slash. There is one special value: "none", which
  562. instructs Kea to not create lock file at all. This may cause
  563. issues if several processes log to the same file.
  564. </para></listitem>
  565. </varlistentry>
  566. <varlistentry>
  567. <term>KEA_LOGGER_DESTINATION</term>
  568. <listitem><para>
  569. Specifies logging output. There are several special values.
  570. <variablelist>
  571. <varlistentry>
  572. <term>stdout</term>
  573. <listitem><para>
  574. Log to standard output.
  575. </para></listitem>
  576. </varlistentry>
  577. <varlistentry>
  578. <term>stderr</term>
  579. <listitem><para>
  580. Log to standard error.
  581. </para></listitem>
  582. </varlistentry>
  583. <varlistentry>
  584. <term>syslog<optional>:<replaceable>fac</replaceable></optional></term>
  585. <listitem><para>
  586. Log via syslog. The optional
  587. <replaceable>fac</replaceable> (which is
  588. separated from the word "syslog" by a colon)
  589. specifies the
  590. facility to be used for the log messages. Unless
  591. specified, messages will be logged using the
  592. facility "local0".
  593. </para></listitem>
  594. </varlistentry>
  595. </variablelist>
  596. Any other value is treated as a name
  597. of the output file. If not specified otherwise, Kea will log to
  598. standard output.
  599. </para></listitem>
  600. </varlistentry>
  601. </variablelist>
  602. </section>
  603. </chapter>