twisted.logger._legacy module documentationtwisted.logger
          View Source
          
        
      Integration with twisted.python.log.
| Function | publishToNewObserver | Publish an old-style (twisted.python.log) event to a new-style (twisted.logger) observer. | 
  
Publish an old-style (twisted.python.log) event to a new-style (twisted.logger) observer.
| Parameters | observer | A new-style observer to handle this event. (type: ILogObserver) | 
| eventDict | An old-style, log event. (type: dict) | |
| textFromEventDict | callable that can format an old-style event as a string.  Passed here rather than imported to avoid circular dependency. (type: 1-arg callable taking dict returning str) | |
| Returns | None | |
| Note | It's possible that a new-style event was sent to a LegacyLogObserverWrapper, and may now be getting sent back to a new-style observer.  In this case, it's already a new-style event, adapted to also look like an old-style event, and we don't need to tweak it again to be a new-style event, hence the checks for already-defined new-style keys. | |