Skip to content

Commit

Permalink
proxy: remove some log lines
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Pashmfouroush <mark@markpash.me>
  • Loading branch information
markpash committed Aug 3, 2024
1 parent 08088f2 commit 7a66b97
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion proxy/pkg/http/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ func (s *Server) ListenAndServe() error {
}

s.Bind = s.Listener.Addr().(*net.TCPAddr).String()
s.Logger.Debug("started proxy", "address", s.Bind)

// ensure listener will be closed
defer func() {
Expand Down
1 change: 0 additions & 1 deletion proxy/pkg/mixed/proxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ func (p *Proxy) ListenAndServe() error {
}

p.bind = p.listener.Addr().(*net.TCPAddr).String()
p.logger.Debug("started proxy", "address", p.bind)

// ensure listener will be closed
defer func() {
Expand Down
1 change: 0 additions & 1 deletion proxy/pkg/socks4/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ func (s *Server) ListenAndServe() error {
}

s.Bind = s.Listener.Addr().(*net.TCPAddr).String()
s.Logger.Debug("started proxy", "address", s.Bind)

// ensure listener will be closed
defer func() {
Expand Down
1 change: 0 additions & 1 deletion proxy/pkg/socks5/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ func (s *Server) ListenAndServe() error {
}

s.Bind = s.Listener.Addr().(*net.TCPAddr).String()
s.Logger.Debug("started proxy", "address", s.Bind)

// ensure listener will be closed
defer func() {
Expand Down

0 comments on commit 7a66b97

Please sign in to comment.