diff --git a/netclient/functions/daemon.go b/netclient/functions/daemon.go index b339e1b4..d38ebf30 100644 --- a/netclient/functions/daemon.go +++ b/netclient/functions/daemon.go @@ -154,13 +154,6 @@ var UpdatePeers mqtt.MessageHandler = func(client mqtt.Client, msg mqtt.Message) return } ncutils.Log("update peer handler") - ncutils.Log("recieved " + string(len(peerUpdate.Peers)) + "peers to update") - ncutils.Log(string(msg.Payload())) - ncutils.Log(peerUpdate.Network) - for _, peer := range peerUpdate.Peers { - key := peer.PublicKey.String() - ncutils.Log(key) - } var cfg config.ClientConfig cfg.Network = peerUpdate.Network cfg.ReadConfig() diff --git a/netclient/wireguard/common.go b/netclient/wireguard/common.go index 77b64530..728c6b77 100644 --- a/netclient/wireguard/common.go +++ b/netclient/wireguard/common.go @@ -361,7 +361,6 @@ func UpdateWgPeers(wgInterface string, peers []wgtypes.PeerConfig) error { //delete the peers sections as they are going to be replaced wireguard.DeleteSection(section_peers) for i, peer := range peers { - ncutils.Log("adding peer section for peer #: " + string(i) + peer.PublicKey.String()) wireguard.SectionWithIndex(section_peers, i).Key("PublicKey").SetValue(peer.PublicKey.String()) //if peer.PresharedKey.String() != "" { //wireguard.SectionWithIndex(section_peers, i).Key("PreSharedKey").SetValue(peer.PresharedKey.String())