+-------[ Ken Winter ]----------------------
| To debug my code in my Zope/Plone site, I sometimes need to put logger lines
| into Zope/Plone code, in order to trace my way through an error traceback. 
| 
|  
| 
| I can do this easily with Plone code in the Plone Products folder: Just put in
| the logger line, restart Zope, run my tests, and the output appears in the 
Zope
| event.log.  But when I try the same thing with native Zope code (for example,
| in the OFS directory), the output doesn?t show up in event.log.
| 
|  
| 
| I figure these modules have to be reinstalled or re-somethinged to get my
| changes activated, but I don?t know how to do this.  Can you help?

[this assumes the code is actually being called]

You are probably logging at a level below the level that will be output
into the log.

LOG.info() is about the lowest level that will go out by default.

Without seeing any examples from you it's hard to tell.

-- 
Andrew Milton
a...@theinternet.com.au
_______________________________________________
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )

Reply via email to