From 4e5daefcfb49a842a42f8f3cb466b75b303045ed Mon Sep 17 00:00:00 2001 From: Alexander Neff Date: Sat, 15 Apr 2023 13:13:57 +0200 Subject: [PATCH] Add indication on which target an error occured --- cme/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cme/connection.py b/cme/connection.py index e0597241..3ec4927f 100755 --- a/cme/connection.py +++ b/cme/connection.py @@ -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):