tcpproxy: add start logging line

This commit is contained in:
Gyu-Ho Lee 2016-07-06 14:20:18 -07:00
parent 1c9e0a0e33
commit 244b1d7d20

View File

@ -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()