Change a verbose logging to trace

This commit is contained in:
Andy Wang 2019-08-20 17:46:36 +01:00
parent dd4a1769d0
commit c720b65d69
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ func dispatchConnection(conn net.Conn, sta *server.State) {
user.DeleteSession(ci.SessionId, "Failed to connect to proxy server")
continue
}
log.Debugf("%v endpoint has been successfully connected", ci.ProxyMethod)
log.Tracef("%v endpoint has been successfully connected", ci.ProxyMethod)
go util.Pipe(localConn, newStream, 0)
go util.Pipe(newStream, localConn, sta.Timeout)