Commit 4185a9e2 authored by Russ Cox's avatar Russ Cox

http: remove debugging log statement

Issue 1547 is fixed.

R=bradfitzgo, r
CC=golang-dev
https://golang.org/cl/4209045
parent c9021a1a
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment