Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / src / nas,5.n2.os.2 / lib / python / html / python / lib / module-logging.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="STYLESHEET" href="lib.css" type='text/css' />
<link rel="SHORTCUT ICON" href="../icons/pyfav.png" type="image/png" />
<link rel='start' href='../index.html' title='Python Documentation Index' />
<link rel="first" href="lib.html" title='Python Library Reference' />
<link rel='contents' href='contents.html' title="Contents" />
<link rel='index' href='genindex.html' title='Index' />
<link rel='last' href='about.html' title='About this document...' />
<link rel='help' href='about.html' title='About this document...' />
<link rel="next" href="module-platform.html" />
<link rel="prev" href="module-gettext.html" />
<link rel="parent" href="allos.html" />
<link rel="next" href="node341.html" />
<meta name='aesop' content='information' />
<title>6.29 logging -- Logging facility for Python</title>
</head>
<body>
<DIV CLASS="navigation">
<div id='top-navigation-panel' xml:id='top-navigation-panel'>
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="6.28.4 Acknowledgements"
href="node339.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="6. Generic Operating System"
href="allos.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="6.29.1 Logger Objects"
href="node341.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="node339.html">6.28.4 Acknowledgements</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="allos.html">6. Generic Operating System</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="node341.html">6.29.1 Logger Objects</A>
</div>
<hr /></div>
</DIV>
<!--End of Navigation Panel-->
<H1><A NAME="SECTION0082900000000000000000">
6.29 <tt class="module">logging</tt> --
Logging facility for Python</A>
</H1>
<P>
<A NAME="module-logging"></A>
<P>
<P>
<P>
<a id='l2h-2456' xml:id='l2h-2456'></a>
<P>
<span class="versionnote">New in version 2.3.</span>
This module defines functions and classes which implement a flexible
error logging system for applications.
<P>
Logging is performed by calling methods on instances of the
<tt class="class">Logger</tt> class (hereafter called <i class="dfn">loggers</i>). Each instance has a
name, and they are conceptually arranged in a name space hierarchy
using dots (periods) as separators. For example, a logger named
"scan" is the parent of loggers "scan.text", "scan.html" and "scan.pdf".
Logger names can be anything you want, and indicate the area of an
application in which a logged message originates.
<P>
Logged messages also have levels of importance associated with them.
The default levels provided are <tt class="constant">DEBUG</tt>, <tt class="constant">INFO</tt>,
<tt class="constant">WARNING</tt>, <tt class="constant">ERROR</tt> and <tt class="constant">CRITICAL</tt>. As a
convenience, you indicate the importance of a logged message by calling
an appropriate method of <tt class="class">Logger</tt>. The methods are
<tt class="method">debug()</tt>, <tt class="method">info()</tt>, <tt class="method">warning()</tt>, <tt class="method">error()</tt> and
<tt class="method">critical()</tt>, which mirror the default levels. You are not
constrained to use these levels: you can specify your own and use a
more general <tt class="class">Logger</tt> method, <tt class="method">log()</tt>, which takes an
explicit level argument.
<P>
The numeric values of logging levels are given in the following table. These
are primarily of interest if you want to define your own levels, and need
them to have specific values relative to the predefined levels. If you
define a level with the same numeric value, it overwrites the predefined
value; the predefined name is lost.
<P>
<div class="center"><table class="realtable">
<thead>
<tr>
<th class="left" >Level</th>
<th class="left" >Numeric value</th>
</tr>
</thead>
<tbody>
<tr><td class="left" valign="baseline"><code>CRITICAL</code></td>
<td class="left" >50</td></tr>
<tr><td class="left" valign="baseline"><code>ERROR</code></td>
<td class="left" >40</td></tr>
<tr><td class="left" valign="baseline"><code>WARNING</code></td>
<td class="left" >30</td></tr>
<tr><td class="left" valign="baseline"><code>INFO</code></td>
<td class="left" >20</td></tr>
<tr><td class="left" valign="baseline"><code>DEBUG</code></td>
<td class="left" >10</td></tr>
<tr><td class="left" valign="baseline"><code>NOTSET</code></td>
<td class="left" >0</td></tr></tbody>
</table></div>
<P>
Levels can also be associated with loggers, being set either by the
developer or through loading a saved logging configuration. When a
logging method is called on a logger, the logger compares its own
level with the level associated with the method call. If the logger's
level is higher than the method call's, no logging message is actually
generated. This is the basic mechanism controlling the verbosity of
logging output.
<P>
Logging messages are encoded as instances of the <tt class="class">LogRecord</tt> class.
When a logger decides to actually log an event, an <tt class="class">LogRecord</tt>
instance is created from the logging message.
<P>
Logging messages are subjected to a dispatch mechanism through the
use of <i class="dfn">handlers</i>, which are instances of subclasses of the
<tt class="class">Handler</tt> class. Handlers are responsible for ensuring that a logged
message (in the form of a <tt class="class">LogRecord</tt>) ends up in a particular
location (or set of locations) which is useful for the target audience for
that message (such as end users, support desk staff, system administrators,
developers). Handlers are passed <tt class="class">LogRecord</tt> instances intended for
particular destinations. Each logger can have zero, one or more handlers
associated with it (via the <tt class="method">addHandler()</tt> method of <tt class="class">Logger</tt>).
In addition to any handlers directly associated with a logger,
<em>all handlers associated with all ancestors of the logger</em> are
called to dispatch the message.
<P>
Just as for loggers, handlers can have levels associated with them.
A handler's level acts as a filter in the same way as a logger's level does.
If a handler decides to actually dispatch an event, the <tt class="method">emit()</tt> method
is used to send the message to its destination. Most user-defined subclasses
of <tt class="class">Handler</tt> will need to override this <tt class="method">emit()</tt>.
<P>
In addition to the base <tt class="class">Handler</tt> class, many useful subclasses
are provided:
<P>
<OL>
<LI><tt class="class">StreamHandler</tt> instances send error messages to
streams (file-like objects).
<P>
</LI>
<LI><tt class="class">FileHandler</tt> instances send error messages to disk
files.
<P>
</LI>
<LI><tt class="class">BaseRotatingHandler</tt> is the base class for handlers that
rotate log files at a certain point. It is not meant to be instantiated
directly. Instead, use <tt class="class">RotatingFileHandler</tt> or
<tt class="class">TimedRotatingFileHandler</tt>.
<P>
</LI>
<LI><tt class="class">RotatingFileHandler</tt> instances send error messages to disk
files, with support for maximum log file sizes and log file rotation.
<P>
</LI>
<LI><tt class="class">TimedRotatingFileHandler</tt> instances send error messages to
disk files rotating the log file at certain timed intervals.
<P>
</LI>
<LI><tt class="class">SocketHandler</tt> instances send error messages to
TCP/IP sockets.
<P>
</LI>
<LI><tt class="class">DatagramHandler</tt> instances send error messages to UDP
sockets.
<P>
</LI>
<LI><tt class="class">SMTPHandler</tt> instances send error messages to a
designated email address.
<P>
</LI>
<LI><tt class="class">SysLogHandler</tt> instances send error messages to a
<span class="Unix">Unix</span> syslog daemon, possibly on a remote machine.
<P>
</LI>
<LI><tt class="class">NTEventLogHandler</tt> instances send error messages to a
Windows NT/2000/XP event log.
<P>
</LI>
<LI><tt class="class">MemoryHandler</tt> instances send error messages to a
buffer in memory, which is flushed whenever specific criteria are
met.
<P>
</LI>
<LI><tt class="class">HTTPHandler</tt> instances send error messages to an
HTTP server using either "<tt class="samp">GET</tt>" or "<tt class="samp">POST</tt>" semantics.
<P>
</LI>
</OL>
<P>
The <tt class="class">StreamHandler</tt> and <tt class="class">FileHandler</tt> classes are defined
in the core logging package. The other handlers are defined in a sub-
module, <tt class="module">logging.handlers</tt>. (There is also another sub-module,
<tt class="module">logging.config</tt>, for configuration functionality.)
<P>
Logged messages are formatted for presentation through instances of the
<tt class="class">Formatter</tt> class. They are initialized with a format string
suitable for use with the % operator and a dictionary.
<P>
For formatting multiple messages in a batch, instances of
<tt class="class">BufferingFormatter</tt> can be used. In addition to the format string
(which is applied to each message in the batch), there is provision for
header and trailer format strings.
<P>
When filtering based on logger level and/or handler level is not enough,
instances of <tt class="class">Filter</tt> can be added to both <tt class="class">Logger</tt> and
<tt class="class">Handler</tt> instances (through their <tt class="method">addFilter()</tt> method).
Before deciding to process a message further, both loggers and handlers
consult all their filters for permission. If any filter returns a false
value, the message is not processed further.
<P>
The basic <tt class="class">Filter</tt> functionality allows filtering by specific logger
name. If this feature is used, messages sent to the named logger and its
children are allowed through the filter, and all others dropped.
<P>
In addition to the classes described above, there are a number of module-
level functions.
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2457' xml:id='l2h-2457' class="function">getLogger</tt></b>(</nobr></td>
<td><var></var><big>[</big><var>name</var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Return a logger with the specified name or, if no name is specified, return
a logger which is the root logger of the hierarchy. If specified, the name
is typically a dot-separated hierarchical name like <var>"a"</var>, <var>"a.b"</var>
or <var>"a.b.c.d"</var>. Choice of these names is entirely up to the developer
who is using logging.
<P>
All calls to this function with a given name return the same logger instance.
This means that logger instances never need to be passed between different
parts of an application.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2458' xml:id='l2h-2458' class="function">getLoggerClass</tt></b>(</nobr></td>
<td><var></var>)</td></tr></table></dt>
<dd>
Return either the standard <tt class="class">Logger</tt> class, or the last class passed to
<tt class="function">setLoggerClass()</tt>. This function may be called from within a new
class definition, to ensure that installing a customised <tt class="class">Logger</tt> class
will not undo customisations already applied by other code. For example:
<P>
<div class="verbatim"><pre>
class MyLogger(logging.getLoggerClass()):
# ... override behaviour here
</pre></div>
<P>
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2459' xml:id='l2h-2459' class="function">debug</tt></b>(</nobr></td>
<td><var>msg</var><big>[</big><var>, *args</var><big>[</big><var>, **kwargs</var><big>]</big><var></var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Logs a message with level <tt class="constant">DEBUG</tt> on the root logger.
The <var>msg</var> is the message format string, and the <var>args</var> are the
arguments which are merged into <var>msg</var>. The only keyword argument in
<var>kwargs</var> which is inspected is <var>exc_info</var> which, if it does not
evaluate as false, causes exception information to be added to the logging
message. If an exception tuple (in the format returned by
<tt class="function">sys.exc_info()</tt>) is provided, it is used; otherwise,
<tt class="function">sys.exc_info()</tt> is called to get the exception information.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2460' xml:id='l2h-2460' class="function">info</tt></b>(</nobr></td>
<td><var>msg</var><big>[</big><var>, *args</var><big>[</big><var>, **kwargs</var><big>]</big><var></var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Logs a message with level <tt class="constant">INFO</tt> on the root logger.
The arguments are interpreted as for <tt class="function">debug()</tt>.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2461' xml:id='l2h-2461' class="function">warning</tt></b>(</nobr></td>
<td><var>msg</var><big>[</big><var>, *args</var><big>[</big><var>, **kwargs</var><big>]</big><var></var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Logs a message with level <tt class="constant">WARNING</tt> on the root logger.
The arguments are interpreted as for <tt class="function">debug()</tt>.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2462' xml:id='l2h-2462' class="function">error</tt></b>(</nobr></td>
<td><var>msg</var><big>[</big><var>, *args</var><big>[</big><var>, **kwargs</var><big>]</big><var></var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Logs a message with level <tt class="constant">ERROR</tt> on the root logger.
The arguments are interpreted as for <tt class="function">debug()</tt>.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2463' xml:id='l2h-2463' class="function">critical</tt></b>(</nobr></td>
<td><var>msg</var><big>[</big><var>, *args</var><big>[</big><var>, **kwargs</var><big>]</big><var></var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Logs a message with level <tt class="constant">CRITICAL</tt> on the root logger.
The arguments are interpreted as for <tt class="function">debug()</tt>.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2464' xml:id='l2h-2464' class="function">exception</tt></b>(</nobr></td>
<td><var>msg</var><big>[</big><var>, *args</var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Logs a message with level <tt class="constant">ERROR</tt> on the root logger.
The arguments are interpreted as for <tt class="function">debug()</tt>. Exception info
is added to the logging message. This function should only be called
from an exception handler.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2465' xml:id='l2h-2465' class="function">log</tt></b>(</nobr></td>
<td><var>level, msg</var><big>[</big><var>, *args</var><big>[</big><var>, **kwargs</var><big>]</big><var></var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Logs a message with level <var>level</var> on the root logger.
The other arguments are interpreted as for <tt class="function">debug()</tt>.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2466' xml:id='l2h-2466' class="function">disable</tt></b>(</nobr></td>
<td><var>lvl</var>)</td></tr></table></dt>
<dd>
Provides an overriding level <var>lvl</var> for all loggers which takes
precedence over the logger's own level. When the need arises to
temporarily throttle logging output down across the whole application,
this function can be useful.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2467' xml:id='l2h-2467' class="function">addLevelName</tt></b>(</nobr></td>
<td><var>lvl, levelName</var>)</td></tr></table></dt>
<dd>
Associates level <var>lvl</var> with text <var>levelName</var> in an internal
dictionary, which is used to map numeric levels to a textual
representation, for example when a <tt class="class">Formatter</tt> formats a message.
This function can also be used to define your own levels. The only
constraints are that all levels used must be registered using this
function, levels should be positive integers and they should increase
in increasing order of severity.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2468' xml:id='l2h-2468' class="function">getLevelName</tt></b>(</nobr></td>
<td><var>lvl</var>)</td></tr></table></dt>
<dd>
Returns the textual representation of logging level <var>lvl</var>. If the
level is one of the predefined levels <tt class="constant">CRITICAL</tt>,
<tt class="constant">ERROR</tt>, <tt class="constant">WARNING</tt>, <tt class="constant">INFO</tt> or <tt class="constant">DEBUG</tt>
then you get the corresponding string. If you have associated levels
with names using <tt class="function">addLevelName()</tt> then the name you have associated
with <var>lvl</var> is returned. If a numeric value corresponding to one of the
defined levels is passed in, the corresponding string representation is
returned. Otherwise, the string "Level %s" % lvl is returned.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2469' xml:id='l2h-2469' class="function">makeLogRecord</tt></b>(</nobr></td>
<td><var>attrdict</var>)</td></tr></table></dt>
<dd>
Creates and returns a new <tt class="class">LogRecord</tt> instance whose attributes are
defined by <var>attrdict</var>. This function is useful for taking a pickled
<tt class="class">LogRecord</tt> attribute dictionary, sent over a socket, and reconstituting
it as a <tt class="class">LogRecord</tt> instance at the receiving end.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2470' xml:id='l2h-2470' class="function">basicConfig</tt></b>(</nobr></td>
<td><var></var><big>[</big><var>**kwargs</var><big>]</big><var></var>)</td></tr></table></dt>
<dd>
Does basic configuration for the logging system by creating a
<tt class="class">StreamHandler</tt> with a default <tt class="class">Formatter</tt> and adding it to
the root logger. The functions <tt class="function">debug()</tt>, <tt class="function">info()</tt>,
<tt class="function">warning()</tt>, <tt class="function">error()</tt> and <tt class="function">critical()</tt> will call
<tt class="function">basicConfig()</tt> automatically if no handlers are defined for the
root logger.
<P>
<span class="versionnote">Changed in version 2.4:
Formerly, <tt class="function">basicConfig</tt> did not take any keyword
arguments.</span>
<P>
The following keyword arguments are supported.
<P>
<div class="center"><table class="realtable">
<thead>
<tr>
<th class="left" >Format</th>
<th class="left" >Description</th>
</tr>
</thead>
<tbody>
<tr><td class="left" valign="baseline"><code>filename</code></td>
<td class="left" >Specifies that a FileHandler be created, using the
specified filename, rather than a StreamHandler.</td></tr>
<tr><td class="left" valign="baseline"><code>filemode</code></td>
<td class="left" >Specifies the mode to open the file, if filename is
specified (if filemode is unspecified, it defaults to 'a').</td></tr>
<tr><td class="left" valign="baseline"><code>format</code></td>
<td class="left" >Use the specified format string for the handler.</td></tr>
<tr><td class="left" valign="baseline"><code>datefmt</code></td>
<td class="left" >Use the specified date/time format.</td></tr>
<tr><td class="left" valign="baseline"><code>level</code></td>
<td class="left" >Set the root logger level to the specified level.</td></tr>
<tr><td class="left" valign="baseline"><code>stream</code></td>
<td class="left" >Use the specified stream to initialize the StreamHandler.
Note that this argument is incompatible with 'filename' - if both
are present, 'stream' is ignored.</td></tr></tbody>
</table></div>
<P>
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2471' xml:id='l2h-2471' class="function">shutdown</tt></b>(</nobr></td>
<td><var></var>)</td></tr></table></dt>
<dd>
Informs the logging system to perform an orderly shutdown by flushing and
closing all handlers.
</dl>
<P>
<dl><dt><table cellpadding="0" cellspacing="0"><tr valign="baseline">
<td><nobr><b><tt id='l2h-2472' xml:id='l2h-2472' class="function">setLoggerClass</tt></b>(</nobr></td>
<td><var>klass</var>)</td></tr></table></dt>
<dd>
Tells the logging system to use the class <var>klass</var> when instantiating a
logger. The class should define <tt class="method">__init__()</tt> such that only a name
argument is required, and the <tt class="method">__init__()</tt> should call
<tt class="method">Logger.__init__()</tt>. This function is typically called before any
loggers are instantiated by applications which need to use custom logger
behavior.
</dl>
<P>
<div class="seealso">
<p class="heading">See Also:</p>
<dl compact="compact" class="seerfc">
<dt><a href="http://www.python.org/peps/pep-0282.html"
title="A Logging System"
>PEP 282, <em>A Logging System</em></a>
<dd>The proposal which described this feature for inclusion in
the Python standard library.
</dl>
<dl compact="compact" class="seeurl">
<dt><a href='http://www.red-dove.com/python_logging.html'
>Original Python <tt class="module">logging</tt> package</a></dt>
<dd>This is the original source for the <tt class="module">logging</tt>
package. The version of the package available from this
site is suitable for use with Python 1.5.2, 2.1.x and 2.2.x,
which do not include the <tt class="module">logging</tt> package in the standard
library.</dd>
</dl>
</div>
<P>
<p><br /></p><hr class='online-navigation' />
<div class='online-navigation'>
<!--Table of Child-Links-->
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></a>
<UL CLASS="ChildLinks">
<LI><A href="node341.html">6.29.1 Logger Objects</a>
<LI><A href="minimal-example.html">6.29.2 Basic example</a>
<LI><A href="multiple-destinations.html">6.29.3 Logging to multiple destinations</a>
<LI><A href="network-logging.html">6.29.4 Sending and receiving logging events across a network</a>
<LI><A href="node345.html">6.29.5 Handler Objects</a>
<UL>
<LI><A href="node346.html">6.29.5.1 StreamHandler</a>
<LI><A href="node347.html">6.29.5.2 FileHandler</a>
<LI><A href="node348.html">6.29.5.3 RotatingFileHandler</a>
<LI><A href="node349.html">6.29.5.4 TimedRotatingFileHandler</a>
<LI><A href="node350.html">6.29.5.5 SocketHandler</a>
<LI><A href="node351.html">6.29.5.6 DatagramHandler</a>
<LI><A href="node352.html">6.29.5.7 SysLogHandler</a>
<LI><A href="node353.html">6.29.5.8 NTEventLogHandler</a>
<LI><A href="node354.html">6.29.5.9 SMTPHandler</a>
<LI><A href="node355.html">6.29.5.10 MemoryHandler</a>
<LI><A href="node356.html">6.29.5.11 HTTPHandler</a>
</ul>
<LI><A href="node357.html">6.29.6 Formatter Objects</a>
<LI><A href="node358.html">6.29.7 Filter Objects</a>
<LI><A href="node359.html">6.29.8 LogRecord Objects</a>
<LI><A href="node360.html">6.29.9 Thread Safety</a>
<LI><A href="node361.html">6.29.10 Configuration</a>
<UL>
<LI><A href="logging-config-api.html">6.29.10.1 Configuration functions</a>
<LI><A href="logging-config-fileformat.html">6.29.10.2 Configuration file format</a>
</ul></ul>
<!--End of Table of Child-Links-->
</div>
<DIV CLASS="navigation">
<div class='online-navigation'>
<p></p><hr />
<table align="center" width="100%" cellpadding="0" cellspacing="2">
<tr>
<td class='online-navigation'><a rel="prev" title="6.28.4 Acknowledgements"
href="node339.html"><img src='../icons/previous.png'
border='0' height='32' alt='Previous Page' width='32' /></A></td>
<td class='online-navigation'><a rel="parent" title="6. Generic Operating System"
href="allos.html"><img src='../icons/up.png'
border='0' height='32' alt='Up One Level' width='32' /></A></td>
<td class='online-navigation'><a rel="next" title="6.29.1 Logger Objects"
href="node341.html"><img src='../icons/next.png'
border='0' height='32' alt='Next Page' width='32' /></A></td>
<td align="center" width="100%">Python Library Reference</td>
<td class='online-navigation'><a rel="contents" title="Table of Contents"
href="contents.html"><img src='../icons/contents.png'
border='0' height='32' alt='Contents' width='32' /></A></td>
<td class='online-navigation'><a href="modindex.html" title="Module Index"><img src='../icons/modules.png'
border='0' height='32' alt='Module Index' width='32' /></a></td>
<td class='online-navigation'><a rel="index" title="Index"
href="genindex.html"><img src='../icons/index.png'
border='0' height='32' alt='Index' width='32' /></A></td>
</tr></table>
<div class='online-navigation'>
<b class="navlabel">Previous:</b>
<a class="sectref" rel="prev" href="node339.html">6.28.4 Acknowledgements</A>
<b class="navlabel">Up:</b>
<a class="sectref" rel="parent" href="allos.html">6. Generic Operating System</A>
<b class="navlabel">Next:</b>
<a class="sectref" rel="next" href="node341.html">6.29.1 Logger Objects</A>
</div>
</div>
<hr />
<span class="release-info">Release 2.4.2, documentation updated on 28 September 2005.</span>
</DIV>
<!--End of Navigation Panel-->
<ADDRESS>
See <i><a href="about.html">About this document...</a></i> for information on suggesting changes.
</ADDRESS>
</BODY>
</HTML>