blob: 3b7820fb42d8d678e9f3985ac4f15104f18cfa1d (
plain)
1
2
3
4
5
6
7
|
from zope.interface import Interface
class ILogLineGenerator(Interface):
def getLogLine(self):
""" Return a string that will be logged, or None. This method will be called every second.
"""
|