Build LSP projects with verbose tracing level
Without that, the language server might trigger awkward warnings about unused imports due to trace stripping. So it's better to compile/check projects in the language server in the most expanded form.
This commit is contained in:
parent
0060804d1a
commit
51b6b77db8
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
- **aiken-lang**: Fix compiler crash on trace + expect as last expression of a clause. See #1029. @KtorZ
|
- **aiken-lang**: Fix compiler crash on trace + expect as last expression of a clause. See #1029. @KtorZ
|
||||||
- **aiken-lang**: Fix redundant warning on introduced identifiers when destructuring validator params. @KtorZ
|
- **aiken-lang**: Fix redundant warning on introduced identifiers when destructuring validator params. @KtorZ
|
||||||
|
- **aiken-lsp**: Compile project using verbose tracing, to avoid having the language server complain about unused imports. @KtorZ
|
||||||
- **uplc**: Fix (again :grimacing:) cost-models for PlutusV1 & PlutusV2. @MicroProofs
|
- **uplc**: Fix (again :grimacing:) cost-models for PlutusV1 & PlutusV2. @MicroProofs
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
|
@ -36,7 +36,7 @@ impl LspProject {
|
||||||
false,
|
false,
|
||||||
u32::default(),
|
u32::default(),
|
||||||
PropertyTest::DEFAULT_MAX_SUCCESS,
|
PropertyTest::DEFAULT_MAX_SUCCESS,
|
||||||
Tracing::silent(),
|
Tracing::verbose(),
|
||||||
None,
|
None,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue