diff options
Diffstat (limited to 'gateway/gateway.go')
-rw-r--r-- | gateway/gateway.go | 3 |
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 |