Commit deec7b1a authored by Guillaume Blanchy's avatar Guillaume Blanchy
Browse files

changing update_settings logger to info (as it's important to know

current parameters, not just for debug I think)
Showing with 1 addition and 1 deletion
+1 -1
...@@ -1388,7 +1388,7 @@ class OhmPi(object): ...@@ -1388,7 +1388,7 @@ class OhmPi(object):
with open(config) as json_file: with open(config) as json_file:
dic = json.load(json_file) dic = json.load(json_file)
self.settings.update(dic) 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 status = True
except Exception as e: except Exception as e:
self.exec_logger.warning('Unable to update settings.') self.exec_logger.warning('Unable to update settings.')
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment