python logging module and custom handler specified in config file (original) (raw)
Frank Aune
unread,
Oct 15, 2007, 10:15:42 AM10/15/07
Hello,
I've been playing with the python logging module lately, and I manage to log
to both stderr and MySQL database.
What I'm wondering, is if its possible to specify the database handler in a
config file like:
[handler_database]
class=DBHandler
level=DEBUG
formatter=database
args=('localhost', uid='root')
I've seen the log_test14.py example bundled with logging module, which
describes the DBHandler class and I can get it working if I attach this
handler to the root logger inside my application, but I would really like to
do it through a config file like above. But since the logging.handlers module
does not know about the DBHandler class, obviously this does not work.
I was thinking perhaps specifying module and classname in the class= option
above, like class=dbhandler.DBHandler, but it will just complain that
name 'dbhandler' is not defined.
Is this possible to archieve somehow?
Best regards,
Frank Aune
Vinay Sajip
unread,
Oct 18, 2007, 1:26:59 PM10/18/07
to
On 15 Oct, 15:15, Frank Aune <Frank.A...@broadpark.no> wrote:
> What I'm wondering, is if its possible to specify the database handler in a
> config file like:
>
> [handler_database]
> class=DBHandler
> level=DEBUG
> formatter=database
> args=('localhost', uid='root')
>
> I've seen the log_test14.py example bundled withloggingmodule, which
> describes the DBHandler class and I can get it working if I attach this
> handler to the root logger inside my application, but I would really like to
> do it through a config file like above. But since thelogging.handlers module
> does not know about the DBHandler class, obviously this does not work.
>
> I was thinking perhaps specifying module and classname in the class= option
> above, like class=dbhandler.DBHandler, but it will just complain that
> name 'dbhandler' is not defined.
>
> Is this possible to archieve somehow?
>
The values in the config file are interpreted in the context of the
logging module's namespace. Hence, one way of achieving what you want
is putting any custom handlers in
a module of your own, and providing a binding in the logging module's
namespace. For example: assuming your DBHandler is defined in a module
customhandlers, you could do this somewhere in your code, before
loading the configuration:
import logging
import customhandlers # Use your own module name here
logging.custhandlers = customhandlers # Bind your module to
"custhandlers" in logging
and then your logging configuration can refer to
"custhandlers.DBHandler". Of course I merely used "custhandlers" and
"customhandlers" to show how you can bind to an arbitrary name.
The same technique applies to the arguments passed to the constructor.
Hope this helps,
Vinay Sajip
Frank Aune
unread,
Oct 18, 2007, 6:46:54 PM10/18/07
On Thursday 18 October 2007 19:26:59 Vinay Sajip wrote:
> The same technique applies to the arguments passed to the constructor.
>
> Hope this helps,
>
Thank you! This seems like exactly what I was looking for.
Very impressive logging framework btw - I use it whenever I can =)
Cheers,
Frank
Frank Aune
unread,
Oct 19, 2007, 7:04:43 AM10/19/07
On Thursday 18 October 2007 19:26:59 Vinay Sajip wrote:
> The values in the config file are interpreted in the context of the
> logging module's namespace. Hence, one way of achieving what you want
> is putting any custom handlers in
> a module of your own, and providing a binding in the logging module's
> namespace.
What if you want to datestamp filenames for filehandlers, say with todays date
for example?
[handler_file]
class=FileHandler
level=NOTSET
formatter=normal
args=('filename.log', 'w')
Say you want filenames to be on format filename-YYYYMMDD.log
Thanks,
Frank
Vinay Sajip
unread,
Oct 19, 2007, 7:22:33 AM10/19/07
to