mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Change log level of publisher binding from error to debug
This commit is contained in:
parent
622365a774
commit
804cc62c44
2 changed files with 3 additions and 2 deletions
1
changelog/66179.fixed.md
Normal file
1
changelog/66179.fixed.md
Normal file
|
@ -0,0 +1 @@
|
|||
Change log level of publisher binding from error to debug.
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue