# HG changeset patch # User ioannis # Date 1591647857 -10800 # Node ID 79a75340ae30224b90f00898b7fc864a30d798a6 # Parent 49f1419b74fc69a2c8015e7a6afce87ac0ea5812 Change log level of some messages from info to debug. diff -r 49f1419b74fc -r 79a75340ae30 atmospheric_lidar/licel.py --- a/atmospheric_lidar/licel.py Sat May 02 19:26:49 2020 +0300 +++ b/atmospheric_lidar/licel.py Mon Jun 08 23:24:17 2020 +0300 @@ -142,7 +142,7 @@ ADCrange = self.discriminator # Discriminator value already in mV if self.is_photodiode and (self.adcbits == 0): - logger.info( + logger.debug( "Assuming adcbits equal 1. This is a bug in current licel format when storing photodiode data.") channel_data = norm * ADCrange / (2 ** self.adcbits) else: diff -r 49f1419b74fc -r 79a75340ae30 atmospheric_lidar/licelv2.py --- a/atmospheric_lidar/licelv2.py Sat May 02 19:26:49 2020 +0300 +++ b/atmospheric_lidar/licelv2.py Mon Jun 08 23:24:17 2020 +0300 @@ -96,7 +96,7 @@ ADCrange = self.discriminator # Discriminator value already in mV if self.is_photodiode and (self.adcbits == 0): - logger.info("Assuming adcbits equal 1. This is a bug in current licel format when storing photodiode data.") + logger.debug("Assuming adcbits equal 1. This is a bug in current licel format when storing photodiode data.") channel_data = norm * ADCrange / (2 ** self.adcbits) else: channel_data = norm * ADCrange / ((2 ** self.adcbits) - 1) # Licel LabView code has a bug (does not account -1). @@ -162,7 +162,6 @@ self.latitude = float(self.raw_info['latitude']) self.zenith_angle_raw = float(self.raw_info['zenith_angle']) - logger.debug('Fix zenith angle? %s' % self.fix_zenith_angle) if self.fix_zenith_angle: logger.debug('Fixing zenith angle.')