File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
crates/ty_server/src/server/api/requests Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,6 @@ impl BackgroundRequestHandler for WorkspaceDiagnosticRequestHandler {
102
102
client : & Client ,
103
103
params : WorkspaceDiagnosticParams ,
104
104
) -> Result < WorkspaceDiagnosticReportResult > {
105
- tracing:: debug!( "Computing workspace diagnostics" ) ;
106
105
let index = snapshot. index ( ) ;
107
106
108
107
if !index. global_settings ( ) . diagnostic_mode ( ) . is_workspace ( ) {
@@ -180,14 +179,6 @@ impl BackgroundRequestHandler for WorkspaceDiagnosticRequestHandler {
180
179
// Don't respond, keep the response open (long polling).
181
180
return ;
182
181
}
183
-
184
- tracing:: debug!(
185
- "Respond to workspace diagnostic request with full report because some diagnostics changed"
186
- ) ;
187
- } else {
188
- tracing:: debug!(
189
- "Respond to workspace diagnostic request because it's a partial result or an error"
190
- ) ;
191
182
}
192
183
193
184
client. respond ( id, result) ;
@@ -431,8 +422,6 @@ impl<'a> ResponseWriter<'a> {
431
422
. and_then ( |key| self . index . make_document_ref ( key) . ok ( ) )
432
423
. map ( |doc| i64:: from ( doc. version ( ) ) ) ;
433
424
434
- tracing:: debug!( "Reporting empty diagnostics for {}" , previous_url) ;
435
-
436
425
let new_result_id = Diagnostics :: result_id_from_hash ( & [ ] ) ;
437
426
438
427
let report = match new_result_id {
You can’t perform that action at this time.
0 commit comments