web2py application logging
Posted
by MikeWyatt
on Stack Overflow
See other posts from Stack Overflow
or by MikeWyatt
Published on 2010-05-21T15:00:49Z
Indexed on
2010/05/21
17:00 UTC
Read the original article
Hit count: 292
What is the recommended way to log application-specific messages in web2py? I found the documentation on HTTP logging, but I'm thinking more of messages for debugging and tracking.
Should I simply use the logging module in each separate controller file? Is there a central place in which I could initialize a logger that can be shared between controllers? Or, is something built-in to web2py that I should use?
Update: It looks like I can't even fully use the logging module in web2py. It looks like web2py ships with it's own version of the python libraries (in library.zip), which I'm not a big fan of. Is that by design? I'm guessing there will be issues with simply adding my installed Python libraries to the sys.path at run-time, so what should I do?
© Stack Overflow or respective owner