From deec7b1a0450b36aba3eb96c51c145fa146e07a2 Mon Sep 17 00:00:00 2001 From: Guillaume <sagitta1618@gmail.com> Date: Wed, 2 Nov 2022 11:16:24 +0000 Subject: [PATCH] changing update_settings logger to info (as it's important to know current parameters, not just for debug I think) --- ohmpi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ohmpi.py b/ohmpi.py index d22ab1fc..a2e23f59 100644 --- a/ohmpi.py +++ b/ohmpi.py @@ -1388,7 +1388,7 @@ class OhmPi(object): with open(config) as json_file: dic = json.load(json_file) self.settings.update(dic) - self.exec_logger.debug('Acquisition parameters updated: ' + str(self.settings)) + self.exec_logger.info('Acquisition parameters updated: ' + str(self.settings)) status = True except Exception as e: self.exec_logger.warning('Unable to update settings.') -- GitLab