In backend.serial, meter_data.save() was supposed to return True if the model has been saved. However, it doesn't and therefore, the log files contain irritating information.
if meter_data.save():
meter_diagnose_str += ': saved'
else:
meter_diagnose_str += ': not saved'
In
backend.serial
,meter_data.save()
was supposed to returnTrue
if the model has been saved. However, it doesn't and therefore, the log files contain irritating information.