Set the debug level. The higher it is, the more debug output you get (on sys.stdout).
(self, debuglevel)
| 256 | print(msg) |
| 257 | |
| 258 | def set_debuglevel(self, debuglevel): |
| 259 | """Set the debug level. |
| 260 | |
| 261 | The higher it is, the more debug output you get (on sys.stdout). |
| 262 | |
| 263 | """ |
| 264 | self.debuglevel = debuglevel |
| 265 | |
| 266 | def close(self): |
| 267 | """Close the connection.""" |