From c2e3488a45d4dee010fd48d0bf27bfcbfeffda34 Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Wed, 5 May 2021 15:17:35 -0700 Subject: [PATCH] Remove Debug --- lib.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib.go b/lib.go index 85b7d17..5eb9b34 100644 --- a/lib.go +++ b/lib.go @@ -1,6 +1,6 @@ -//package cwtch +package cwtch -package main +//package main import "C" import ( @@ -507,7 +507,6 @@ func SendMessage(profileOnion, handle, msg string) { if ph.IsGroup(handle) { groupHandler, err := groups.ExperimentGate(utils.ReadGlobalSettings().Experiments) if err == nil { - log.Debugf("Group Sending Enabled... Sending message to %v", handle) groupHandler.SendMessage(profile, handle, msg) } } else { @@ -587,4 +586,4 @@ func SetGroupAttribute(profileOnion string, groupHandle string, key string, valu } // Leave as is, needed by ffi -func main() {} +//func main() {}