[Python-checkins] python/dist/src/Doc/lib liblogging.tex,1.23,1.24

vsajip at users.sourceforge.net vsajip at users.sourceforge.net
Tue Aug 31 12:21:54 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23968/lib

Modified Files:
	liblogging.tex 
Log Message:
Updated doc for getLogger()

Index: liblogging.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liblogging.tex,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- liblogging.tex	4 Aug 2004 08:36:44 -0000	1.23
+++ liblogging.tex	31 Aug 2004 10:21:51 -0000	1.24
@@ -134,7 +134,10 @@
 
 \begin{funcdesc}{getLogger}{\optional{name}}
 Return a logger with the specified name or, if no name is specified, return
-a logger which is the root logger of the hierarchy.
+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{"a.b"}
+or \var{"a.b.c.d"}. Choice of these names is entirely up to the developer
+who is using logging.
 
 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



More information about the Python-checkins mailing list