From c52ad9360c507216f912548b6d2ec6a85d07976b Mon Sep 17 00:00:00 2001 From: elanaku Date: Fri, 15 Nov 2024 09:27:07 -0300 Subject: [PATCH] Fixup! CBP Cal modify debug statements --- .../ts/externalscripts/maintel/make_cbp_throughput_scan.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/ts/externalscripts/maintel/make_cbp_throughput_scan.py b/python/lsst/ts/externalscripts/maintel/make_cbp_throughput_scan.py index 0682814f..345fdbf2 100755 --- a/python/lsst/ts/externalscripts/maintel/make_cbp_throughput_scan.py +++ b/python/lsst/ts/externalscripts/maintel/make_cbp_throughput_scan.py @@ -462,7 +462,7 @@ async def laser_start_propagate(self) -> None: laser_state = await self.tunablelaser.evt_detailedState.next( flush=True, timeout=self.long_timeout ) - self.log.debug(f"HERE: {laser_state.DetailedState}") + self.log.debug(f"laser state is: {laser_state}") if laser_state.DetailedState not in { LaserDetailedState.PROPAGATING_CONTINUOUS_MODE, @@ -701,7 +701,7 @@ async def take_calibration_sequence(self): wavelengths=calibration_wavelengths, ) - self.log.debug(f"exposure table is {exposure_table}") + self.log.debug(f"{exposure_table}") for i, exposure in exposure_table.iterrows(): self.log.debug(f"exposure is {exposure}")