You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/language_server/lib/language_server/cli.ex
+22-7Lines changed: 22 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -90,24 +90,39 @@ defmodule ElixirLS.LanguageServer.CLI do
90
90
defcheck_otp_doc_chunks()do
91
91
ifmatch?({:error,_},Code.fetch_docs(:erlang))do
92
92
JsonRpc.show_message(:warning,"OTP compiled without EEP48 documentation chunks")
93
-
Logger.warn("OTP compiled without EEP48 documentation chunks. Language features for erlang modules will run in limited mode. Please reinstall or rebuild OTP with approperiate flags.")
93
+
94
+
Logger.warn(
95
+
"OTP compiled without EEP48 documentation chunks. Language features for erlang modules will run in limited mode. Please reinstall or rebuild OTP with approperiate flags."
JsonRpc.show_message(:error,"Unable to build dialyzer PLT. Most likely there are problems with your OTP and elixir installation.")
31
+
JsonRpc.show_message(
32
+
:error,
33
+
"Unable to build dialyzer PLT. Most likely there are problems with your OTP and elixir installation."
34
+
)
35
+
29
36
Logger.error("Dialyzer PLT build process exited with reason: #{inspect(reason)}")
30
-
Logger.warn("Dialyzer support disabled. Most likely there are problems with your elixir and OTP installation. Visit https://github.com/elixir-lsp/elixir-ls/issues/540 for help")
37
+
38
+
Logger.warn(
39
+
"Dialyzer support disabled. Most likely there are problems with your elixir and OTP installation. Visit https://github.com/elixir-lsp/elixir-ls/issues/540 for help"
40
+
)
41
+
31
42
# NOTE We do not call Dialyzer.analysis_finished. LS keeps working and building normally
32
43
# only dialyzer is not being triggered after every build
0 commit comments