diff options
Diffstat (limited to 'tvix/castore')
-rw-r--r-- | tvix/castore/src/import.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/castore/src/import.rs b/tvix/castore/src/import.rs index a31bb22a622a..6b24c7a52b22 100644 --- a/tvix/castore/src/import.rs +++ b/tvix/castore/src/import.rs @@ -145,7 +145,7 @@ async fn process_entry<'a>( /// else giving it a "non-content-addressed name". /// It's up to the caller to possibly register it somewhere (and potentially /// rename it based on some naming scheme) -#[instrument(skip(blob_service, directory_service), fields(path=?p))] +#[instrument(skip(blob_service, directory_service), fields(path=?p), err)] pub async fn ingest_path<P: AsRef<Path> + Debug>( blob_service: Arc<dyn BlobService>, directory_service: Arc<dyn DirectoryService>, |