From 786e9dbd745eefe165a2e7381a977874b86478e2 Mon Sep 17 00:00:00 2001 From: Paul van Tilburg Date: Fri, 9 Oct 2020 18:36:36 +0200 Subject: [PATCH] Use println to log status updates (for now) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 3a843e9..64ade05 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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);