Commit d5edcf24 authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

set batt message at debug

Showing with 1 addition and 1 deletion
+1 -1
...@@ -91,7 +91,7 @@ class PwrAbstract(ABC): ...@@ -91,7 +91,7 @@ class PwrAbstract(ABC):
def voltage(self, value): def voltage(self, value):
assert isinstance(value, float) assert isinstance(value, float)
if not self.voltage_adjustable: if not self.voltage_adjustable:
self.exec_logger.warning(f'Voltage cannot be set on {self.board_name}...') self.exec_logger.debug(f'Voltage cannot be set on {self.board_name}...')
else: else:
assert self._voltage_min < value < self._voltage_max assert self._voltage_min < value < self._voltage_max
# add actions to set the DPS voltage # add actions to set the DPS voltage
......
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