fix: remove unnecessary println!
Some checks are pending
Conventional Commits / Conventional Commits (push) Waiting to run
Some checks are pending
Conventional Commits / Conventional Commits (push) Waiting to run
Fix: #11 Signed-off-by: Christina Sørensen <christina@cafkafk.com>
This commit is contained in:
parent
eade90b797
commit
6e479e7ad2
2 changed files with 2 additions and 3 deletions
|
@ -115,7 +115,7 @@ async fn main() -> io::Result<()> {
|
|||
let client = client.clone();
|
||||
let domain = domain.clone();
|
||||
tokio::spawn(async move {
|
||||
log::info!("connecting to {domain} {domain_addr:#?} for {hash}");
|
||||
log::trace!("connecting to {domain} {domain_addr:#?} for {hash}");
|
||||
net::nar_exists(client, &domain, &hash, SLIDE).await
|
||||
})
|
||||
})
|
||||
|
@ -131,7 +131,6 @@ async fn main() -> io::Result<()> {
|
|||
"Checked {count} packages in {} seconds",
|
||||
network_time.elapsed().as_secs()
|
||||
);
|
||||
println!("");
|
||||
println!(
|
||||
"Found {:#?}/{} ({:.2}%) in cache",
|
||||
sum,
|
||||
|
|
|
@ -33,7 +33,7 @@ pub fn get_requisites(host: &str, config_dir: &str) -> String {
|
|||
serde_json::from_str(&String::from_utf8(get_drv_path.stdout).unwrap()).unwrap();
|
||||
let drv_path = drv_path_json[0]["drvPath"].clone();
|
||||
|
||||
println!("drv_path: {}", &drv_path);
|
||||
log::debug!("drv_path: {}", &drv_path);
|
||||
|
||||
let get_drv_requisites = Command::new("nix-store")
|
||||
.args(["--query", "--requisites", drv_path.as_str().unwrap()])
|
||||
|
|
Loading…
Reference in a new issue