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
Copy file name to clipboardExpand all lines: lib/plug/templates/debugger.md.eex
-22Lines changed: 0 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -4,24 +4,6 @@ Exception:
4
4
5
5
<%= String.replace(@formatted, "\n", "\n ") %>
6
6
7
-
Code:
8
-
<%= for frame <- @frames do %>
9
-
`<%= h frame.file %>`
10
-
<%= if (snippet = frame.snippet) && snippet != [] do %>
11
-
<%= for {index, line, highlight} <- snippet do %><%= if highlight do %><%= h index %>> <% else %><%= h index %> <% end %><%= h String.trim_trailing(line) %>
12
-
<% end %><% else %>
13
-
No code available.
14
-
<% end %><%= if frame.args do %>
15
-
Called with <%= length(frame.args) %> arguments
16
-
17
-
<%= for arg <- frame.args do %>* `<%= h inspect arg %>`
18
-
<% end %><% end %><%= if frame.clauses do %><% {min, max, clauses} = frame.clauses %>
19
-
Attempted function clauses (showing <%= min %> out of <%= max %>)
20
-
21
-
<%= for clause <- clauses do %> <%= clause %>
22
-
<% end %>
23
-
<% end %><% end %>
24
-
25
7
## Connection details
26
8
27
9
### Params
@@ -33,10 +15,6 @@ Code:
33
15
* URI: <%= url(@conn) %>
34
16
* Query string: <%= @conn.query_string %>
35
17
36
-
### Headers
37
-
<%= for {key, value} <- Enum.sort(@conn.req_headers) do %>
0 commit comments