From 7fba87be60362d5811a113dd1e979faaf542287c Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Tue, 16 May 2023 03:06:36 +0000 Subject: [PATCH] remove explicit tracing from fs --- crates/turbo-tasks-fs/src/lib.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crates/turbo-tasks-fs/src/lib.rs b/crates/turbo-tasks-fs/src/lib.rs index 3fcfa9ae58d371..8340b8b42cca5c 100644 --- a/crates/turbo-tasks-fs/src/lib.rs +++ b/crates/turbo-tasks-fs/src/lib.rs @@ -51,7 +51,6 @@ use tokio::{ fs, io::{AsyncBufReadExt, AsyncReadExt, BufReader}, }; -use tracing::instrument; use turbo_tasks::{ mark_stateful, primitives::{BoolVc, StringReadRef, StringVc}, @@ -506,7 +505,6 @@ impl Debug for DiskFileSystem { #[turbo_tasks::value_impl] impl FileSystem for DiskFileSystem { #[turbo_tasks::function] - #[instrument(skip_all)] async fn read(&self, fs_path: FileSystemPathVc) -> Result { let full_path = self.to_sys_path(fs_path).await?; self.register_invalidator(&full_path)?; @@ -523,7 +521,6 @@ impl FileSystem for DiskFileSystem { } #[turbo_tasks::function] - #[instrument(skip_all)] async fn read_dir(&self, fs_path: FileSystemPathVc) -> Result { let full_path = self.to_sys_path(fs_path).await?; self.register_dir_invalidator(&full_path)?; @@ -578,7 +575,6 @@ impl FileSystem for DiskFileSystem { } #[turbo_tasks::function] - #[instrument(skip_all)] async fn read_link(&self, fs_path: FileSystemPathVc) -> Result { let full_path = self.to_sys_path(fs_path).await?; self.register_invalidator(&full_path)?; @@ -668,7 +664,6 @@ impl FileSystem for DiskFileSystem { } #[turbo_tasks::function] - #[instrument(skip_all)] async fn write( &self, fs_path: FileSystemPathVc, @@ -740,7 +735,6 @@ impl FileSystem for DiskFileSystem { } #[turbo_tasks::function] - #[instrument(skip_all)] async fn write_link( &self, fs_path: FileSystemPathVc, @@ -818,7 +812,6 @@ impl FileSystem for DiskFileSystem { } #[turbo_tasks::function] - #[instrument(skip_all)] async fn metadata(&self, fs_path: FileSystemPathVc) -> Result { let full_path = self.to_sys_path(fs_path).await?; self.register_invalidator(&full_path)?;