Ran gofmt

This commit is contained in:
Phil Porada 2017-08-04 16:01:04 -04:00
parent 343344a7af
commit 9ec36c5eda
No known key found for this signature in database
GPG Key ID: C2E660AD9DD4F728
1 changed files with 3 additions and 3 deletions

View File

@ -27,8 +27,8 @@ import (
"strconv"
"strings"
"github.com/prometheus/common/log"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/common/log"
)
var (
@ -365,7 +365,7 @@ func main() {
)
flag.Parse()
log.Info("Starting unbound_exporter")
log.Info("Starting unbound_exporter")
exporter, err := NewUnboundExporter(*unboundHost, *unboundCa, *unboundCert, *unboundKey)
if err != nil {
panic(err)
@ -383,6 +383,6 @@ func main() {
</body>
</html>`))
})
log.Info("Listening on address:port => ", *listenAddress)
log.Info("Listening on address:port => ", *listenAddress)
log.Fatal(http.ListenAndServe(*listenAddress, nil))
}