aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmd/watch.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/watch.rs')
-rw-r--r--src/cmd/watch.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/watch.rs b/src/cmd/watch.rs
index 6806a0e..202e570 100644
--- a/src/cmd/watch.rs
+++ b/src/cmd/watch.rs
@@ -76,7 +76,7 @@ impl crate::config::Config for Config {
Box::new(WatchSession::new(make_connector, &auth))
};
tokio::run(fut.map_err(|e| {
- eprintln!("{}", e);
+ log::error!("{}", e);
}));
Ok(())
}