I am trying to create a package for myself, but when I reviewed the function logger.log_background_messages(),
I checked the source code in src/robot/api/logger.py, but I couldn't find the log_background_messages() function.
I would like to ask if this function is working or not.
|
def close(self): |
|
"""Closes the connection.""" |
|
if self.tunnel: |
|
self.tunnel.close() |
|
self._sftp_client = None |
|
self._scp_transfer_client = None |
|
self._scp_all_client = None |
|
self._shell = None |
|
self.client.close() |
|
try: |
|
logger.log_background_messages() |
|
except AttributeError: |
|
pass |
I am trying to create a package for myself, but when I reviewed the function logger.log_background_messages(),
I checked the source code in src/robot/api/logger.py, but I couldn't find the log_background_messages() function.
I would like to ask if this function is working or not.
SSHLibrary/src/SSHLibrary/client.py
Lines 170 to 182 in dd07264