fix(tvix/castore): don't emit ret as INFO
This otherwise gets a bit spammy. Change-Id: I288350a600d79a394c239f253424ad55bc3cefc5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10954 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
parent
8253d91eaa
commit
28f5c13c53
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@ use async_stream::stream;
|
||||||
use futures::pin_mut;
|
use futures::pin_mut;
|
||||||
use futures::Stream;
|
use futures::Stream;
|
||||||
use std::fs::FileType;
|
use std::fs::FileType;
|
||||||
|
use tracing::Level;
|
||||||
|
|
||||||
#[cfg(target_family = "unix")]
|
#[cfg(target_family = "unix")]
|
||||||
use std::os::unix::ffi::OsStrExt;
|
use std::os::unix::ffi::OsStrExt;
|
||||||
|
@ -297,7 +298,7 @@ impl MerkleInvariantChecker {
|
||||||
/// Ingests elements from the given stream of [`DirEntry`] into a the passed [`BlobService`] and
|
/// Ingests elements from the given stream of [`DirEntry`] into a the passed [`BlobService`] and
|
||||||
/// [`DirectoryService`].
|
/// [`DirectoryService`].
|
||||||
/// It does not follow symlinks at the root, they will be ingested as actual symlinks.
|
/// It does not follow symlinks at the root, they will be ingested as actual symlinks.
|
||||||
#[instrument(skip_all, ret, err)]
|
#[instrument(skip_all, ret(level = Level::TRACE), err)]
|
||||||
pub async fn ingest_entries<'a, BS, DS, S>(
|
pub async fn ingest_entries<'a, BS, DS, S>(
|
||||||
blob_service: BS,
|
blob_service: BS,
|
||||||
directory_service: DS,
|
directory_service: DS,
|
||||||
|
|
Loading…
Reference in a new issue