Re: [Zope3-Users] a question about zope.app.security.principallogging.PrincipalLogging

2007-08-09 Thread Stephan Richter
On Wednesday 08 August 2007 12:14, Shailesh Kumar wrote: zope.app.security.principallogging.PrincipalLogging looks like: class PrincipalLogging(object):     implements(ILoggingInfo)     def __init__(self, principal):         self.principal = principal     def getLogMessage(self):        

[Zope3-Users] a question about zope.app.security.principallogging.PrincipalLogging

2007-08-08 Thread Shailesh Kumar
Hi, zope.app.security.principallogging.PrincipalLogging looks like: class PrincipalLogging(object): implements(ILoggingInfo) def __init__(self, principal): self.principal = principal def getLogMessage(self): return str(self.principal.id) It requires that