@@ -172,22 +172,22 @@ impl<A: Accessor> LayeredAccessor for MinitraceAccessor<A> {
172
172
self . inner . append ( path, args) . await
173
173
}
174
174
175
- #[ trace( "copy" , enter_on_poll = true ) ]
175
+ #[ trace( enter_on_poll = true ) ]
176
176
async fn copy ( & self , from : & str , to : & str , args : OpCopy ) -> Result < RpCopy > {
177
177
self . inner ( ) . copy ( from, to, args) . await
178
178
}
179
179
180
- #[ trace( "rename" , enter_on_poll = true ) ]
180
+ #[ trace( enter_on_poll = true ) ]
181
181
async fn rename ( & self , from : & str , to : & str , args : OpRename ) -> Result < RpRename > {
182
182
self . inner ( ) . rename ( from, to, args) . await
183
183
}
184
184
185
- #[ trace( "stat" , enter_on_poll = true ) ]
185
+ #[ trace( enter_on_poll = true ) ]
186
186
async fn stat ( & self , path : & str , args : OpStat ) -> Result < RpStat > {
187
187
self . inner . stat ( path, args) . await
188
188
}
189
189
190
- #[ trace( "delete" , enter_on_poll = true ) ]
190
+ #[ trace( enter_on_poll = true ) ]
191
191
async fn delete ( & self , path : & str , args : OpDelete ) -> Result < RpDelete > {
192
192
self . inner . delete ( path, args) . await
193
193
}
@@ -200,17 +200,17 @@ impl<A: Accessor> LayeredAccessor for MinitraceAccessor<A> {
200
200
. await
201
201
}
202
202
203
- #[ trace( "presign" , enter_on_poll = true ) ]
203
+ #[ trace( enter_on_poll = true ) ]
204
204
async fn presign ( & self , path : & str , args : OpPresign ) -> Result < RpPresign > {
205
205
self . inner . presign ( path, args) . await
206
206
}
207
207
208
- #[ trace( "batch" , enter_on_poll = true ) ]
208
+ #[ trace( enter_on_poll = true ) ]
209
209
async fn batch ( & self , args : OpBatch ) -> Result < RpBatch > {
210
210
self . inner . batch ( args) . await
211
211
}
212
212
213
- #[ trace( "blocking_create" ) ]
213
+ #[ trace]
214
214
fn blocking_create_dir ( & self , path : & str , args : OpCreateDir ) -> Result < RpCreateDir > {
215
215
self . inner . blocking_create_dir ( path, args)
216
216
}
@@ -235,22 +235,22 @@ impl<A: Accessor> LayeredAccessor for MinitraceAccessor<A> {
235
235
} )
236
236
}
237
237
238
- #[ trace( "blocking_copy" ) ]
238
+ #[ trace]
239
239
fn blocking_copy ( & self , from : & str , to : & str , args : OpCopy ) -> Result < RpCopy > {
240
240
self . inner ( ) . blocking_copy ( from, to, args)
241
241
}
242
242
243
- #[ trace( "blocking_rename" ) ]
243
+ #[ trace]
244
244
fn blocking_rename ( & self , from : & str , to : & str , args : OpRename ) -> Result < RpRename > {
245
245
self . inner ( ) . blocking_rename ( from, to, args)
246
246
}
247
247
248
- #[ trace( "blocking_stat" ) ]
248
+ #[ trace]
249
249
fn blocking_stat ( & self , path : & str , args : OpStat ) -> Result < RpStat > {
250
250
self . inner . blocking_stat ( path, args)
251
251
}
252
252
253
- #[ trace( "blocking_delete" ) ]
253
+ #[ trace]
254
254
fn blocking_delete ( & self , path : & str , args : OpDelete ) -> Result < RpDelete > {
255
255
self . inner . blocking_delete ( path, args)
256
256
}
0 commit comments