File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
packages/language_server/src/robotcode/language_server/common/parts Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 1
1
import concurrent .futures
2
2
import functools
3
3
import itertools
4
- import logging
5
4
import time
6
5
import uuid
7
6
from concurrent .futures import CancelledError
@@ -361,7 +360,6 @@ def run_workspace_diagnostics(self) -> None:
361
360
with self ._logger .measure_time (
362
361
lambda : f"analyzing workspace for { len (documents )} documents" ,
363
362
context_name = "workspace_diagnostics" ,
364
- level = logging .CRITICAL ,
365
363
):
366
364
self .on_workspace_diagnostics_analyze (self )
367
365
@@ -444,7 +442,6 @@ def run_workspace_diagnostics(self) -> None:
444
442
with self ._logger .measure_time (
445
443
lambda : f"collect workspace diagnostic for { len (documents_to_collect )} documents" ,
446
444
context_name = "collect_workspace_diagnostics" ,
447
- level = logging .CRITICAL ,
448
445
):
449
446
breaked = False
450
447
for document in set (documents ) - set (documents_to_collect ):
You can’t perform that action at this time.
0 commit comments