5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 04:22:32 +00:00

Increase debug logging (slack)

This commit is contained in:
Wim 2018-01-02 14:39:27 +01:00
parent 50bd51e461
commit 9a6249c4f5

View File

@ -309,9 +309,11 @@ func (b *Bslack) handleSlack() {
func (b *Bslack) handleSlackClient(mchan chan *MMMessage) {
for msg := range b.rtm.IncomingEvents {
if msg.Type != "user_typing" && msg.Type != "latency_report" {
flog.Debugf("Receiving from slackclient %#v", msg.Data)
}
switch ev := msg.Data.(type) {
case *slack.MessageEvent:
flog.Debugf("Receiving from slackclient %#v", ev)
if len(ev.Attachments) > 0 {
// skip messages we made ourselves
if ev.Attachments[0].CallbackID == "matterbridge" {