Log data written to file
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Blizzard Finnegan 2023-06-23 11:25:39 -04:00
parent f5ca4bd2f7
commit f34356da10
Signed by: blizzardfinnegan
GPG key ID: 61C1E13067E0018E

View file

@ -338,7 +338,7 @@ impl Device{
let saved_temps = (self.temps - self.init_temps) + self.temp_offset;
output_data.push_str(&saved_temps.to_string());
output_data.push_str("\n");
log::trace!("final data to write to '{:?}': [{:?}]",file_name,output_data);
log::debug!("final data to write to '{:?}': [{:?}]",file_name,output_data);
let temp = file_name.write_all(output_data.as_bytes());
match temp{
Err(error) => {