error-locator 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +37 -0
- data/lib/error-locator/action_dispatch_ext.rb +13 -0
- data/lib/error-locator/templates/rescues/_request_and_response.erb +31 -0
- data/lib/error-locator/templates/rescues/_trace.erb +38 -0
- data/lib/error-locator/templates/rescues/diagnostics.erb +10 -0
- data/lib/error-locator/templates/rescues/layout.erb +31 -0
- data/lib/error-locator/templates/rescues/missing_template.erb +2 -0
- data/lib/error-locator/templates/rescues/routing_error.erb +10 -0
- data/lib/error-locator/templates/rescues/template_error.erb +17 -0
- data/lib/error-locator/templates/rescues/unknown_action.erb +2 -0
- data/lib/error-locator/version.rb +3 -0
- data/lib/error-locator.rb +13 -0
- data/lib/tasks/error-locator_tasks.rake +4 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/controllers/application_controller.rb +4 -0
- data/test/dummy/app/controllers/home_controller.rb +8 -0
- data/test/dummy/config/application.rb +45 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +30 -0
- data/test/dummy/config/environments/production.rb +60 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +62 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1376 -0
- data/test/dummy/log/test.log +0 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/C81/2F0/sprockets%2F55a616d0509364450c69ca5357ce8d52 +9446 -0
- data/test/dummy/tmp/cache/assets/DD0/C80/sprockets%2F4ba2b51509e8f546fac0d93cbe54dd8f +9467 -0
- data/test/error-locator_test.rb +7 -0
- data/test/test_helper.rb +10 -0
- metadata +159 -0
@@ -0,0 +1,1376 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 14:01:06 +0200
|
4
|
+
Processing by BasicController#index as HTML
|
5
|
+
Completed 500 Internal Server Error in 1ms
|
6
|
+
|
7
|
+
RuntimeError (sample error):
|
8
|
+
app/controllers/basic_controller.rb:10:in `index'
|
9
|
+
|
10
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
11
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
12
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (10.0ms)
|
13
|
+
|
14
|
+
|
15
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 14:01:07 +0200
|
16
|
+
Compiled jquery.js (35ms) (pid 8586)
|
17
|
+
Served asset /jquery.js - 200 OK (80ms)
|
18
|
+
|
19
|
+
|
20
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:01:10 +0200
|
21
|
+
|
22
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
23
|
+
|
24
|
+
|
25
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
26
|
+
|
27
|
+
|
28
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:01:11 +0200
|
29
|
+
|
30
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
31
|
+
|
32
|
+
|
33
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
34
|
+
|
35
|
+
|
36
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:01:18 +0200
|
37
|
+
|
38
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
39
|
+
|
40
|
+
|
41
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
42
|
+
|
43
|
+
|
44
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:01:25 +0200
|
45
|
+
|
46
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
47
|
+
|
48
|
+
|
49
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
50
|
+
|
51
|
+
|
52
|
+
Started GET "/except" for 127.0.0.1 at 2012-11-23 14:01:33 +0200
|
53
|
+
|
54
|
+
ActionController::RoutingError (No route matches [GET] "/except"):
|
55
|
+
|
56
|
+
|
57
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
58
|
+
|
59
|
+
|
60
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 14:08:09 +0200
|
61
|
+
Processing by BasicController#index as HTML
|
62
|
+
Completed 500 Internal Server Error in 1ms
|
63
|
+
|
64
|
+
RuntimeError (sample error):
|
65
|
+
app/controllers/basic_controller.rb:10:in `index'
|
66
|
+
|
67
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
68
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
69
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.1ms)
|
70
|
+
|
71
|
+
|
72
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:08:12 +0200
|
73
|
+
|
74
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
75
|
+
|
76
|
+
|
77
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
78
|
+
|
79
|
+
|
80
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:08:15 +0200
|
81
|
+
|
82
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
83
|
+
|
84
|
+
|
85
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
86
|
+
|
87
|
+
|
88
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:08:19 +0200
|
89
|
+
|
90
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
91
|
+
|
92
|
+
|
93
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
94
|
+
|
95
|
+
|
96
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 14:12:42 +0200
|
97
|
+
Processing by BasicController#index as HTML
|
98
|
+
Completed 500 Internal Server Error in 1ms
|
99
|
+
|
100
|
+
RuntimeError (sample error):
|
101
|
+
app/controllers/basic_controller.rb:10:in `index'
|
102
|
+
|
103
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
104
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
105
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
|
106
|
+
|
107
|
+
|
108
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 14:12:42 +0200
|
109
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
110
|
+
|
111
|
+
|
112
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:12:45 +0200
|
113
|
+
|
114
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
115
|
+
|
116
|
+
|
117
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
118
|
+
|
119
|
+
|
120
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:12:46 +0200
|
121
|
+
|
122
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
123
|
+
|
124
|
+
|
125
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
126
|
+
|
127
|
+
|
128
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 14:14:26 +0200
|
129
|
+
Processing by BasicController#index as HTML
|
130
|
+
Completed 500 Internal Server Error in 1ms
|
131
|
+
|
132
|
+
RuntimeError (sample error):
|
133
|
+
app/controllers/basic_controller.rb:10:in `index'
|
134
|
+
|
135
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
136
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
137
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.2ms)
|
138
|
+
|
139
|
+
|
140
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 14:14:27 +0200
|
141
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
142
|
+
|
143
|
+
|
144
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:14:28 +0200
|
145
|
+
|
146
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
147
|
+
|
148
|
+
|
149
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
150
|
+
|
151
|
+
|
152
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:14:29 +0200
|
153
|
+
|
154
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
155
|
+
|
156
|
+
|
157
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
158
|
+
|
159
|
+
|
160
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 14:19:16 +0200
|
161
|
+
Processing by BasicController#index as HTML
|
162
|
+
Completed 500 Internal Server Error in 1ms
|
163
|
+
|
164
|
+
RuntimeError (sample error):
|
165
|
+
app/controllers/basic_controller.rb:10:in `index'
|
166
|
+
|
167
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
168
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
169
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.6ms)
|
170
|
+
|
171
|
+
|
172
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 14:19:17 +0200
|
173
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
174
|
+
|
175
|
+
|
176
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:19:19 +0200
|
177
|
+
|
178
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
179
|
+
|
180
|
+
|
181
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
182
|
+
|
183
|
+
|
184
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 14:45:12 +0200
|
185
|
+
Processing by BasicController#index as HTML
|
186
|
+
Completed 500 Internal Server Error in 1ms
|
187
|
+
|
188
|
+
RuntimeError (sample error):
|
189
|
+
app/controllers/basic_controller.rb:10:in `index'
|
190
|
+
|
191
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
192
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
193
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
|
194
|
+
|
195
|
+
|
196
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 14:45:13 +0200
|
197
|
+
Served asset /jquery.js - 200 OK (4ms)
|
198
|
+
|
199
|
+
|
200
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:15 +0200
|
201
|
+
|
202
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
203
|
+
|
204
|
+
|
205
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
206
|
+
|
207
|
+
|
208
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:20 +0200
|
209
|
+
|
210
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
211
|
+
|
212
|
+
|
213
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
214
|
+
|
215
|
+
|
216
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:39 +0200
|
217
|
+
|
218
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
219
|
+
|
220
|
+
|
221
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
|
222
|
+
|
223
|
+
|
224
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:40 +0200
|
225
|
+
|
226
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
227
|
+
|
228
|
+
|
229
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
230
|
+
|
231
|
+
|
232
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:41 +0200
|
233
|
+
|
234
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
235
|
+
|
236
|
+
|
237
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
238
|
+
|
239
|
+
|
240
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:41 +0200
|
241
|
+
|
242
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
243
|
+
|
244
|
+
|
245
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
246
|
+
|
247
|
+
|
248
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:46 +0200
|
249
|
+
|
250
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
251
|
+
|
252
|
+
|
253
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
254
|
+
|
255
|
+
|
256
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:47 +0200
|
257
|
+
|
258
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
259
|
+
|
260
|
+
|
261
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
262
|
+
|
263
|
+
|
264
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:48 +0200
|
265
|
+
|
266
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
267
|
+
|
268
|
+
|
269
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
270
|
+
|
271
|
+
|
272
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:48 +0200
|
273
|
+
|
274
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
275
|
+
|
276
|
+
|
277
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
278
|
+
|
279
|
+
|
280
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:49 +0200
|
281
|
+
|
282
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
283
|
+
|
284
|
+
|
285
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
286
|
+
|
287
|
+
|
288
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:51 +0200
|
289
|
+
|
290
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
291
|
+
|
292
|
+
|
293
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
294
|
+
|
295
|
+
|
296
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:53 +0200
|
297
|
+
|
298
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
299
|
+
|
300
|
+
|
301
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
302
|
+
|
303
|
+
|
304
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:45:54 +0200
|
305
|
+
|
306
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
307
|
+
|
308
|
+
|
309
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
310
|
+
|
311
|
+
|
312
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:46:01 +0200
|
313
|
+
|
314
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
315
|
+
|
316
|
+
|
317
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
318
|
+
|
319
|
+
|
320
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:46:07 +0200
|
321
|
+
|
322
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
323
|
+
|
324
|
+
|
325
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
326
|
+
|
327
|
+
|
328
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:46:12 +0200
|
329
|
+
|
330
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
331
|
+
|
332
|
+
|
333
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
334
|
+
|
335
|
+
|
336
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:46:14 +0200
|
337
|
+
|
338
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
339
|
+
|
340
|
+
|
341
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
342
|
+
|
343
|
+
|
344
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:46:15 +0200
|
345
|
+
|
346
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
347
|
+
|
348
|
+
|
349
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
350
|
+
|
351
|
+
|
352
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:46:16 +0200
|
353
|
+
|
354
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
355
|
+
|
356
|
+
|
357
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
358
|
+
|
359
|
+
|
360
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 14:46:16 +0200
|
361
|
+
|
362
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
363
|
+
|
364
|
+
|
365
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
366
|
+
|
367
|
+
|
368
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 15:26:26 +0200
|
369
|
+
|
370
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
371
|
+
|
372
|
+
|
373
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
|
374
|
+
|
375
|
+
|
376
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 15:26:27 +0200
|
377
|
+
|
378
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
379
|
+
|
380
|
+
|
381
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (1.2ms)
|
382
|
+
|
383
|
+
|
384
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 15:26:28 +0200
|
385
|
+
|
386
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
387
|
+
|
388
|
+
|
389
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
390
|
+
|
391
|
+
|
392
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 15:26:28 +0200
|
393
|
+
|
394
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
395
|
+
|
396
|
+
|
397
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
398
|
+
|
399
|
+
|
400
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 15:26:47 +0200
|
401
|
+
Processing by BasicController#index as HTML
|
402
|
+
Completed 500 Internal Server Error in 1ms
|
403
|
+
|
404
|
+
RuntimeError (sample error):
|
405
|
+
app/controllers/basic_controller.rb:10:in `index'
|
406
|
+
|
407
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (38.9ms)
|
408
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
409
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (44.6ms)
|
410
|
+
|
411
|
+
|
412
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 15:26:48 +0200
|
413
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
414
|
+
|
415
|
+
|
416
|
+
Started POST "/except" for 127.0.0.1 at 2012-11-23 15:26:49 +0200
|
417
|
+
|
418
|
+
ActionController::RoutingError (No route matches [POST] "/except"):
|
419
|
+
|
420
|
+
|
421
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
422
|
+
|
423
|
+
|
424
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 15:28:40 +0200
|
425
|
+
Processing by BasicController#index as HTML
|
426
|
+
Completed 500 Internal Server Error in 1ms
|
427
|
+
|
428
|
+
RuntimeError (sample error):
|
429
|
+
app/controllers/basic_controller.rb:10:in `index'
|
430
|
+
|
431
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
432
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
433
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
434
|
+
|
435
|
+
|
436
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 15:28:41 +0200
|
437
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
438
|
+
|
439
|
+
|
440
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 15:28:42 +0200
|
441
|
+
|
442
|
+
|
443
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 15:29:41 +0200
|
444
|
+
|
445
|
+
|
446
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 15:30:05 +0200
|
447
|
+
Processing by BasicController#index as HTML
|
448
|
+
Completed 500 Internal Server Error in 1ms
|
449
|
+
|
450
|
+
RuntimeError (sample error):
|
451
|
+
app/controllers/basic_controller.rb:10:in `index'
|
452
|
+
|
453
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.7ms)
|
454
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
455
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
|
456
|
+
|
457
|
+
|
458
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 15:30:05 +0200
|
459
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
460
|
+
|
461
|
+
|
462
|
+
Started GET "/error-locator?line=app%2Fcontrollers%2Fbasic_controller.rb%3A10%3Ain+%60index'%0A" for 127.0.0.1 at 2012-11-23 15:30:06 +0200
|
463
|
+
|
464
|
+
ActionController::RoutingError (No route matches [GET] "/error-locator"):
|
465
|
+
|
466
|
+
|
467
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
468
|
+
|
469
|
+
|
470
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 15:30:29 +0200
|
471
|
+
Processing by BasicController#index as HTML
|
472
|
+
Completed 500 Internal Server Error in 1ms
|
473
|
+
|
474
|
+
RuntimeError (sample error):
|
475
|
+
app/controllers/basic_controller.rb:10:in `index'
|
476
|
+
|
477
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
478
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (41.5ms)
|
479
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (47.9ms)
|
480
|
+
|
481
|
+
|
482
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 15:30:29 +0200
|
483
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
484
|
+
|
485
|
+
|
486
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 15:30:30 +0200
|
487
|
+
|
488
|
+
|
489
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 15:30:41 +0200
|
490
|
+
Processing by BasicController#index as HTML
|
491
|
+
Completed 500 Internal Server Error in 1ms
|
492
|
+
|
493
|
+
RuntimeError (sample error):
|
494
|
+
app/controllers/basic_controller.rb:10:in `index'
|
495
|
+
|
496
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
497
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
498
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
|
499
|
+
|
500
|
+
|
501
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 15:30:41 +0200
|
502
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
503
|
+
|
504
|
+
|
505
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 15:31:00 +0200
|
506
|
+
Processing by BasicController#index as HTML
|
507
|
+
Completed 500 Internal Server Error in 1ms
|
508
|
+
|
509
|
+
RuntimeError (sample error):
|
510
|
+
app/controllers/basic_controller.rb:10:in `index'
|
511
|
+
|
512
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
513
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
514
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
515
|
+
|
516
|
+
|
517
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 15:31:00 +0200
|
518
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
519
|
+
|
520
|
+
|
521
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 15:31:01 +0200
|
522
|
+
|
523
|
+
|
524
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 15:32:10 +0200
|
525
|
+
Processing by BasicController#index as HTML
|
526
|
+
Completed 500 Internal Server Error in 1ms
|
527
|
+
|
528
|
+
RuntimeError (sample error):
|
529
|
+
app/controllers/basic_controller.rb:5:in `index'
|
530
|
+
|
531
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
532
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
533
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
534
|
+
|
535
|
+
|
536
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 15:32:10 +0200
|
537
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
538
|
+
|
539
|
+
|
540
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 15:32:12 +0200
|
541
|
+
|
542
|
+
|
543
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 15:32:19 +0200
|
544
|
+
Processing by BasicController#index as HTML
|
545
|
+
Completed 500 Internal Server Error in 1ms
|
546
|
+
|
547
|
+
RuntimeError (sample error):
|
548
|
+
app/controllers/basic_controller.rb:5:in `index'
|
549
|
+
|
550
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
551
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
552
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
|
553
|
+
|
554
|
+
|
555
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 15:32:20 +0200
|
556
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
557
|
+
|
558
|
+
|
559
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 15:32:20 +0200
|
560
|
+
|
561
|
+
|
562
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:28:16 +0200
|
563
|
+
Processing by BasicController#index as HTML
|
564
|
+
Completed 500 Internal Server Error in 1ms
|
565
|
+
|
566
|
+
RuntimeError (sample error):
|
567
|
+
app/controllers/basic_controller.rb:5:in `index'
|
568
|
+
|
569
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
570
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
571
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
|
572
|
+
|
573
|
+
|
574
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:28:16 +0200
|
575
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
576
|
+
|
577
|
+
|
578
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:28:18 +0200
|
579
|
+
|
580
|
+
|
581
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:38:52 +0200
|
582
|
+
|
583
|
+
|
584
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:40:17 +0200
|
585
|
+
Processing by BasicController#index as HTML
|
586
|
+
Completed 500 Internal Server Error in 1ms
|
587
|
+
|
588
|
+
RuntimeError (sample error):
|
589
|
+
app/controllers/basic_controller.rb:5:in `index'
|
590
|
+
|
591
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
592
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
593
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
|
594
|
+
|
595
|
+
|
596
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:40:18 +0200
|
597
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
598
|
+
|
599
|
+
|
600
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:40:20 +0200
|
601
|
+
|
602
|
+
|
603
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:40:27 +0200
|
604
|
+
|
605
|
+
|
606
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:40:40 +0200
|
607
|
+
|
608
|
+
|
609
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:41:15 +0200
|
610
|
+
|
611
|
+
|
612
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:42:59 +0200
|
613
|
+
|
614
|
+
|
615
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:43:10 +0200
|
616
|
+
Processing by BasicController#index as HTML
|
617
|
+
Completed 500 Internal Server Error in 1ms
|
618
|
+
|
619
|
+
RuntimeError (sample error):
|
620
|
+
app/controllers/basic_controller.rb:5:in `index'
|
621
|
+
|
622
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.7ms)
|
623
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
624
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.6ms)
|
625
|
+
|
626
|
+
|
627
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:43:11 +0200
|
628
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
629
|
+
|
630
|
+
|
631
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:43:12 +0200
|
632
|
+
|
633
|
+
|
634
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:43:19 +0200
|
635
|
+
|
636
|
+
|
637
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:43:25 +0200
|
638
|
+
|
639
|
+
|
640
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:43:43 +0200
|
641
|
+
|
642
|
+
|
643
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:44:55 +0200
|
644
|
+
|
645
|
+
TypeError (can't convert nil into String):
|
646
|
+
|
647
|
+
|
648
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.0ms)
|
649
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (2.4ms)
|
650
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (198.8ms)
|
651
|
+
|
652
|
+
|
653
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:44:58 +0200
|
654
|
+
|
655
|
+
|
656
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:45:05 +0200
|
657
|
+
|
658
|
+
|
659
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:46:21 +0200
|
660
|
+
Processing by BasicController#index as HTML
|
661
|
+
Completed 500 Internal Server Error in 1ms
|
662
|
+
|
663
|
+
RuntimeError (sample error):
|
664
|
+
app/controllers/basic_controller.rb:5:in `index'
|
665
|
+
|
666
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
667
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
668
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
|
669
|
+
|
670
|
+
|
671
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:46:21 +0200
|
672
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
673
|
+
|
674
|
+
|
675
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:46:23 +0200
|
676
|
+
|
677
|
+
|
678
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:46:58 +0200
|
679
|
+
Processing by BasicController#index as HTML
|
680
|
+
Completed 500 Internal Server Error in 1ms
|
681
|
+
|
682
|
+
RuntimeError (sample error):
|
683
|
+
app/controllers/basic_controller.rb:5:in `index'
|
684
|
+
|
685
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (44.6ms)
|
686
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
687
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (50.2ms)
|
688
|
+
|
689
|
+
|
690
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:46:58 +0200
|
691
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
692
|
+
|
693
|
+
|
694
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:47:00 +0200
|
695
|
+
|
696
|
+
|
697
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:47:08 +0200
|
698
|
+
|
699
|
+
|
700
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:48:34 +0200
|
701
|
+
Processing by BasicController#index as HTML
|
702
|
+
Completed 500 Internal Server Error in 1ms
|
703
|
+
|
704
|
+
RuntimeError (sample error):
|
705
|
+
app/controllers/basic_controller.rb:5:in `index'
|
706
|
+
|
707
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
708
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
709
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
|
710
|
+
|
711
|
+
|
712
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:48:35 +0200
|
713
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
714
|
+
|
715
|
+
|
716
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:48:36 +0200
|
717
|
+
|
718
|
+
|
719
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:49:37 +0200
|
720
|
+
Processing by BasicController#index as HTML
|
721
|
+
Completed 500 Internal Server Error in 1ms
|
722
|
+
|
723
|
+
RuntimeError (sample error):
|
724
|
+
app/controllers/basic_controller.rb:5:in `index'
|
725
|
+
|
726
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
727
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
728
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
|
729
|
+
|
730
|
+
|
731
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:49:38 +0200
|
732
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
733
|
+
|
734
|
+
|
735
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:49:39 +0200
|
736
|
+
|
737
|
+
|
738
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:50:10 +0200
|
739
|
+
Processing by BasicController#index as HTML
|
740
|
+
Completed 500 Internal Server Error in 1ms
|
741
|
+
|
742
|
+
RuntimeError (sample error):
|
743
|
+
app/controllers/basic_controller.rb:5:in `index'
|
744
|
+
|
745
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
746
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
747
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.2ms)
|
748
|
+
|
749
|
+
|
750
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:50:10 +0200
|
751
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
752
|
+
|
753
|
+
|
754
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:50:12 +0200
|
755
|
+
|
756
|
+
|
757
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:54:17 +0200
|
758
|
+
Processing by BasicController#index as HTML
|
759
|
+
Completed 500 Internal Server Error in 1ms
|
760
|
+
|
761
|
+
RuntimeError (sample error):
|
762
|
+
app/controllers/basic_controller.rb:5:in `index'
|
763
|
+
|
764
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
765
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
766
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
|
767
|
+
|
768
|
+
|
769
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:54:17 +0200
|
770
|
+
Served asset /jquery.js - 304 Not Modified (7ms)
|
771
|
+
|
772
|
+
|
773
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:54:18 +0200
|
774
|
+
|
775
|
+
|
776
|
+
Started GET "/invest" for 127.0.0.1 at 2012-11-23 16:54:39 +0200
|
777
|
+
|
778
|
+
ActionController::RoutingError (No route matches [GET] "/invest"):
|
779
|
+
|
780
|
+
|
781
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
782
|
+
|
783
|
+
|
784
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:55:31 +0200
|
785
|
+
Processing by BasicController#index as HTML
|
786
|
+
Completed 500 Internal Server Error in 1ms
|
787
|
+
|
788
|
+
RuntimeError (sample error):
|
789
|
+
app/controllers/basic_controller.rb:5:in `index'
|
790
|
+
|
791
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.3ms)
|
792
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
793
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.6ms)
|
794
|
+
|
795
|
+
|
796
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:55:31 +0200
|
797
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
798
|
+
|
799
|
+
|
800
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:55:32 +0200
|
801
|
+
|
802
|
+
|
803
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:56:03 +0200
|
804
|
+
Processing by BasicController#index as HTML
|
805
|
+
Completed 500 Internal Server Error in 1ms
|
806
|
+
|
807
|
+
RuntimeError (sample error):
|
808
|
+
app/controllers/basic_controller.rb:5:in `index'
|
809
|
+
|
810
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
811
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
812
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
|
813
|
+
|
814
|
+
|
815
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:56:03 +0200
|
816
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
817
|
+
|
818
|
+
|
819
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 16:56:12 +0200
|
820
|
+
Processing by BasicController#index as HTML
|
821
|
+
Completed 500 Internal Server Error in 1ms
|
822
|
+
|
823
|
+
RuntimeError (sample error):
|
824
|
+
app/controllers/basic_controller.rb:5:in `index'
|
825
|
+
|
826
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
827
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
828
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.6ms)
|
829
|
+
|
830
|
+
|
831
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 16:56:12 +0200
|
832
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
833
|
+
|
834
|
+
|
835
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 16:56:16 +0200
|
836
|
+
|
837
|
+
|
838
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:02:08 +0200
|
839
|
+
Processing by BasicController#index as HTML
|
840
|
+
Completed 500 Internal Server Error in 1ms
|
841
|
+
|
842
|
+
RuntimeError (sample error):
|
843
|
+
app/controllers/basic_controller.rb:5:in `index'
|
844
|
+
|
845
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (52.6ms)
|
846
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
847
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (59.7ms)
|
848
|
+
|
849
|
+
|
850
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:02:09 +0200
|
851
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
852
|
+
|
853
|
+
|
854
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:02:10 +0200
|
855
|
+
|
856
|
+
|
857
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:03:06 +0200
|
858
|
+
|
859
|
+
RuntimeError (sample error):
|
860
|
+
app/controllers/application_controller.rb:3:in `<class:ApplicationController>'
|
861
|
+
app/controllers/application_controller.rb:1:in `<top (required)>'
|
862
|
+
app/controllers/basic_controller.rb:1:in `<top (required)>'
|
863
|
+
|
864
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (4.0ms)
|
865
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
866
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.7ms)
|
867
|
+
|
868
|
+
|
869
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:03:06 +0200
|
870
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
871
|
+
|
872
|
+
|
873
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:03:08 +0200
|
874
|
+
|
875
|
+
|
876
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:03:14 +0200
|
877
|
+
|
878
|
+
|
879
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:03:47 +0200
|
880
|
+
|
881
|
+
ArgumentError (missing :action):
|
882
|
+
config/routes.rb:4:in `block in <top (required)>'
|
883
|
+
config/routes.rb:1:in `<top (required)>'
|
884
|
+
|
885
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.3ms)
|
886
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
887
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
888
|
+
|
889
|
+
|
890
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:03:47 +0200
|
891
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
892
|
+
|
893
|
+
|
894
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:03:51 +0200
|
895
|
+
|
896
|
+
|
897
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:04:04 +0200
|
898
|
+
|
899
|
+
ArgumentError (missing :action):
|
900
|
+
config/routes.rb:4:in `block in <top (required)>'
|
901
|
+
config/routes.rb:1:in `<top (required)>'
|
902
|
+
|
903
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
904
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
905
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.6ms)
|
906
|
+
|
907
|
+
|
908
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:04:04 +0200
|
909
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
910
|
+
|
911
|
+
|
912
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:04:36 +0200
|
913
|
+
|
914
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
915
|
+
|
916
|
+
|
917
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
918
|
+
|
919
|
+
|
920
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:04:38 +0200
|
921
|
+
|
922
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
923
|
+
|
924
|
+
|
925
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
926
|
+
|
927
|
+
|
928
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:04:42 +0200
|
929
|
+
|
930
|
+
RuntimeError (sample error):
|
931
|
+
app/controllers/application_controller.rb:3:in `<class:ApplicationController>'
|
932
|
+
app/controllers/application_controller.rb:1:in `<top (required)>'
|
933
|
+
app/controllers/basic_controller.rb:1:in `<top (required)>'
|
934
|
+
|
935
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.8ms)
|
936
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
937
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
|
938
|
+
|
939
|
+
|
940
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:04:42 +0200
|
941
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
942
|
+
|
943
|
+
|
944
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:05:08 +0200
|
945
|
+
|
946
|
+
ActionController::RoutingError (uninitialized constant BasicController):
|
947
|
+
|
948
|
+
|
949
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
950
|
+
|
951
|
+
|
952
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:05:09 +0200
|
953
|
+
|
954
|
+
ActionController::RoutingError (uninitialized constant BasicController):
|
955
|
+
|
956
|
+
|
957
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
958
|
+
|
959
|
+
|
960
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:05:25 +0200
|
961
|
+
|
962
|
+
RuntimeError (sample error):
|
963
|
+
app/controllers/application_controller.rb:3:in `<class:ApplicationController>'
|
964
|
+
app/controllers/application_controller.rb:1:in `<top (required)>'
|
965
|
+
app/controllers/basic_controller.rb:1:in `<top (required)>'
|
966
|
+
|
967
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.7ms)
|
968
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
969
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
|
970
|
+
|
971
|
+
|
972
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:05:25 +0200
|
973
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
974
|
+
|
975
|
+
|
976
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:05:28 +0200
|
977
|
+
|
978
|
+
|
979
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:05:33 +0200
|
980
|
+
|
981
|
+
|
982
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:05:34 +0200
|
983
|
+
|
984
|
+
AbstractController::ActionNotFound (The action 'index' could not be found for BasicController):
|
985
|
+
|
986
|
+
|
987
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
|
988
|
+
|
989
|
+
|
990
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:11 +0200
|
991
|
+
Processing by BasicController#index as HTML
|
992
|
+
Completed 500 Internal Server Error in 1ms
|
993
|
+
|
994
|
+
RuntimeError (sample error):
|
995
|
+
app/controllers/basic_controller.rb:5:in `index'
|
996
|
+
|
997
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
998
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
999
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.4ms)
|
1000
|
+
|
1001
|
+
|
1002
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:12 +0200
|
1003
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1004
|
+
|
1005
|
+
|
1006
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:06:13 +0200
|
1007
|
+
|
1008
|
+
|
1009
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:19 +0200
|
1010
|
+
Processing by BasicController#index as HTML
|
1011
|
+
Completed 500 Internal Server Error in 1ms
|
1012
|
+
|
1013
|
+
RuntimeError (sample error):
|
1014
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1015
|
+
|
1016
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1017
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1018
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
1019
|
+
|
1020
|
+
|
1021
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:19 +0200
|
1022
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1023
|
+
|
1024
|
+
|
1025
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:06:20 +0200
|
1026
|
+
|
1027
|
+
|
1028
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:23 +0200
|
1029
|
+
Processing by BasicController#index as HTML
|
1030
|
+
Completed 500 Internal Server Error in 1ms
|
1031
|
+
|
1032
|
+
RuntimeError (sample error):
|
1033
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1034
|
+
|
1035
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1036
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1037
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
1038
|
+
|
1039
|
+
|
1040
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:23 +0200
|
1041
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1042
|
+
|
1043
|
+
|
1044
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:24 +0200
|
1045
|
+
Processing by BasicController#index as HTML
|
1046
|
+
Completed 500 Internal Server Error in 1ms
|
1047
|
+
|
1048
|
+
RuntimeError (sample error):
|
1049
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1050
|
+
|
1051
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
1052
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
1053
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1054
|
+
|
1055
|
+
|
1056
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:24 +0200
|
1057
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1058
|
+
|
1059
|
+
|
1060
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:24 +0200
|
1061
|
+
Processing by BasicController#index as HTML
|
1062
|
+
Completed 500 Internal Server Error in 1ms
|
1063
|
+
|
1064
|
+
RuntimeError (sample error):
|
1065
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1066
|
+
|
1067
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.3ms)
|
1068
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1069
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1070
|
+
|
1071
|
+
|
1072
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:24 +0200
|
1073
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1074
|
+
|
1075
|
+
|
1076
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:06:25 +0200
|
1077
|
+
|
1078
|
+
|
1079
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:27 +0200
|
1080
|
+
Processing by BasicController#index as HTML
|
1081
|
+
Completed 500 Internal Server Error in 1ms
|
1082
|
+
|
1083
|
+
RuntimeError (sample error):
|
1084
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1085
|
+
|
1086
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (4.4ms)
|
1087
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1088
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.1ms)
|
1089
|
+
|
1090
|
+
|
1091
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:27 +0200
|
1092
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1093
|
+
|
1094
|
+
|
1095
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:28 +0200
|
1096
|
+
Processing by BasicController#index as HTML
|
1097
|
+
Completed 500 Internal Server Error in 1ms
|
1098
|
+
|
1099
|
+
RuntimeError (sample error):
|
1100
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1101
|
+
|
1102
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.3ms)
|
1103
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1104
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1105
|
+
|
1106
|
+
|
1107
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:28 +0200
|
1108
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1109
|
+
|
1110
|
+
|
1111
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:28 +0200
|
1112
|
+
Processing by BasicController#index as HTML
|
1113
|
+
Completed 500 Internal Server Error in 1ms
|
1114
|
+
|
1115
|
+
RuntimeError (sample error):
|
1116
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1117
|
+
|
1118
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
1119
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1120
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1121
|
+
|
1122
|
+
|
1123
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:28 +0200
|
1124
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1125
|
+
|
1126
|
+
|
1127
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:06:29 +0200
|
1128
|
+
|
1129
|
+
|
1130
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:31 +0200
|
1131
|
+
Processing by BasicController#index as HTML
|
1132
|
+
Completed 500 Internal Server Error in 1ms
|
1133
|
+
|
1134
|
+
RuntimeError (sample error):
|
1135
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1136
|
+
|
1137
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
1138
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1139
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
1140
|
+
|
1141
|
+
|
1142
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:31 +0200
|
1143
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1144
|
+
|
1145
|
+
|
1146
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:32 +0200
|
1147
|
+
Processing by BasicController#index as HTML
|
1148
|
+
Completed 500 Internal Server Error in 1ms
|
1149
|
+
|
1150
|
+
RuntimeError (sample error):
|
1151
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1152
|
+
|
1153
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1154
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1155
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
|
1156
|
+
|
1157
|
+
|
1158
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:32 +0200
|
1159
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1160
|
+
|
1161
|
+
|
1162
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:32 +0200
|
1163
|
+
Processing by BasicController#index as HTML
|
1164
|
+
Completed 500 Internal Server Error in 1ms
|
1165
|
+
|
1166
|
+
RuntimeError (sample error):
|
1167
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1168
|
+
|
1169
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.3ms)
|
1170
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
1171
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1172
|
+
|
1173
|
+
|
1174
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:32 +0200
|
1175
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1176
|
+
|
1177
|
+
|
1178
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:06:33 +0200
|
1179
|
+
Processing by BasicController#index as HTML
|
1180
|
+
Completed 500 Internal Server Error in 1ms
|
1181
|
+
|
1182
|
+
RuntimeError (sample error):
|
1183
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1184
|
+
|
1185
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.3ms)
|
1186
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1187
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1188
|
+
|
1189
|
+
|
1190
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:06:33 +0200
|
1191
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1192
|
+
|
1193
|
+
|
1194
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:06:34 +0200
|
1195
|
+
|
1196
|
+
|
1197
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:06:40 +0200
|
1198
|
+
|
1199
|
+
|
1200
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:06:48 +0200
|
1201
|
+
|
1202
|
+
TypeError (can't convert nil into String):
|
1203
|
+
|
1204
|
+
|
1205
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.8ms)
|
1206
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1207
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (6.8ms)
|
1208
|
+
|
1209
|
+
|
1210
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:07:01 +0200
|
1211
|
+
|
1212
|
+
|
1213
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:07:54 +0200
|
1214
|
+
Processing by BasicController#index as HTML
|
1215
|
+
Completed 500 Internal Server Error in 1ms
|
1216
|
+
|
1217
|
+
RuntimeError (sample error):
|
1218
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1219
|
+
|
1220
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
1221
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1222
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.3ms)
|
1223
|
+
|
1224
|
+
|
1225
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:07:54 +0200
|
1226
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1227
|
+
|
1228
|
+
|
1229
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:07:55 +0200
|
1230
|
+
Processing by BasicController#index as HTML
|
1231
|
+
Completed 500 Internal Server Error in 1ms
|
1232
|
+
|
1233
|
+
RuntimeError (sample error):
|
1234
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1235
|
+
|
1236
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
1237
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1238
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
|
1239
|
+
|
1240
|
+
|
1241
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:07:55 +0200
|
1242
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1243
|
+
|
1244
|
+
|
1245
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:07:56 +0200
|
1246
|
+
|
1247
|
+
|
1248
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:08:14 +0200
|
1249
|
+
Processing by BasicController#index as HTML
|
1250
|
+
Completed 500 Internal Server Error in 1ms
|
1251
|
+
|
1252
|
+
RuntimeError (sample error):
|
1253
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1254
|
+
|
1255
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
1256
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1257
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1258
|
+
|
1259
|
+
|
1260
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:08:14 +0200
|
1261
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1262
|
+
|
1263
|
+
|
1264
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:08:14 +0200
|
1265
|
+
Processing by BasicController#index as HTML
|
1266
|
+
Completed 500 Internal Server Error in 1ms
|
1267
|
+
|
1268
|
+
RuntimeError (sample error):
|
1269
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1270
|
+
|
1271
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1272
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
1273
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
|
1274
|
+
|
1275
|
+
|
1276
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:08:15 +0200
|
1277
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1278
|
+
|
1279
|
+
|
1280
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:08:15 +0200
|
1281
|
+
|
1282
|
+
|
1283
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:08:35 +0200
|
1284
|
+
Processing by BasicController#index as HTML
|
1285
|
+
Completed 500 Internal Server Error in 1ms
|
1286
|
+
|
1287
|
+
RuntimeError (sample error):
|
1288
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1289
|
+
|
1290
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
1291
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1292
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
1293
|
+
|
1294
|
+
|
1295
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:08:35 +0200
|
1296
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1297
|
+
|
1298
|
+
|
1299
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:08:35 +0200
|
1300
|
+
Processing by BasicController#index as HTML
|
1301
|
+
Completed 500 Internal Server Error in 1ms
|
1302
|
+
|
1303
|
+
RuntimeError (sample error):
|
1304
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1305
|
+
|
1306
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
1307
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
1308
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1309
|
+
|
1310
|
+
|
1311
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:08:35 +0200
|
1312
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1313
|
+
|
1314
|
+
|
1315
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:08:42 +0200
|
1316
|
+
Processing by BasicController#index as HTML
|
1317
|
+
Completed 500 Internal Server Error in 1ms
|
1318
|
+
|
1319
|
+
RuntimeError (sample error):
|
1320
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1321
|
+
|
1322
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
1323
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1324
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.3ms)
|
1325
|
+
|
1326
|
+
|
1327
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:08:43 +0200
|
1328
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
1329
|
+
|
1330
|
+
|
1331
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:08:48 +0200
|
1332
|
+
Processing by BasicController#index as HTML
|
1333
|
+
Completed 500 Internal Server Error in 1ms
|
1334
|
+
|
1335
|
+
RuntimeError (sample error):
|
1336
|
+
app/controllers/basic_controller.rb:5:in `index'
|
1337
|
+
|
1338
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
1339
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1340
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
1341
|
+
|
1342
|
+
|
1343
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:08:48 +0200
|
1344
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1345
|
+
|
1346
|
+
|
1347
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:08:48 +0200
|
1348
|
+
|
1349
|
+
|
1350
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:10:05 +0200
|
1351
|
+
|
1352
|
+
TypeError (can't convert nil into String):
|
1353
|
+
|
1354
|
+
|
1355
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.0ms)
|
1356
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1357
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1358
|
+
|
1359
|
+
|
1360
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 17:10:05 +0200
|
1361
|
+
Processing by HomeController#index as HTML
|
1362
|
+
Completed 500 Internal Server Error in 1ms
|
1363
|
+
|
1364
|
+
RuntimeError (sample error):
|
1365
|
+
app/controllers/home_controller.rb:5:in `index'
|
1366
|
+
|
1367
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1368
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1369
|
+
Rendered /home/virtax/work/lux-fix1/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.6ms)
|
1370
|
+
|
1371
|
+
|
1372
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 17:10:05 +0200
|
1373
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1374
|
+
|
1375
|
+
|
1376
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:10:07 +0200
|