Improve derbugg logging (#1738)

* Improve derbugg logging

Make it more readable

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>

* Fix excessive logging

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>

---------

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2024-06-13 00:25:24 +10:00 committed by GitHub
parent a2d2c5d85c
commit 4687726c66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 54 additions and 15 deletions

View file

@ -212,7 +212,7 @@ impl Download<'_> {
///
/// NOTE that this API does not support gnu extension sparse file unlike
/// [`Download::and_extract`].
#[instrument(skip(visitor))]
#[instrument(skip(self, visitor))]
pub async fn and_visit_tar(
self,
fmt: TarBasedFmt,
@ -239,7 +239,10 @@ impl Download<'_> {
/// Download a file from the provided URL and extract it to the provided path.
///
/// NOTE that this will only extract directory and regular files.
#[instrument(skip(path))]
#[instrument(
skip(self, path),
fields(path = format_args!("{}", path.as_ref().display()))
)]
pub async fn and_extract(
self,
fmt: PkgFmt,
@ -277,7 +280,7 @@ impl Download<'_> {
inner(self, fmt, path.as_ref()).await
}
#[instrument]
#[instrument(skip(self))]
pub async fn into_bytes(self) -> Result<Bytes, DownloadError> {
let bytes = self.content.into_response().await?.bytes().await?;
if let Some(verifier) = self.data_verifier {