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 20f4684 commit 9f7a40bCopy full SHA for 9f7a40b
lib/mix/tasks/sentry.send_test_event.ex
@@ -30,9 +30,10 @@ defmodule Mix.Tasks.Sentry.SendTestEvent do
30
31
def maybe_send_event(env_name, included_envs) do
32
if env_name in included_envs do
33
- Mix.shell.info "Sending test event!"
+ Mix.shell.info "Sending test event..."
34
Sentry.capture_exception(RuntimeError.exception("Testing sending Sentry event"))
35
|> Task.await()
36
+ Mix.shell.info "Test event sent!"
37
else
38
Mix.shell.info "#{inspect env_name} is not in #{inspect included_envs} so no test event will be sent"
39
end
0 commit comments