We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d4a275 commit 66e8416Copy full SHA for 66e8416
source/server/lsp-servers.adb
@@ -853,6 +853,10 @@ package body LSP.Servers is
853
end;
854
end select;
855
end loop;
856
+ exception
857
+ when E : others =>
858
+ -- Message handler should never raise any exception
859
+ Server.Tracer.Trace_Exception (E, "Execute_Jobs raised error!");
860
end Execute_Jobs;
861
862
---------------------
@@ -884,7 +888,7 @@ package body LSP.Servers is
884
888
exception
885
889
when E : others =>
886
890
-- Message handler should never raise any exception
887
- Server.Tracer.Trace_Exception (E, "Message handler raised error!");
891
+ Server.Tracer.Trace_Exception (E, "Process_Message raised error!");
892
end Process_Message;
893
894
Request : Server_Message_Access;
0 commit comments