Turn on logging and add a handler which prints to stderr
(self, level=None)
| 163 | return get_logger() |
| 164 | |
| 165 | def log_to_stderr(self, level=None): |
| 166 | '''Turn on logging and add a handler which prints to stderr''' |
| 167 | from .util import log_to_stderr |
| 168 | return log_to_stderr(level) |
| 169 | |
| 170 | def allow_connection_pickling(self): |
| 171 | '''Install support for sending connections and sockets |
no test coverage detected