Re: [Zope3-dev] Re: [Zope3-checkins] SVN: Zope3/branches/srichter-twisted-integration/src/zope/app/server/ Reimplemented common access log using Twisted's log framework. It uses our

2005-04-21 Thread Stephan Richter
On Thursday 21 April 2005 08:13, Chris Withers wrote: > > Twisted has its own logging framework and the Twisted Web server logs to > > this framework and not the standard Python one. So we have to hook into > > it, which this code exactly does. > > So, just to check I understand correctly: Zope 3 p

Re: [Zope3-dev] Re: [Zope3-checkins] SVN: Zope3/branches/srichter-twisted-integration/src/zope/app/server/ Reimplemented common access log using Twisted's log framework. It uses our

2005-04-21 Thread Chris Withers
Stephan Richter wrote: On Thursday 21 April 2005 06:38, Chris Withers wrote: Why are you looking to use this rather than Python's logging package? The observer below clearly uses the Python logging package: Oops, sorry, missed that... Twisted has its own logging framework and the Twisted Web server

Re: [Zope3-dev] Re: [Zope3-checkins] SVN: Zope3/branches/srichter-twisted-integration/src/zope/app/server/ Reimplemented common access log using Twisted's log framework. It uses our

2005-04-21 Thread Stephan Richter
On Thursday 21 April 2005 06:38, Chris Withers wrote: > Why are you looking to use this rather than Python's logging package? The observer below clearly uses the Python logging package:    def __init__(self, logger=None):        if logger is None:            logger = logging.getLogger('accesslog'

[Zope3-dev] Re: [Zope3-checkins] SVN: Zope3/branches/srichter-twisted-integration/src/zope/app/server/ Reimplemented common access log using Twisted's log framework. It uses our

2005-04-21 Thread Chris Withers
Why are you looking to use this rather than Python's logging package? Chris Stephan Richter wrote: Log message for revision 30066: Reimplemented common access log using Twisted's log framework. It uses our setup accesslog. Tests will follow, but BjornT wants to have a look. Changed: A