mirror of
https://github.com/samsonjs/stormy-weather.git
synced 2026-04-17 13:05:52 +00:00
20 lines
481 B
Text
20 lines
481 B
Text
<!doctype html>
|
|
|
|
<h1><%= request.request_method %> <%= request.path %></h1>
|
|
|
|
<p><strong>user agent:</strong> <%= request.user_agent %></p>
|
|
|
|
<p><strong>ip:</strong> <%= request.ip %></p>
|
|
|
|
<p><strong>session:</strong> <%= session.inspect %></p>
|
|
|
|
<% if account %>
|
|
<p><strong>Account:</strong> <%= account.name %> <<%= account.email %>></p>
|
|
<pre><%= account.field_array %></pre>
|
|
<% end %>
|
|
|
|
<pre>
|
|
<%= error.class %>: <%= error.message %>
|
|
|
|
<%= error.backtrace.join("\n") %>
|
|
</pre>
|