This commit is contained in:
Jake 2026-02-15 15:08:51 -08:00 committed by GitHub
commit 3595d75b23
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -281,6 +281,8 @@ class GetLogObserver:
log_msg = twisted_logger.formatEventAsClassicLogText(
event, formatTime=lambda e: twisted_logger.formatTime(e, _TIME_FORMAT)
)
if log_msg is None:
return None
return f"{component_prefix}{log_msg}"
def __call__(self, outfile):