mirror of
https://github.com/golang/go
synced 2024-11-20 06:54:42 -07:00
http: remove debugging log statement
Issue 1547 is fixed. R=bradfitzgo, r CC=golang-dev https://golang.org/cl/4209045
This commit is contained in:
parent
c9021a1afe
commit
4185a9e2b2
@ -9,7 +9,6 @@ import (
|
||||
"crypto/tls"
|
||||
"encoding/base64"
|
||||
"fmt"
|
||||
"log"
|
||||
"net"
|
||||
"os"
|
||||
"strings"
|
||||
@ -77,9 +76,7 @@ func (ct *transport) Do(req *Request) (resp *Response, err os.Error) {
|
||||
}
|
||||
|
||||
// Connect to server or proxy
|
||||
log.Printf("Temporary necessary log statement to work around http://code.google.com/p/go/issues/detail?id=1547")
|
||||
conn, err := net.Dial("tcp", "", addr)
|
||||
log.Printf("Temporary necessary log statement to work around http://code.google.com/p/go/issues/detail?id=1547")
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user