From 1300c94d08a5686ce955c9a2f1ba88282512973c Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Wed, 20 Apr 2022 17:02:57 -0700 Subject: [PATCH] removing debug log --- protocol/connections/engine.go | 1 - 1 file changed, 1 deletion(-) diff --git a/protocol/connections/engine.go b/protocol/connections/engine.go index 8ab87dd..9bf4f1f 100644 --- a/protocol/connections/engine.go +++ b/protocol/connections/engine.go @@ -166,7 +166,6 @@ func (e *engine) eventHandler() { case event.DeleteGroup: // TODO: There isn't a way here to determine if other Groups are using a server connection... case event.SendMessageToGroup: - log.Debugf("sending message to group (engine)") ciphertext, _ := base64.StdEncoding.DecodeString(ev.Data[event.Ciphertext]) signature, _ := base64.StdEncoding.DecodeString(ev.Data[event.Signature]) go e.sendMessageToGroup(ev.Data[event.GroupID], ev.Data[event.GroupServer], ciphertext, signature, 0)