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 42c577b commit 46b1a18Copy full SHA for 46b1a18
lib/sentry/sources.ex
@@ -23,14 +23,14 @@ defmodule Sentry.Sources do
23
should not be stored or referenced when reporting exceptions. Defaults to
24
`[~r"/_build/", ~r"/deps/", ~r"/priv/"]`.
25
* `:source_code_path_pattern` - a glob that is expanded to select files from the
26
- `:root_source_code_path`. Defaults to `"**/*.ex"`.
+ `:root_source_code_paths`. Defaults to `"**/*.ex"`.
27
28
An example configuration:
29
30
config :sentry,
31
dsn: "https://public:[email protected]/1",
32
enable_source_code_context: true,
33
- root_source_code_path: [File.cwd!()],
+ root_source_code_paths: [File.cwd!()],
34
context_lines: 5
35
36
### Source code storage
0 commit comments