class twisted.internet.abstract._LogOwner: (source)
Known subclasses: twisted.internet.abstract.FileDescriptor, twisted.internet.iocpreactor.abstract.FileHandle, twisted.internet.iocpreactor.tcp.Port
Mixin to help implement interfaces.ILoggingContext
for transports which have a protocol, the log prefix of which should also appear in the transport's log prefix.
Method | logPrefix | Override this method to insert custom logging behavior. Its return value will be inserted in front of every line. It may be called more times than the number of output lines. |
Method | _getLogPrefix | Determine the log prefix to use for messages related to applicationObject , which may or may not be an interfaces.ILoggingContext provider. |
Determine the log prefix to use for messages related to applicationObject
, which may or may not be an interfaces.ILoggingContext
provider.
Parameters | applicationObject | Undocumented (type: object ) |
Returns | A str giving the log prefix to use. (type: str ) |
Override this method to insert custom logging behavior. Its return value will be inserted in front of every line. It may be called more times than the number of output lines.