Changed server not bind to any port to debug, as it's a plugin only option (#1743)

This commit is contained in:
Miguel de la Cruz 2021-11-03 15:24:31 +01:00 committed by GitHub
parent ef22efd917
commit 59413a9fc4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,7 +98,7 @@ func (ws *Server) registerRoutes() {
func (ws *Server) Start() {
ws.registerRoutes()
if ws.port == -1 {
ws.logger.Error("server not bind to any port")
ws.logger.Debug("server not bind to any port")
return
}