Skip to content

Commit

Permalink
revert to error level if fail to listen on address because of CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
stou committed Jan 7, 2019
1 parent 1c37372 commit 4e3ca4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmlrpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func (p *XmlRPC) startHttpServer(user string, password string, protocol string,
p.listeners[protocol] = listener
http.Serve(listener, mux)
} else {
log.WithFields(log.Fields{"addr": listenAddr, "protocol": protocol}).Fatal("fail to listen on address")
log.WithFields(log.Fields{"addr": listenAddr, "protocol": protocol}).Error("fail to listen on address")
}

}
Expand Down

0 comments on commit 4e3ca4e

Please sign in to comment.