We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac304d9 commit d88550aCopy full SHA for d88550a
1 file changed
src/main.rs
@@ -7,7 +7,7 @@ use {
7
registry::client::{LiveRegistryClient, RegistryClient},
8
},
9
clap::error::ErrorKind,
10
- log::error,
+ log::{debug, error},
11
std::{process::exit, sync::Arc},
12
};
13
@@ -48,6 +48,7 @@ async fn main() {
48
let io = LiveDiskIo::new();
49
let registry_client: Arc<dyn RegistryClient> = Arc::new(LiveRegistryClient::new());
50
let (ctx, registry_updates) = syncpack::syncpack(&args, &io, ®istry_client).await?;
51
+ debug!("config: {:#?}", ctx.config);
52
syncpack::run(ctx, registry_updates, &io)
53
}
54
.await;
0 commit comments