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)