Skip to content

Commit d88550a

Browse files
committed
chore(core): add debug log of final config
1 parent ac304d9 commit d88550a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use {
77
registry::client::{LiveRegistryClient, RegistryClient},
88
},
99
clap::error::ErrorKind,
10-
log::error,
10+
log::{debug, error},
1111
std::{process::exit, sync::Arc},
1212
};
1313

@@ -48,6 +48,7 @@ async fn main() {
4848
let io = LiveDiskIo::new();
4949
let registry_client: Arc<dyn RegistryClient> = Arc::new(LiveRegistryClient::new());
5050
let (ctx, registry_updates) = syncpack::syncpack(&args, &io, &registry_client).await?;
51+
debug!("config: {:#?}", ctx.config);
5152
syncpack::run(ctx, registry_updates, &io)
5253
}
5354
.await;

0 commit comments

Comments
 (0)