We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edbf79d commit 85463f9Copy full SHA for 85463f9
exec_helpers/_ssh_client_base.py
@@ -284,7 +284,9 @@ def __init__(
284
285
# Init super with host and real port and username
286
super(SSHClientBase, self).__init__(
287
- logger=logging.getLogger(self.__class__.__name__).getChild(f"({real_auth.username}@{host}:{self.__port})")
+ logger=logging.getLogger(f"{self.__module__}.{self.__class__.__name__}").getChild(
288
+ f"({real_auth.username}@{host}:{self.__port})"
289
+ )
290
)
291
292
# Update config for target host: merge with data from credentials and parameters.
0 commit comments