My first try using logger didn't work. Why?
Gabriel Genellina
gagsl-py at yahoo.com.ar
Fri Jan 19 14:20:17 EST 2007
More information about the Python-list mailing list
Fri Jan 19 14:20:17 EST 2007
- Previous message (by thread): My first try using logger didn't work. Why?
- Next message (by thread): My first try using logger didn't work. Why?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
At Friday 19/1/2007 15:59, CedricCicada at gmail.com wrote: >One of the problems I was laboring under was that I did not know where >to go to find the official documentation. Thanks for that link too! You already have it installed; look into your python install directory, under "doc" From inside the interpreter, you can use help(): py> import logging.handlers py> help(logging.handlers.NTEventLogHandler) Help on class NTEventLogHandler in module logging.handlers: class NTEventLogHandler(logging.Handler) | A handler class which sends events to the NT Event Log. Adds a | registry entry for the specified application name. If no dllname is | provided, win32service.pyd (which contains some basic message [...] Try help("logging"), help("modules logging"), help(any object), help("if") And you can read the documentation online at http://www.python.org/doc/ -- Gabriel Genellina Softlab SRL __________________________________________________ Preguntá. Respondé. Descubrí. Todo lo que querías saber, y lo que ni imaginabas, está en Yahoo! Respuestas (Beta). ¡Probalo ya! http://www.yahoo.com.ar/respuestas
- Previous message (by thread): My first try using logger didn't work. Why?
- Next message (by thread): My first try using logger didn't work. Why?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list