summaryrefslogtreecommitdiff
path: root/examples/watch_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/watch_test.rs')
-rw-r--r--examples/watch_test.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/watch_test.rs b/examples/watch_test.rs
index d4d48a0..c697a53 100644
--- a/examples/watch_test.rs
+++ b/examples/watch_test.rs
@@ -22,6 +22,7 @@ async fn main() {
if watch.changed().await.is_err() {
break;
}
- println!("\n{:?}", watch.borrow_and_update());
+ //println!("\n{:?}", watch.borrow_and_update());
+ println!("changed, {} values", watch.borrow_and_update().len());
}
}