diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2004-11-11 13:54:48 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2004-11-11 13:54:48 (GMT) |
commit | edde492f13f6af15caf037231ce8e5815e090f7e (patch) | |
tree | 6098ac704a36601e1a593d64eb38585e12678141 /Doc/lib/liblogging.tex | |
parent | af305b1dabdcd6a7c1e203b63282008866c06345 (diff) | |
download | cpython-edde492f13f6af15caf037231ce8e5815e090f7e.zip cpython-edde492f13f6af15caf037231ce8e5815e090f7e.tar.gz cpython-edde492f13f6af15caf037231ce8e5815e090f7e.tar.bz2 |
Minor grammatical errors fixed
Diffstat (limited to 'Doc/lib/liblogging.tex')
-rw-r--r-- | Doc/lib/liblogging.tex | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Doc/lib/liblogging.tex b/Doc/lib/liblogging.tex index 869b5c1..6360a9a 100644 --- a/Doc/lib/liblogging.tex +++ b/Doc/lib/liblogging.tex @@ -79,7 +79,8 @@ files. \item \class{BaseRotatingHandler} is tha base class for handlers that rotate log files at a certain point. It is not meant to be instantiated -directly. Instead, use RotatingFileHandler or TimedRotatingFileHandler. +directly. Instead, use \class{RotatingFileHandler} or +\class{TimedRotatingFileHandler}. \item \class{RotatingFileHandler} instances send error messages to disk files, with support for maximum log file sizes and log file rotation. @@ -703,8 +704,7 @@ class LogRecordSocketReceiver(SocketServer.ThreadingTCPServer): def main(): logging.basicConfig( - format="%(relativeCreated)5d %(name)-15s %(levelname)-8s %(message)s", - datefmt="%H:%M:%S") + format="%(relativeCreated)5d %(name)-15s %(levelname)-8s %(message)s") tcpserver = LogRecordSocketReceiver() print "About to start TCP server..." tcpserver.serve_until_stopped() @@ -713,9 +713,8 @@ if __name__ == "__main__": main() \end{verbatim} -If you first run the server, and then the client. On the client side, nothing -is printed on the client console; on the server side, you should see something -like this: +First run the server, and then the client. On the client side, nothing is +printed on the console; on the server side, you should see something like: \begin{verbatim} About to start TCP server... @@ -910,7 +909,7 @@ at certain timed intervals. Returns a new instance of the \class{TimedRotatingFileHandler} class. The specified file is opened and used as the stream for logging. On rotating it also sets the filename suffix. Rotating happens based on the product -of \var{when} and \var{interval}. +of \var{when} and \var{interval}. You can use the \var{when} to specify the type of \var{interval}. The list of possible values is, note that they are not case sensitive: |