Add the HostFilter derived hostname to log output.
(self, record)
| 27 | hostname = socket.gethostname() |
| 28 | |
| 29 | def filter(self, record): |
| 30 | """Add the HostFilter derived hostname to log output.""" |
| 31 | record.hostname = HostFilter.hostname |
| 32 | return True |
no outgoing calls