Index: leahi_dialin/dd/modules/records.py =================================================================== diff -u -r3e68e7de9179614903fffd17966447eb846963f0 -rf65ed90f5f8af7672ae59bc5450d1a4f8935d041 --- leahi_dialin/dd/modules/records.py (.../records.py) (revision 3e68e7de9179614903fffd17966447eb846963f0) +++ leahi_dialin/dd/modules/records.py (.../records.py) (revision f65ed90f5f8af7672ae59bc5450d1a4f8935d041) @@ -231,8 +231,6 @@ @return: none """ # Get the sensor_id to identify the location of the payload - print(f'Pres cal msg recieved') - print(message) msg_list = [('sensor_id', DataTypes.U08)] result = self.process_into_vars(decoder_list = msg_list, message = message) @@ -267,7 +265,6 @@ @return: none """ # Get the sensor_id to identify the location of the payload - print(f'Temp cal msg recieved') msg_list = [('sensor_id', DataTypes.U08)] result = self.process_into_vars(decoder_list = msg_list, message = message) @@ -1135,7 +1132,6 @@ if calibration_records != {} and len(kwargs) == 2: continue - print(f'kwargs: {kwargs}') # Create the send data function send_data.append(partial(self.cmd_set_calibration_records_sensor, *args, **kwargs)) @@ -1178,7 +1174,6 @@ if calibration_records != {} and len(kwargs) == 1: continue - print(f'kwargs: {kwargs}') # Store the function but do not execute it send_data.append(partial(self.cmd_set_calibration_records_concentrate, *args, **kwargs)) @@ -1209,7 +1204,6 @@ if calibration_records != {} and len(kwargs) == 1: continue - print(f'kwargs: {kwargs}') # Store the function but do not execute it send_data.append(partial(self.cmd_set_calibration_records_accelerometer, *args, **kwargs)) @@ -1232,7 +1226,6 @@ if calibration_records != {} and len(kwargs) == 1: continue - print(f'kwargs: {kwargs}') # Store the function but do not execute it send_data.append(partial(self.cmd_set_calibration_records_blood_leak, *args, **kwargs))