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.
1 parent 8fd65d4 commit e6ca132Copy full SHA for e6ca132
mix.exs
@@ -18,7 +18,7 @@ defmodule Sentry.Mixfile do
18
def application do
19
[
20
mod: {Sentry, []},
21
- extra_applications: [:logger]
+ extra_applications: extra_applications(Mix.env())
22
]
23
end
24
@@ -47,4 +47,12 @@ defmodule Sentry.Mixfile do
47
48
49
defp elixirc_paths(_), do: ["lib"]
50
+
51
+ defp extra_applications(:test) do
52
+ [:telemetry, :logger]
53
+ end
54
55
+ defp extra_applications(_) do
56
+ [:logger]
57
58
0 commit comments