From a145b77f7988bbc09cd0d74917c5fc687c1e3be9 Mon Sep 17 00:00:00 2001 From: Owen Date: Sat, 22 Feb 2025 13:09:04 -0500 Subject: [PATCH] Remove logging --- main.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/main.go b/main.go index bdfc0a2..7306176 100644 --- a/main.go +++ b/main.go @@ -128,11 +128,6 @@ func startUDPServer(addr string, server string) { // Send the endpoint info to the Olm server go notifyServer(endpoint, server) - - logger.Info("Received hole punch from %s:%d for Olm ID: %s", - remoteAddr.IP, - remoteAddr.Port, - msg.OlmID) } } @@ -160,8 +155,6 @@ func notifyServer(endpoint ClientEndpoint, server string) { string(body)) return } - - logger.Info("Successfully notified Olm server about endpoint for ID: %s", endpoint.OlmID) } func main() {