From ad3a753718cb8cff85ebbe06a663a315800db6c8 Mon Sep 17 00:00:00 2001 From: Wim Date: Mon, 28 Aug 2017 23:03:45 +0200 Subject: [PATCH] Remove debug message --- gateway/gateway.go | 3 --- 1 file changed, 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