diff options
-rw-r--r-- | Dockerfile | 3 | ||||
-rw-r--r-- | examples/basalt.rs | 2 |
2 files changed, 2 insertions, 3 deletions
@@ -2,8 +2,7 @@ FROM archlinux:latest COPY target/release/examples/basalt /root/basalt -CMD /root/basalt ENV RUST_BACKTRACE=1 ENV RUST_LOG=netapp=info,netapp::peering=debug,basalt=info -CMD /garage/garage server -c /garage/config.toml +CMD /root/basalt diff --git a/examples/basalt.rs b/examples/basalt.rs index ea1ea7d..4c86cf8 100644 --- a/examples/basalt.rs +++ b/examples/basalt.rs @@ -128,7 +128,7 @@ async fn sampling_loop(netapp: Arc<NetApp>, basalt: Arc<Basalt>) { let peers = basalt.sample(10); for p in peers { - info!("KYEV S {}", hex::encode(p)); + debug!("kyev S {}", hex::encode(p)); let netapp2 = netapp.clone(); tokio::spawn(async move { |