Add indication on which target an error occured

This commit is contained in:
Alexander Neff
2023-04-15 13:13:57 +02:00
parent 632a19fcaf
commit 4e5daefcfb
+1 -1
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):