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
When talking about `IO.inspect/2`, we mentioned its usefulness when placed between steps of `|>` pipelines. `dbg` does it better: it understands Elixir code, so it will print values at *every step of the pipeline*.
82
+
When talking about `IO.inspect/2`, we mentioned its usefulness when placed between steps of `|>` pipelines. `dbg` does it better: it understands Elixir code, so it will print values at _every step of the pipeline_.
While `dbg` provides conveniences around Elixir constructs, you will need `IEx` if you want to execute code and set breakpoints while debugging.
104
104
105
-
## Breakpoints
105
+
## Pry
106
106
107
107
When using `IEx`, you may pass `--dbg pry` as an option to "stop" the code execution where the `dbg` call is:
108
108
@@ -116,22 +116,30 @@ Or to debug inside a of a project:
116
116
$ iex --dbg pry -S mix
117
117
```
118
118
119
-
Or during tests (the `--trace` flag on `mix test` prevents tests from timing out):
120
-
121
-
```console
122
-
$ iex --dbg pry -S mix test --trace
123
-
$ iex --dbg pry -S mix test path/to/file:line --trace
124
-
```
119
+
Now any call to `dbg` will ask if you want to pry the existing code. If you accept, you'll be able to access all variables, as well as imports and aliases from the code, directly from IEx. This is called "prying". While the pry session is running, the code execution stops, until `continue` (or `c`) or `next` (or `n`) are called. Remember you can always run `iex` in the context of a project with `iex -S mix TASK`.
125
120
126
-
Now a call to `dbg` will ask if you want to pry the existing code. If you accept, you'll be able to access all variables, as well as imports and aliases from the code, directly from IEx. This is called "prying". While the pry session is running, the code execution stops, until `continue` or `next` are called. Remember you can always run `iex`in the context of a project with `iex -S mix TASK`.
121
+
<scriptid="asciicast-509509"src="https://asciinema.org/a/509509.js"async></script><noscript><p><ahref="https://asciinema.org/a/509509">See the example in asciinema</a></p></noscript>
`dbg` calls require us to change the code we intend to debug and has limited stepping functionality. Luckily IEx also provides a `IEx.break!/2` function which allows you to set and manage breakpoints on any Elixir code without modifying its source:
131
126
132
127
<scripttype="text/javascript"src="https://asciinema.org/a/0h3po0AmTcBAorc5GBNU97nrs.js"id="asciicast-0h3po0AmTcBAorc5GBNU97nrs"async></script><noscript><p><ahref="https://asciinema.org/a/0h3po0AmTcBAorc5GBNU97nrs">See the example in asciinema</a></p></noscript>
133
128
134
-
Similar to `dbg`, once a breakpoint is reached code execution stops until `continue` or `next` are invoked. However, `break!/2` does not have access to aliases and imports from the debugged code as it works on the compiled artifact rather than on source code.
129
+
Similar to `dbg`, once a breakpoint is reached, code execution stops until `continue` (or `c`) or `next` (or `n`) are invoked. Breakpoints can navigate line-by-line by default, however, they do not have access to aliases and imports when breakpoints are set on compiled modules.
130
+
131
+
The `mix test` task direct integration with breakpoints via the `-b`/`--breakpoints` flag. When the flag is used, a breakpoint is set at the beginning of every test that will run:
132
+
133
+
<scriptasyncid="asciicast-XTZ15jFKFAlr8ZxIZMzaHgL5n"src="https://asciinema.org/a/XTZ15jFKFAlr8ZxIZMzaHgL5n.js"></script><noscript><p><ahref="https://asciinema.org/a/XTZ15jFKFAlr8ZxIZMzaHgL5n">See the example in asciinema</a></p></noscript>
134
+
135
+
Here are some commands you can use in practice:
136
+
137
+
```console
138
+
# Debug all failed tests
139
+
$ iex -S mix test --breakpoints --failed
140
+
# Debug the test at the given file:line
141
+
$ iex -S mix test -b path/to/file:line
142
+
```
135
143
136
144
## Observer
137
145
@@ -147,15 +155,13 @@ iex> :observer.start()
147
155
> When running `iex` inside a project with `iex -S mix`, `observer` won't be available as a dependency. To do so, you will need to call the following functions before:
148
156
>
149
157
> ```elixir
150
-
> iex>Mix.ensure_application!(:wx)
151
-
> iex>Mix.ensure_application!(:runtime_tools)
158
+
> iex>Mix.ensure_application!(:wx)# Not necessary on Erlang/OTP 27+
159
+
> iex>Mix.ensure_application!(:runtime_tools)# Not necessary on Erlang/OTP 27+
152
160
> iex>Mix.ensure_application!(:observer)
153
161
> iex>:observer.start()
154
162
> ```
155
163
>
156
164
>If any of the calls above fail, here is what may have happened: some package managers default to installing a minimized Erlang without WX bindings forGUI support. In some package managers, you may be able to replace the headless Erlangwith a more complete package (look for packages named `erlang` vs `erlang-nox` on Debian/Ubuntu/Arch). In others managers, you may need to install a separate `erlang-wx` (or similarly named) package.
157
-
>
158
-
>There are conversations to improve this experience in future releases.
159
165
160
166
The above will open another GraphicalUserInterface that provides many panes to fully understand and navigate the runtime and your project.
0 commit comments