2
0
mirror of https://github.com/42wim/matterbridge synced 2024-11-17 03:26:07 +00:00

Add more debug for events (irc)

This commit is contained in:
Wim 2018-02-22 18:23:22 +01:00
parent 52237fadb6
commit 8622656005

View File

@ -290,7 +290,9 @@ func (b *Birc) handleJoinPart(client *girc.Client, event girc.Event) {
} }
if event.Source.Name != b.Nick { if event.Source.Name != b.Nick {
flog.Debugf("Sending JOIN_LEAVE event from %s to gateway", b.Account) flog.Debugf("Sending JOIN_LEAVE event from %s to gateway", b.Account)
b.Remote <- config.Message{Username: "system", Text: event.Source.Name + " " + strings.ToLower(event.Command) + "s", Channel: channel, Account: b.Account, Event: config.EVENT_JOIN_LEAVE} msg := config.Message{Username: "system", Text: event.Source.Name + " " + strings.ToLower(event.Command) + "s", Channel: channel, Account: b.Account, Event: config.EVENT_JOIN_LEAVE}
flog.Debugf("Message is %#v", msg)
b.Remote <- msg
return return
} }
flog.Debugf("handle %#v", event) flog.Debugf("handle %#v", event)