summaryrefslogtreecommitdiffstats
path: root/src/app
diff options
context:
space:
mode:
authorClement Tsang <clementjhtsang@gmail.com>2019-09-25 00:37:17 -0400
committerClementTsang <clementjhtsang@gmail.com>2019-09-25 01:59:58 -0400
commit9df0b2e4e202ffb225a3616bdf1dbe3cd830fe84 (patch)
tree4f72d8430e3e7fc99d149f2883927436e859afa8 /src/app
parentbc3169a4df3c0749f6ea08fbca7b235cce3f77d7 (diff)
Support for key events in windows works.
Diffstat (limited to 'src/app')
-rw-r--r--src/app/data_collection/temperature.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/app/data_collection/temperature.rs b/src/app/data_collection/temperature.rs
index 8c05a5f6..274e4175 100644
--- a/src/app/data_collection/temperature.rs
+++ b/src/app/data_collection/temperature.rs
@@ -40,7 +40,6 @@ pub async fn get_temperature_data(sys : &System, temp_type : &TemperatureType) -
}
else if cfg!(target_os = "windows") {
let sensor_data = sys.get_components_list();
- debug!("TEMPS: {:?}", sensor_data);
for component in sensor_data {
temperature_vec.push(TempData {
component_name : Box::from(component.get_label()),