File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 4
4
section below it for the last release. -->
5
5
## \< next>
6
6
7
+ ## 25.0.20240915
8
+
7
9
* Implement type hierarchy requests
8
10
* Migrate the build infrastructure to ALIRE
9
11
* Migrate the VSIX publication infrastructure out of GitHub Actions
Original file line number Diff line number Diff line change @@ -395,7 +395,8 @@ begin
395
395
" >"
396
396
& (if VSS.Command_Line.Is_Specified (Language_GPR_Option)
397
397
then " gpr_ls" else " ada_ls" )
398
- & " _log.$T.log:buffer_size=0" & Ada.Characters.Latin_1.LF
398
+ & " _log.$T.log:buffer_size=0:buffer_size=0"
399
+ & Ada.Characters.Latin_1.LF
399
400
& " ALS.MAIN=yes" & Ada.Characters.Latin_1.LF
400
401
& " ALS.IN=no" & Ada.Characters.Latin_1.LF
401
402
& " ALS.OUT=no" & Ada.Characters.Latin_1.LF;
Original file line number Diff line number Diff line change @@ -237,7 +237,9 @@ package body LSP.Ada_Handlers is
237
237
-- Browse the log files in reverse timestamp order
238
238
for F of reverse Files.all loop
239
239
-- Filter out files like traces.cfg
240
- if GNATCOLL.Utils.Ends_With (+F.Base_Name, " .log" ) then
240
+ if GNATCOLL.Utils.Ends_With (+F.Base_Name, " .log" )
241
+ or else GNATCOLL.Utils.Ends_With (+F.Base_Name, " .txt" )
242
+ then
241
243
Cpt := Cpt + 1 ;
242
244
-- Delete the old logs
243
245
if Cpt > Self.Configuration.Log_Threshold then
You can’t perform that action at this time.
0 commit comments