Use println to log status updates (for now)

This commit is contained in:
Paul van Tilburg 2020-10-09 18:36:36 +02:00
parent 99d8a4c133
commit 786e9dbd74
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ async fn update_loop() -> Result<()> {
total_kwh,
last_updated,
};
dbg!(&status);
println!("Updated status to: {:#?}", status);
status_guard.replace(status);
drop(status_guard);