Browse Source

tcpproxy: add start logging line

Gyu-Ho Lee 9 years ago
parent
commit
244b1d7d20
1 changed files with 1 additions and 0 deletions
  1. 1 0
      proxy/tcpproxy/userspace.go

+ 1 - 0
proxy/tcpproxy/userspace.go

@@ -78,6 +78,7 @@ func (tp *TCPProxy) Run() error {
 		tp.remotes = append(tp.remotes, &remote{addr: ep})
 	}
 
+	plog.Printf("ready to proxy client requests to %v", tp.Endpoints)
 	go tp.runMonitor()
 	for {
 		in, err := tp.Listener.Accept()