server: remove 'SSH_AUTH_SOCK=' from logging

This commit is contained in:
Roman Zeyde
2016-11-06 20:50:02 +02:00
parent 92f6751ccb
commit 83f17704cb

View File

@@ -31,7 +31,7 @@ def unix_domain_socket_server(sock_path):
Listen on it, and delete it after the generated context is over.
"""
log.debug('serving on SSH_AUTH_SOCK=%s', sock_path)
log.debug('serving on %s', sock_path)
remove_file(sock_path)
server = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)