We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b00da42 + 073ef4d commit 4287d65Copy full SHA for 4287d65
source/ada/lsp-ada_driver.adb
@@ -618,9 +618,12 @@ begin
618
Server.Run
619
(GPR_Handler'Unchecked_Access,
620
Tracer'Unchecked_Access,
621
- In_Logger => (if In_Trace.Is_Active
+ -- Disable the In/Out additional logger if the global
622
+ -- ALS.MAIN.LOGGER trace is not active or if the specific
623
+ -- ALS.IN/ALS.OUT traces are not active.
624
+ In_Logger => (if Server_Logger_Trace.Is_Active and then In_Trace.Is_Active
625
then In_Logger'Unchecked_Access else null),
- Out_Logger => (if Out_Trace.Is_Active
626
+ Out_Logger => (if Server_Logger_Trace.Is_Active and then Out_Trace.Is_Active
627
then Out_Logger'Unchecked_Access else null));
628
629
else
0 commit comments