Using VSCode with ElixirLS installed. I have a warning in MixProject. This doesn’t stop the code from running though. I uninstalled/reinstalled ElixirLS, and cleaned _build.
an exception was raised:
** (RuntimeError) build without intercepted logger []
(language_server 0.15.1) lib/language_server/build.ex:109: ElixirLS.LanguageServer.Build.reload_project/0
...
My file is completely standard:
use Mix.Project
def project do
[...
aliases: aliases(),
deps: deps()
]
end
def application do
[
mod: {PhxSolid.Application, []},
extra_applications: [:logger, :runtime_tools, :os_mon]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[...]
end
defp aliases do
[...]
end
I got this warning over and over. I removed this extension and am trying Mat McLoughlins’. How do you restart the language server? I don’t have this option
Sorry for my late reply. I erased everything, the .elixir_ls file, _build, and removed the plugin. Then I reinstalled the plugin and this stopped. I didn’t change anything else. I do not modify erlang logger. Everything is back to normal !?