Elixir Language
Suggerimenti per il debug
Ricerca…
Debugging con IEX.pry / 0
Il debug con IEx.pry/0
è abbastanza semplice.
-
require IEx
nel tuo modulo - Trova la riga di codice che vuoi controllare
- Aggiungi
IEx.pry
dopo la riga
Ora inizia il tuo progetto (es. iex -S mix
).
Quando viene raggiunta la linea con IEx.pry/0
il programma si interrompe e si ha la possibilità di ispezionare. È come un punto di interruzione in un debugger tradizionale.
Quando hai finito basta digitare respawn
nella console.
require IEx;
defmodule Example do
def double_sum(x, y) do
IEx.pry
hard_work(x, y)
end
defp hard_work(x, y) do
2 * (x + y)
end
end
Debugging con IO.inspect / 1
È possibile utilizzare IO.inspect / 1 come strumento per eseguire il debug di un programma di elisir.
defmodule MyModule do
def myfunction(argument_1, argument_2) do
IO.inspect(argument_1)
IO.inspect(argument_2)
end
end
Stamperà argomenti_1 e argomenti_2 alla console. Poiché IO.inspect/1
restituisce il suo argomento, è molto facile includerlo nelle chiamate di funzione o nelle pipeline senza interrompere il flusso:
do_something(a, b)
|> do_something_else(c)
# can be adorned with IO.inspect, with no change in functionality:
do_something(IO.inspect(a), IO.inspect(b))
|> IO.inspect
do_something(IO.inspect(c))
Debug in pipe
defmodule Demo do
def foo do
1..10
|> Enum.map(&(&1 * &1)) |> p
|> Enum.filter(&rem(&1, 2) == 0) |> p
|> Enum.take(3) |> p
end
defp p(e) do
require Logger
Logger.debug inspect e, limit: :infinity
e
end
end
iex(1)> Demo.foo
23:23:55.171 [debug] [1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
23:23:55.171 [debug] [4, 16, 36, 64, 100]
23:23:55.171 [debug] [4, 16, 36]
[4, 16, 36]
Fare leva nel tubo
defmodule Demo do
def foo do
1..10
|> Enum.map(&(&1 * &1))
|> Enum.filter(&rem(&1, 2) == 0) |> pry
|> Enum.take(3)
end
defp pry(e) do
require IEx
IEx.pry
e
end
end
iex(1)> Demo.foo
Request to pry #PID<0.117.0> at lib/demo.ex:11
def pry(e) do
require IEx
IEx.pry
e
end
Allow? [Yn] Y
Interactive Elixir (1.3.2) - press Ctrl+C to exit (type h() ENTER for help)
pry(1)> e
[4, 16, 36, 64, 100]
pry(2)> respawn
Interactive Elixir (1.3.2) - press Ctrl+C to exit (type h() ENTER for help)
[4, 16, 36]
iex(1)>
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow