summaryrefslogtreecommitdiffstats
path: root/gateway
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-08-28 23:03:45 +0200
committerWim <wim@42.be>2017-08-28 23:07:13 +0200
commitad3a753718cb8cff85ebbe06a663a315800db6c8 (patch)
treeb3b19bbe4c7c3c2813e9b71d3dabf1fb362ce5b4 /gateway
parente45c5518808043578291d7948412f9196a911a86 (diff)
downloadmatterbridge-msglm-ad3a753718cb8cff85ebbe06a663a315800db6c8.tar.gz
matterbridge-msglm-ad3a753718cb8cff85ebbe06a663a315800db6c8.tar.bz2
matterbridge-msglm-ad3a753718cb8cff85ebbe06a663a315800db6c8.zip
Remove debug message
Diffstat (limited to 'gateway')
-rw-r--r--gateway/gateway.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/gateway/gateway.go b/gateway/gateway.go
index 1d112811..aca8ecec 100644
--- a/gateway/gateway.go
+++ b/gateway/gateway.go
@@ -23,8 +23,6 @@ type Gateway struct {
Message chan config.Message
Name string
Messages *lru.Cache
- //map[string][]*BrMsg
- lruCache *lru.Cache
}
type BrMsgID struct {
@@ -188,7 +186,6 @@ func (gw *Gateway) handleMessage(msg config.Message, dest *bridge.Bridge) []*BrM
fmt.Println(err)
}
// append the message ID (mID) from this bridge (dest) to our brMsgIDs slice
- log.Debugf("message ID: %s\n", mID)
brMsgIDs = append(brMsgIDs, &BrMsgID{dest, mID})
}
return brMsgIDs