diff options
Diffstat (limited to 'main.lua')
| -rw-r--r-- | main.lua | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3,6 +3,7 @@ local class = require'r.class' local config = require'config' local Channel = require'channel' +local pprint = require'pprint' local pylon_classes = { irc = require'irc.pylon', @@ -50,6 +51,7 @@ function Wilson.deliver(self, source_channel, message) if bus then for _, dest_channel in ipairs(bus) do if source_channel ~= dest_channel then + pprint(source_channel, "-->", dest_channel, message) dest_channel.pylon:post(dest_channel, message) end end |
