diff --git a/CHANGELOG.md b/CHANGELOG.md index 61dc448b..8f97e92a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] +### Fixed +- control_panel - Fix init of ManualOutputControl (remove old logger call). ## [0.17.3] - 2024-05-06 ### Fixed diff --git a/qualang_tools/control_panel/manual_output_control.py b/qualang_tools/control_panel/manual_output_control.py index 2d408605..29d158a8 100644 --- a/qualang_tools/control_panel/manual_output_control.py +++ b/qualang_tools/control_panel/manual_output_control.py @@ -42,7 +42,6 @@ def __init__( :param array-like elements_to_control: A list of elements to be controlled. If empty, all elements in the config are included. """ - logger.setLevel("WARNING") self.qmm = QuantumMachinesManager(host=host, port=port) if close_previous: self.qmm.close_all_quantum_machines()