remove use of glog

This commit is contained in:
Asim
2016-03-14 11:01:10 +00:00
parent c0b25e7a65
commit d1eae8fabe
12 changed files with 46 additions and 85 deletions

View File

@@ -7,6 +7,7 @@ import (
"fmt"
"io"
"io/ioutil"
"log"
"math/rand"
"net"
"net/http"
@@ -17,7 +18,6 @@ import (
"sync"
"time"
log "github.com/golang/glog"
"github.com/micro/go-micro/errors"
"github.com/micro/go-micro/registry"
mls "github.com/micro/misc/lib/tls"
@@ -217,7 +217,7 @@ func (h *httpBroker) start() error {
return err
}
log.Infof("Broker Listening on %s", l.Addr().String())
log.Printf("Broker Listening on %s", l.Addr().String())
h.address = l.Addr().String()
go http.Serve(l, h)