Change log level of publisher binding from error to debug

This commit is contained in:
Clay Oster 2024-03-24 14:43:37 -05:00 committed by Daniel Wozniak
parent 622365a774
commit 804cc62c44
2 changed files with 3 additions and 2 deletions

1
changelog/66179.fixed.md Normal file
View file

@ -0,0 +1 @@
Change log level of publisher binding from error to debug.

View file

@ -1403,12 +1403,12 @@ class PublishServer(salt.transport.base.DaemonizedPublishServer):
ssl=ctx,
)
if self.pub_path:
log.error(
log.debug(
"Publish server binding pub to %s ssl=%r", self.pub_path, self.ssl
)
sock = tornado.netutil.bind_unix_socket(self.pub_path)
else:
log.error(
log.debug(
"Publish server binding pub to %s:%s ssl=%r",
self.pub_host,
self.pub_port,