From 69341fbeb84a8cc57b5bac7ab4baeec67117d8bf Mon Sep 17 00:00:00 2001 From: gnthibault Date: Thu, 29 Dec 2022 22:45:05 +0100 Subject: [PATCH] Small fix in phd2 server logging --- Guider/GuiderPHD2.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Guider/GuiderPHD2.py b/Guider/GuiderPHD2.py index 09e76e0..f05e26c 100644 --- a/Guider/GuiderPHD2.py +++ b/Guider/GuiderPHD2.py @@ -212,7 +212,8 @@ def get_profile_id_from_name(self, profile_name): def set_profile_from_name(self, profile_name): profile_id, profiles = self.get_profile_id_from_name(profile_name=profile_name) - self.logger.debug(f"About to set profile with id {profile_name} among the following list: {profiles}") + self.logger.debug(f"About to set profile with name {profile_name} and id {profile_id} among the following list:" + f" {profiles}") self.set_profile(profile_id) def status(self):