Redact list source
This commit is contained in:
parent
67daa8a4ae
commit
6e97109946
1 changed files with 3 additions and 3 deletions
6
main.go
6
main.go
|
@ -246,12 +246,12 @@ func main() {
|
|||
|
||||
// ------------------------- Configured peer setup ------------------------
|
||||
if cfg.PeerListURL != "" {
|
||||
log.Printf("Fetching peer list from %s...", cfg.PeerListURL)
|
||||
log.Print("Fetching peer list...")
|
||||
existing := len(cfg.Peers)
|
||||
func() {
|
||||
resp, err := http.Get(cfg.PeerListURL)
|
||||
if err != nil {
|
||||
log.Fatalf("Couldn't fetch peer list: %v", err)
|
||||
log.Fatalf("Couldn't fetch peer list!")
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
|
@ -283,7 +283,7 @@ func main() {
|
|||
//log.Printf("resolved %q to %v", peerStr, raddr)
|
||||
|
||||
if raddr.IP.Equal(localIP) {
|
||||
log.Print("peer == me, skipping")
|
||||
//log.Print("peer == me, skipping")
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue