upd connection info log

This commit is contained in:
2026-09-01 23:00:05 +01:00
parent fd49d432ac
commit 6c7d2e7988
2 changed files with 1 additions and 3 deletions

View File

@@ -3,8 +3,6 @@ package q3rcon
import (
"fmt"
"net"
"github.com/charmbracelet/log"
)
type UDPConn struct {
@@ -20,7 +18,6 @@ func newUDPConn(host string, port int) (*UDPConn, error) {
if err != nil {
return nil, err
}
log.Infof("Outgoing address %s", conn.RemoteAddr())
return &UDPConn{
conn: conn,