diff options
| author | 2018-08-28 17:30:52 +0100 | |
|---|---|---|
| committer | 2018-08-28 17:30:52 +0100 | |
| commit | ab9869aecb31a8ad848e419a68333a2f06e591f4 (patch) | |
| tree | 70903fad74959a71eeeead1989e29a29784d2533 /IRCBot.py | |
| parent | Do throttling based on line count, not byte count (diff) | |
| signature | ||
Change verbose logging to use propper logging system
Diffstat (limited to 'IRCBot.py')
| -rw-r--r-- | IRCBot.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -144,7 +144,7 @@ class Bot(object): lines = server.read() for line in lines: if self.args.verbose: - print(line) + self.log.info("<%s | %s", [str(server), line]) server.parse_line(line) elif event & select.EPOLLOUT: server._send() |
