Add indication on which target an error occured

main
Alexander Neff 2023-04-15 13:13:57 +02:00
parent 632a19fcaf
commit 4e5daefcfb
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class connection(object):
try:
self.proto_flow()
except Exception as e:
self.logger.exception(f"Exception while calling proto_flow(): {e}")
self.logger.exception(f"Exception while calling proto_flow() on target {self.host}: {e}")
@staticmethod
def proto_args(std_parser, module_parser):