Skip to content

Commit

Permalink
Change log.error to log.info
Browse files Browse the repository at this point in the history
  • Loading branch information
cro committed Sep 21, 2022
1 parent 5b2b6e8 commit 48affba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions salt/transport/zeromq.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,9 +326,9 @@ def zmq_device(self):
)

log.info("Setting up the master communication server")
log.error("ReqServer clients %s", self.uri)
log.info("ReqServer clients %s", self.uri)
self.clients.bind(self.uri)
log.error("ReqServer workers %s", self.w_uri)
log.info("ReqServer workers %s", self.w_uri)
self.workers.bind(self.w_uri)

while True:
Expand Down

1 comment on commit 48affba

@OrangeDog
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This probably needs a changelog entry as fixing #62686.

Please sign in to comment.