use tracing for logs

This commit is contained in:
cy 2025-04-13 23:10:50 -04:00
parent 202b222b83
commit b1134d5d6e
Signed by: cy
SSH key fingerprint: SHA256:o/geVWV4om1QhUSkKvDQeW/eAihwnjyXkqMwrVdbuts
6 changed files with 163 additions and 81 deletions

View file

@ -5,7 +5,6 @@ use aws_sdk_s3::{
types::{CompletedMultipartUpload, CompletedPart},
};
use futures::future::join_all;
use log::debug;
use nix_compat::{
narinfo::{self, NarInfo, SigningKey},
nixbase32,
@ -13,6 +12,7 @@ use nix_compat::{
};
use sha2::{Digest, Sha256};
use tokio::{io::AsyncReadExt, process::Command};
use tracing::debug;
use crate::path_info::PathInfo;