airbrake 5.5.0 → 5.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/airbrake/rack/middleware.rb +4 -3
- data/lib/airbrake/rack/notice_builder.rb +13 -9
- data/lib/airbrake/version.rb +1 -1
- data/lib/generators/airbrake_initializer.rb.erb +4 -0
- data/spec/apps/rails/logs/50.log +465 -2758
- data/spec/apps/rails/logs/51.log +1405 -0
- data/spec/apps/sinatra/composite_app/sinatra_app1.rb +11 -0
- data/spec/apps/sinatra/composite_app/sinatra_app2.rb +11 -0
- data/spec/integration/rails/rails_spec.rb +29 -11
- data/spec/integration/sinatra/sinatra_spec.rb +60 -0
- data/spec/unit/rack/middleware_spec.rb +53 -10
- metadata +12 -12
- data/spec/apps/rails/logs/32.log +0 -240
- data/spec/apps/rails/logs/40.log +0 -287
- data/spec/apps/rails/logs/42.log +0 -1350
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0101d07aaa70ffe17d357dbeefd3c00b0e750ac0
|
4
|
+
data.tar.gz: c6642bb8d3f2515bad7f22b79b0d96119609d536
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e3be8dd51149933fa2cbc6c92a972f0c029b1c649377e2b55e9a476d119725d65d98554cbfc103e15d698f992d964cac8c910af4b44fce6502a6ea57d930d9e
|
7
|
+
data.tar.gz: 0c4295e72b8e09e5d9cc30146d6b43f8aa7c9f48a579b7ef4f60ac56bd0514f41f560acb58ce62f51bd9b1c336c911a541bf893266b375b5a6e647d63129830e
|
@@ -8,8 +8,9 @@ module Airbrake
|
|
8
8
|
# The middleware automatically sends information about the framework that
|
9
9
|
# uses it (name and version).
|
10
10
|
class Middleware
|
11
|
-
def initialize(app)
|
11
|
+
def initialize(app, notifier_name = :default)
|
12
12
|
@app = app
|
13
|
+
@notifier_name = notifier_name
|
13
14
|
end
|
14
15
|
|
15
16
|
##
|
@@ -35,10 +36,10 @@ module Airbrake
|
|
35
36
|
private
|
36
37
|
|
37
38
|
def notify_airbrake(exception, env)
|
38
|
-
notice = NoticeBuilder.new(env).build_notice(exception)
|
39
|
+
notice = NoticeBuilder.new(env, @notifier_name).build_notice(exception)
|
39
40
|
return unless notice
|
40
41
|
|
41
|
-
Airbrake.notify(notice)
|
42
|
+
Airbrake.notify(notice, {}, @notifier_name)
|
42
43
|
end
|
43
44
|
|
44
45
|
##
|
@@ -8,7 +8,7 @@ module Airbrake
|
|
8
8
|
|
9
9
|
class << self
|
10
10
|
##
|
11
|
-
# @return [Array
|
11
|
+
# @return [Array<Proc>] the list of notice builders
|
12
12
|
attr_reader :builders
|
13
13
|
|
14
14
|
##
|
@@ -29,7 +29,9 @@ module Airbrake
|
|
29
29
|
|
30
30
|
##
|
31
31
|
# @param [Hash{String=>Object}] rack_env The Rack environment
|
32
|
-
def initialize(rack_env)
|
32
|
+
def initialize(rack_env, notifier_name = :default)
|
33
|
+
@rack_env = rack_env
|
34
|
+
@notifier_name = notifier_name
|
33
35
|
@request = ::Rack::Request.new(rack_env)
|
34
36
|
end
|
35
37
|
|
@@ -39,13 +41,14 @@ module Airbrake
|
|
39
41
|
# @param [Exception] exception
|
40
42
|
# @return [Airbrake::Notice] the notice with extra information
|
41
43
|
def build_notice(exception)
|
42
|
-
return unless (notice = Airbrake.build_notice(exception))
|
44
|
+
return unless (notice = Airbrake.build_notice(exception, {}, @notifier_name))
|
43
45
|
|
44
46
|
NoticeBuilder.builders.each { |builder| builder.call(notice, @request) }
|
45
47
|
notice
|
46
48
|
end
|
47
49
|
|
48
|
-
|
50
|
+
##
|
51
|
+
# Adds context (URL, User-Agent, framework version, controller and more).
|
49
52
|
add_builder do |notice, request|
|
50
53
|
context = notice[:context]
|
51
54
|
|
@@ -75,23 +78,24 @@ module Airbrake
|
|
75
78
|
|
76
79
|
user = Airbrake::Rack::User.extract(request.env)
|
77
80
|
notice[:context].merge!(user.as_json) if user
|
78
|
-
|
79
|
-
nil
|
80
81
|
end
|
81
82
|
|
82
|
-
|
83
|
+
##
|
84
|
+
# Adds session.
|
83
85
|
add_builder do |notice, request|
|
84
86
|
session = request.session
|
85
87
|
notice[:session] = session if session
|
86
88
|
end
|
87
89
|
|
88
|
-
|
90
|
+
##
|
91
|
+
# Adds HTTP request parameters.
|
89
92
|
add_builder do |notice, request|
|
90
93
|
params = request.env['action_dispatch.request.parameters']
|
91
94
|
notice[:params] = params if params
|
92
95
|
end
|
93
96
|
|
94
|
-
|
97
|
+
##
|
98
|
+
# Adds HTTP referer, method and headers to the environment.
|
95
99
|
add_builder do |notice, request|
|
96
100
|
http_headers = request.env.map.with_object({}) do |(key, value), headers|
|
97
101
|
if HTTP_HEADER_PREFIXES.any? { |prefix| key.to_s.start_with?(prefix) }
|
data/lib/airbrake/version.rb
CHANGED
@@ -56,6 +56,10 @@ Airbrake.configure do |c|
|
|
56
56
|
# replaced.
|
57
57
|
# https://github.com/airbrake/airbrake-ruby#blacklist_keys
|
58
58
|
c.blacklist_keys = [/password/i]
|
59
|
+
|
60
|
+
# Alternatively, you can integrate with Rails' filter_parameters.
|
61
|
+
# Read more: https://goo.gl/gqQ1xS
|
62
|
+
# c.blacklist_keys = Rails.application.config.filter_parameters
|
59
63
|
end
|
60
64
|
|
61
65
|
# If Airbrake doesn't send any expected exceptions, we suggest to uncomment the
|
data/spec/apps/rails/logs/50.log
CHANGED
@@ -1,2758 +1,465 @@
|
|
1
|
-
# Logfile created on 2016-
|
2
|
-
D, [2016-
|
3
|
-
D, [2016-
|
4
|
-
D, [2016-
|
5
|
-
D, [2016-
|
6
|
-
D, [2016-
|
7
|
-
D, [2016-
|
8
|
-
D, [2016-
|
9
|
-
D, [2016-
|
10
|
-
D, [2016-
|
11
|
-
I, [2016-
|
12
|
-
I, [2016-
|
13
|
-
I, [2016-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
I, [2016-
|
26
|
-
I, [2016-
|
27
|
-
I, [2016-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
I, [2016-
|
33
|
-
I, [2016-
|
34
|
-
I, [2016-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
I, [2016-
|
45
|
-
I, [2016-
|
46
|
-
I, [2016-
|
47
|
-
I, [2016-
|
48
|
-
I, [2016-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
I, [2016-
|
60
|
-
I, [2016-
|
61
|
-
I, [2016-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
D, [2016-
|
69
|
-
D, [2016-
|
70
|
-
D, [2016-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
F, [2016-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
I, [2016-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
I, [2016-
|
87
|
-
I, [2016-
|
88
|
-
I, [2016-
|
89
|
-
I, [2016-
|
90
|
-
I, [2016-
|
91
|
-
I, [2016-
|
92
|
-
I, [2016-
|
93
|
-
I, [2016-
|
94
|
-
I, [2016-
|
95
|
-
I, [2016-
|
96
|
-
I, [2016-
|
97
|
-
I, [2016-
|
98
|
-
I, [2016-
|
99
|
-
I, [2016-
|
100
|
-
I, [2016-
|
101
|
-
I, [2016-
|
102
|
-
I, [2016-
|
103
|
-
I, [2016-
|
104
|
-
I, [2016-
|
105
|
-
I, [2016-
|
106
|
-
I, [2016-
|
107
|
-
I, [2016-
|
108
|
-
I, [2016-
|
109
|
-
I, [2016-
|
110
|
-
I, [2016-
|
111
|
-
I, [2016-
|
112
|
-
I, [2016-
|
113
|
-
I, [2016-
|
114
|
-
I, [2016-
|
115
|
-
I, [2016-
|
116
|
-
I, [2016-
|
117
|
-
I, [2016-
|
118
|
-
I, [2016-
|
119
|
-
I, [2016-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
I, [2016-
|
125
|
-
I, [2016-
|
126
|
-
I, [2016-
|
127
|
-
I, [2016-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
I, [2016-
|
133
|
-
I, [2016-
|
134
|
-
I, [2016-
|
135
|
-
I, [2016-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
I, [2016-
|
141
|
-
I, [2016-
|
142
|
-
I, [2016-
|
143
|
-
|
144
|
-
F, [2016-
|
145
|
-
F, [2016-
|
146
|
-
F, [2016-
|
147
|
-
|
148
|
-
I, [2016-
|
149
|
-
I, [2016-
|
150
|
-
I, [2016-
|
151
|
-
|
152
|
-
F, [2016-
|
153
|
-
F, [2016-
|
154
|
-
F, [2016-
|
155
|
-
|
156
|
-
I, [2016-
|
157
|
-
I, [2016-
|
158
|
-
I, [2016-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
I, [2016-
|
164
|
-
I, [2016-
|
165
|
-
I, [2016-
|
166
|
-
I, [2016-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
I, [2016-
|
172
|
-
I, [2016-
|
173
|
-
I, [2016-
|
174
|
-
I, [2016-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
I, [2016-
|
180
|
-
I, [2016-
|
181
|
-
I, [2016-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
I, [2016-
|
187
|
-
I, [2016-
|
188
|
-
I, [2016-
|
189
|
-
F, [2016-
|
190
|
-
F, [2016-
|
191
|
-
F, [2016-
|
192
|
-
F, [2016-
|
193
|
-
I, [2016-
|
194
|
-
I, [2016-
|
195
|
-
I, [2016-
|
196
|
-
F, [2016-
|
197
|
-
F, [2016-
|
198
|
-
F, [2016-
|
199
|
-
F, [2016-
|
200
|
-
I, [2016-
|
201
|
-
I, [2016-
|
202
|
-
I, [2016-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
I, [2016-
|
208
|
-
I, [2016-
|
209
|
-
I, [2016-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
I, [2016-
|
215
|
-
I, [2016-
|
216
|
-
I, [2016-
|
217
|
-
|
218
|
-
F, [2016-
|
219
|
-
F, [2016-
|
220
|
-
F, [2016-
|
221
|
-
|
222
|
-
I, [2016-
|
223
|
-
I, [2016-
|
224
|
-
|
225
|
-
F, [2016-
|
226
|
-
F, [2016-
|
227
|
-
F, [2016-
|
228
|
-
F, [2016-
|
229
|
-
I, [2016-
|
230
|
-
I, [2016-
|
231
|
-
I, [2016-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
I, [2016-
|
244
|
-
I, [2016-
|
245
|
-
I, [2016-
|
246
|
-
F, [2016-
|
247
|
-
F, [2016-
|
248
|
-
F, [2016-
|
249
|
-
F, [2016-
|
250
|
-
I, [2016-
|
251
|
-
I, [2016-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
F, [2016-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
I, [2016-
|
266
|
-
|
267
|
-
F, [2016-
|
268
|
-
F, [2016-
|
269
|
-
F, [2016-
|
270
|
-
|
271
|
-
I, [2016-
|
272
|
-
I, [2016-
|
273
|
-
|
274
|
-
F, [2016-
|
275
|
-
F, [2016-
|
276
|
-
F, [2016-
|
277
|
-
F, [2016-
|
278
|
-
I, [2016-
|
279
|
-
I, [2016-
|
280
|
-
I, [2016-
|
281
|
-
F, [2016-
|
282
|
-
F, [2016-
|
283
|
-
F, [2016-
|
284
|
-
F, [2016-
|
285
|
-
I, [2016-
|
286
|
-
I, [2016-
|
287
|
-
I, [2016-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
I, [2016-
|
294
|
-
I, [2016-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
I, [2016-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
F, [2016-
|
311
|
-
F, [2016-
|
312
|
-
|
313
|
-
|
314
|
-
I, [2016-
|
315
|
-
I, [2016-
|
316
|
-
|
317
|
-
|
318
|
-
F, [2016-
|
319
|
-
F, [2016-
|
320
|
-
|
321
|
-
|
322
|
-
I, [2016-
|
323
|
-
I, [2016-
|
324
|
-
|
325
|
-
|
326
|
-
F, [2016-
|
327
|
-
F, [2016-
|
328
|
-
|
329
|
-
|
330
|
-
I, [2016-
|
331
|
-
I, [2016-
|
332
|
-
|
333
|
-
|
334
|
-
F, [2016-
|
335
|
-
F, [2016-
|
336
|
-
|
337
|
-
|
338
|
-
I, [2016-
|
339
|
-
I, [2016-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
I, [2016-
|
345
|
-
I, [2016-
|
346
|
-
I, [2016-
|
347
|
-
I, [2016-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
I, [2016-
|
353
|
-
I, [2016-
|
354
|
-
I, [2016-
|
355
|
-
I, [2016-
|
356
|
-
I, [2016-
|
357
|
-
I, [2016-
|
358
|
-
I, [2016-
|
359
|
-
I, [2016-
|
360
|
-
I, [2016-
|
361
|
-
I, [2016-
|
362
|
-
I, [2016-
|
363
|
-
I, [2016-
|
364
|
-
I, [2016-
|
365
|
-
I, [2016-
|
366
|
-
I, [2016-
|
367
|
-
I, [2016-
|
368
|
-
I, [2016-
|
369
|
-
I, [2016-
|
370
|
-
I, [2016-
|
371
|
-
I, [2016-
|
372
|
-
I, [2016-
|
373
|
-
I, [2016-
|
374
|
-
I, [2016-
|
375
|
-
I, [2016-
|
376
|
-
I, [2016-
|
377
|
-
I, [2016-
|
378
|
-
I, [2016-
|
379
|
-
I, [2016-
|
380
|
-
I, [2016-
|
381
|
-
I, [2016-
|
382
|
-
I, [2016-
|
383
|
-
I, [2016-
|
384
|
-
I, [2016-
|
385
|
-
I, [2016-
|
386
|
-
I, [2016-
|
387
|
-
I, [2016-
|
388
|
-
I, [2016-
|
389
|
-
I, [2016-
|
390
|
-
I, [2016-
|
391
|
-
I, [2016-
|
392
|
-
I, [2016-
|
393
|
-
I, [2016-
|
394
|
-
I, [2016-
|
395
|
-
I, [2016-
|
396
|
-
I, [2016-
|
397
|
-
I, [2016-
|
398
|
-
I, [2016-
|
399
|
-
I, [2016-
|
400
|
-
I, [2016-
|
401
|
-
I, [2016-
|
402
|
-
I, [2016-
|
403
|
-
I, [2016-
|
404
|
-
I, [2016-
|
405
|
-
I, [2016-
|
406
|
-
I, [2016-
|
407
|
-
I, [2016-
|
408
|
-
I, [2016-
|
409
|
-
I, [2016-
|
410
|
-
I, [2016-
|
411
|
-
I, [2016-
|
412
|
-
I, [2016-
|
413
|
-
I, [2016-
|
414
|
-
I, [2016-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
F, [2016-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
I, [2016-
|
429
|
-
F, [2016-
|
430
|
-
F, [2016-
|
431
|
-
F, [2016-
|
432
|
-
F, [2016-
|
433
|
-
I, [2016-
|
434
|
-
I, [2016-
|
435
|
-
I, [2016-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
I, [2016-
|
441
|
-
|
442
|
-
|
443
|
-
F, [2016-
|
444
|
-
F, [2016-
|
445
|
-
|
446
|
-
|
447
|
-
I, [2016-
|
448
|
-
|
449
|
-
|
450
|
-
F, [2016-
|
451
|
-
F, [2016-
|
452
|
-
|
453
|
-
|
454
|
-
I, [2016-
|
455
|
-
|
456
|
-
|
457
|
-
F, [2016-
|
458
|
-
F, [2016-
|
459
|
-
|
460
|
-
|
461
|
-
I, [2016-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
I, [2016-08-23T13:13:44.747582 #29346] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:13:44 +0300
|
467
|
-
I, [2016-08-23T13:13:44.748190 #29346] INFO -- : Processing by DummyController#crash as HTML
|
468
|
-
I, [2016-08-23T13:13:44.748506 #29346] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
469
|
-
F, [2016-08-23T13:13:44.754456 #29346] FATAL -- :
|
470
|
-
F, [2016-08-23T13:13:44.754511 #29346] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
471
|
-
F, [2016-08-23T13:13:44.754535 #29346] FATAL -- :
|
472
|
-
F, [2016-08-23T13:13:44.754557 #29346] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
473
|
-
I, [2016-08-23T13:13:44.861609 #29346] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:13:44 +0300
|
474
|
-
I, [2016-08-23T13:13:44.862238 #29346] INFO -- : Processing by DummyController#crash as HTML
|
475
|
-
I, [2016-08-23T13:13:44.862574 #29346] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
476
|
-
F, [2016-08-23T13:13:44.869702 #29346] FATAL -- :
|
477
|
-
F, [2016-08-23T13:13:44.869740 #29346] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
478
|
-
F, [2016-08-23T13:13:44.869754 #29346] FATAL -- :
|
479
|
-
F, [2016-08-23T13:13:44.869766 #29346] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
480
|
-
I, [2016-08-23T13:13:44.871862 #29346] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 13:13:44 +0300
|
481
|
-
I, [2016-08-23T13:13:44.872446 #29346] INFO -- : Processing by DummyController#index as HTML
|
482
|
-
I, [2016-08-23T13:13:44.873183 #29346] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
483
|
-
I, [2016-08-23T13:13:44.873474 #29346] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
484
|
-
I, [2016-08-23T13:13:44.873768 #29346] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
485
|
-
I, [2016-08-23T13:13:44.880842 #29346] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:13:44 +0300
|
486
|
-
I, [2016-08-23T13:13:44.881728 #29346] INFO -- : Processing by DummyController#crash as HTML
|
487
|
-
I, [2016-08-23T13:13:44.881969 #29346] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
488
|
-
F, [2016-08-23T13:13:44.885234 #29346] FATAL -- :
|
489
|
-
F, [2016-08-23T13:13:44.885280 #29346] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
490
|
-
F, [2016-08-23T13:13:44.885305 #29346] FATAL -- :
|
491
|
-
F, [2016-08-23T13:13:44.885327 #29346] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
492
|
-
I, [2016-08-23T13:13:44.989405 #29346] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 13:13:44 +0300
|
493
|
-
I, [2016-08-23T13:13:44.990052 #29346] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
494
|
-
D, [2016-08-23T13:13:44.992166 #29346] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
495
|
-
D, [2016-08-23T13:13:44.992849 #29346] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
496
|
-
D, [2016-08-23T13:13:44.993101 #29346] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
497
|
-
I, [2016-08-23T13:13:44.993473 #29346] INFO -- : Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.4ms)
|
498
|
-
F, [2016-08-23T13:13:44.996889 #29346] FATAL -- :
|
499
|
-
F, [2016-08-23T13:13:44.996935 #29346] FATAL -- : AirbrakeTestError (after_commit):
|
500
|
-
F, [2016-08-23T13:13:44.996955 #29346] FATAL -- :
|
501
|
-
F, [2016-08-23T13:13:44.996970 #29346] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
502
|
-
I, [2016-08-23T13:13:45.100119 #29346] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 13:13:45 +0300
|
503
|
-
I, [2016-08-23T13:13:45.101004 #29346] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
504
|
-
D, [2016-08-23T13:13:45.101293 #29346] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
505
|
-
D, [2016-08-23T13:13:45.101938 #29346] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
506
|
-
D, [2016-08-23T13:13:45.102115 #29346] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
507
|
-
I, [2016-08-23T13:13:45.102404 #29346] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
|
508
|
-
F, [2016-08-23T13:13:45.120829 #29346] FATAL -- :
|
509
|
-
F, [2016-08-23T13:13:45.120877 #29346] FATAL -- : AirbrakeTestError (after_rollback):
|
510
|
-
F, [2016-08-23T13:13:45.120893 #29346] FATAL -- :
|
511
|
-
F, [2016-08-23T13:13:45.120905 #29346] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
512
|
-
I, [2016-08-23T13:13:45.123347 #29346] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:13:45 +0300
|
513
|
-
I, [2016-08-23T13:13:45.124040 #29346] INFO -- : Processing by DummyController#active_job as HTML
|
514
|
-
I, [2016-08-23T13:13:45.125060 #29346] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
515
|
-
I, [2016-08-23T13:13:45.125320 #29346] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
516
|
-
I, [2016-08-23T13:13:45.125583 #29346] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
517
|
-
I, [2016-08-23T13:13:47.131551 #29346] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:13:47 +0300
|
518
|
-
I, [2016-08-23T13:13:47.133026 #29346] INFO -- : Processing by DummyController#active_job as HTML
|
519
|
-
I, [2016-08-23T13:13:47.142342 #29346] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
520
|
-
I, [2016-08-23T13:13:47.142632 #29346] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
521
|
-
I, [2016-08-23T13:13:47.142981 #29346] INFO -- : Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
522
|
-
I, [2016-08-23T13:13:52.154705 #29346] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:13:52 +0300
|
523
|
-
I, [2016-08-23T13:13:52.155540 #29346] INFO -- : Processing by DummyController#active_job as HTML
|
524
|
-
I, [2016-08-23T13:13:52.157407 #29346] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
525
|
-
I, [2016-08-23T13:13:52.157753 #29346] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
526
|
-
I, [2016-08-23T13:13:52.158069 #29346] INFO -- : Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
527
|
-
D, [2016-08-23T13:14:44.226585 #30217] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
528
|
-
D, [2016-08-23T13:14:44.230977 #30217] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
529
|
-
D, [2016-08-23T13:14:44.231187 #30217] DEBUG -- : [1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
530
|
-
D, [2016-08-23T13:14:44.231459 #30217] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
531
|
-
D, [2016-08-23T13:14:44.232654 #30217] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
532
|
-
D, [2016-08-23T13:14:44.240467 #30217] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
533
|
-
D, [2016-08-23T13:14:44.243940 #30217] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
534
|
-
D, [2016-08-23T13:14:44.244862 #30217] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-08-23 10:14:44 UTC], ["updated_at", 2016-08-23 10:14:44 UTC]]
|
535
|
-
D, [2016-08-23T13:14:44.244995 #30217] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
536
|
-
I, [2016-08-23T13:14:44.270780 #30217] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 13:14:44 +0300
|
537
|
-
I, [2016-08-23T13:14:44.272643 #30217] INFO -- : Processing by DummyController#index as HTML
|
538
|
-
I, [2016-08-23T13:14:44.275200 #30217] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
539
|
-
I, [2016-08-23T13:14:44.276597 #30217] INFO -- : Rendered dummy/index.html.erb within layouts/application (1.3ms)
|
540
|
-
I, [2016-08-23T13:14:44.277012 #30217] INFO -- : Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
541
|
-
I, [2016-08-23T13:14:44.279585 #30217] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:14:44 +0300
|
542
|
-
I, [2016-08-23T13:14:44.280115 #30217] INFO -- : Processing by DummyController#crash as HTML
|
543
|
-
I, [2016-08-23T13:14:44.281295 #30217] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
544
|
-
F, [2016-08-23T13:14:44.290368 #30217] FATAL -- :
|
545
|
-
F, [2016-08-23T13:14:44.296311 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
546
|
-
F, [2016-08-23T13:14:44.296343 #30217] FATAL -- :
|
547
|
-
F, [2016-08-23T13:14:44.296379 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
548
|
-
I, [2016-08-23T13:14:44.298604 #30217] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:14:44 +0300
|
549
|
-
I, [2016-08-23T13:14:44.299251 #30217] INFO -- : Processing by DummyController#active_job as HTML
|
550
|
-
I, [2016-08-23T13:14:44.300349 #30217] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
551
|
-
I, [2016-08-23T13:14:44.300616 #30217] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
552
|
-
I, [2016-08-23T13:14:44.300919 #30217] INFO -- : Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
553
|
-
I, [2016-08-23T13:14:49.311509 #30217] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:14:49 +0300
|
554
|
-
I, [2016-08-23T13:14:49.312569 #30217] INFO -- : Processing by DummyController#active_job as HTML
|
555
|
-
I, [2016-08-23T13:14:49.322195 #30217] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
556
|
-
I, [2016-08-23T13:14:49.322574 #30217] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
557
|
-
I, [2016-08-23T13:14:49.322984 #30217] INFO -- : Completed 200 OK in 10ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
558
|
-
I, [2016-08-23T13:14:51.336634 #30217] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:14:51 +0300
|
559
|
-
I, [2016-08-23T13:14:51.337443 #30217] INFO -- : Processing by DummyController#active_job as HTML
|
560
|
-
I, [2016-08-23T13:14:51.338532 #30217] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
561
|
-
I, [2016-08-23T13:14:51.339067 #30217] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.5ms)
|
562
|
-
I, [2016-08-23T13:14:51.339324 #30217] INFO -- : Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
563
|
-
I, [2016-08-23T13:14:53.347836 #30217] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
564
|
-
I, [2016-08-23T13:14:53.348905 #30217] INFO -- : Processing by DummyController#crash as HTML
|
565
|
-
I, [2016-08-23T13:14:53.349245 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
566
|
-
F, [2016-08-23T13:14:53.354634 #30217] FATAL -- :
|
567
|
-
F, [2016-08-23T13:14:53.354688 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
568
|
-
F, [2016-08-23T13:14:53.354713 #30217] FATAL -- :
|
569
|
-
F, [2016-08-23T13:14:53.365800 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
570
|
-
I, [2016-08-23T13:14:53.369177 #30217] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
571
|
-
I, [2016-08-23T13:14:53.369766 #30217] INFO -- : Processing by DummyController#crash as HTML
|
572
|
-
I, [2016-08-23T13:14:53.370382 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
573
|
-
F, [2016-08-23T13:14:53.374910 #30217] FATAL -- :
|
574
|
-
F, [2016-08-23T13:14:53.374961 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
575
|
-
F, [2016-08-23T13:14:53.374986 #30217] FATAL -- :
|
576
|
-
F, [2016-08-23T13:14:53.375009 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
577
|
-
I, [2016-08-23T13:14:53.480364 #30217] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
578
|
-
I, [2016-08-23T13:14:53.481286 #30217] INFO -- : Processing by DummyController#crash as HTML
|
579
|
-
I, [2016-08-23T13:14:53.481601 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
580
|
-
F, [2016-08-23T13:14:53.503911 #30217] FATAL -- :
|
581
|
-
F, [2016-08-23T13:14:53.503961 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
582
|
-
F, [2016-08-23T13:14:53.503990 #30217] FATAL -- :
|
583
|
-
F, [2016-08-23T13:14:53.504006 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
584
|
-
I, [2016-08-23T13:14:53.506548 #30217] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
585
|
-
I, [2016-08-23T13:14:53.507328 #30217] INFO -- : Processing by DummyController#crash as HTML
|
586
|
-
I, [2016-08-23T13:14:53.507715 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
587
|
-
F, [2016-08-23T13:14:53.511270 #30217] FATAL -- :
|
588
|
-
F, [2016-08-23T13:14:53.511332 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
589
|
-
F, [2016-08-23T13:14:53.511348 #30217] FATAL -- :
|
590
|
-
F, [2016-08-23T13:14:53.511361 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
591
|
-
I, [2016-08-23T13:14:53.619064 #30217] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
592
|
-
I, [2016-08-23T13:14:53.620058 #30217] INFO -- : Processing by DummyController#crash as HTML
|
593
|
-
I, [2016-08-23T13:14:53.620404 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
594
|
-
F, [2016-08-23T13:14:53.630350 #30217] FATAL -- :
|
595
|
-
F, [2016-08-23T13:14:53.630410 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
596
|
-
F, [2016-08-23T13:14:53.630423 #30217] FATAL -- :
|
597
|
-
F, [2016-08-23T13:14:53.630434 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
598
|
-
I, [2016-08-23T13:14:53.632934 #30217] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
599
|
-
I, [2016-08-23T13:14:53.633677 #30217] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
600
|
-
D, [2016-08-23T13:14:53.634007 #30217] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
601
|
-
D, [2016-08-23T13:14:53.637224 #30217] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
602
|
-
D, [2016-08-23T13:14:53.637449 #30217] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
603
|
-
I, [2016-08-23T13:14:53.637783 #30217] INFO -- : Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.5ms)
|
604
|
-
F, [2016-08-23T13:14:53.645739 #30217] FATAL -- :
|
605
|
-
F, [2016-08-23T13:14:53.645785 #30217] FATAL -- : AirbrakeTestError (after_rollback):
|
606
|
-
F, [2016-08-23T13:14:53.645802 #30217] FATAL -- :
|
607
|
-
F, [2016-08-23T13:14:53.645816 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
608
|
-
I, [2016-08-23T13:14:53.752143 #30217] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
609
|
-
I, [2016-08-23T13:14:53.753035 #30217] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
610
|
-
D, [2016-08-23T13:14:53.753463 #30217] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
611
|
-
D, [2016-08-23T13:14:53.754096 #30217] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
612
|
-
D, [2016-08-23T13:14:53.754295 #30217] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
613
|
-
I, [2016-08-23T13:14:53.754612 #30217] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
|
614
|
-
F, [2016-08-23T13:14:53.771256 #30217] FATAL -- :
|
615
|
-
F, [2016-08-23T13:14:53.771297 #30217] FATAL -- : AirbrakeTestError (after_commit):
|
616
|
-
F, [2016-08-23T13:14:53.771315 #30217] FATAL -- :
|
617
|
-
F, [2016-08-23T13:14:53.771329 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
618
|
-
I, [2016-08-23T13:14:53.776098 #30217] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
619
|
-
I, [2016-08-23T13:14:53.777526 #30217] INFO -- : Processing by DummyController#crash as HTML
|
620
|
-
I, [2016-08-23T13:14:53.777824 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
621
|
-
F, [2016-08-23T13:14:53.784067 #30217] FATAL -- :
|
622
|
-
F, [2016-08-23T13:14:53.784117 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
623
|
-
F, [2016-08-23T13:14:53.784143 #30217] FATAL -- :
|
624
|
-
F, [2016-08-23T13:14:53.784165 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
625
|
-
I, [2016-08-23T13:14:53.891674 #30217] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
626
|
-
I, [2016-08-23T13:14:53.892811 #30217] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
627
|
-
I, [2016-08-23T13:14:53.892859 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
628
|
-
I, [2016-08-23T13:14:53.902123 #30217] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
629
|
-
I, [2016-08-23T13:14:53.902450 #30217] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
630
|
-
I, [2016-08-23T13:14:53.902709 #30217] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
631
|
-
I, [2016-08-23T13:14:53.905234 #30217] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
632
|
-
I, [2016-08-23T13:14:53.905853 #30217] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
633
|
-
I, [2016-08-23T13:14:53.905954 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
634
|
-
I, [2016-08-23T13:14:53.915733 #30217] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
635
|
-
I, [2016-08-23T13:14:53.916223 #30217] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.4ms)
|
636
|
-
I, [2016-08-23T13:14:53.916877 #30217] INFO -- : Completed 200 OK in 11ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
637
|
-
I, [2016-08-23T13:14:53.920145 #30217] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
638
|
-
I, [2016-08-23T13:14:53.920968 #30217] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
639
|
-
I, [2016-08-23T13:14:53.921004 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
640
|
-
I, [2016-08-23T13:14:53.929608 #30217] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
641
|
-
I, [2016-08-23T13:14:53.929880 #30217] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
642
|
-
I, [2016-08-23T13:14:53.930201 #30217] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
643
|
-
I, [2016-08-23T13:14:53.932656 #30217] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
644
|
-
I, [2016-08-23T13:14:53.933386 #30217] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
645
|
-
I, [2016-08-23T13:14:53.933414 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
646
|
-
I, [2016-08-23T13:14:53.941941 #30217] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
647
|
-
I, [2016-08-23T13:14:53.942282 #30217] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
648
|
-
I, [2016-08-23T13:14:53.942520 #30217] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
649
|
-
I, [2016-08-23T13:14:53.944829 #30217] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
650
|
-
I, [2016-08-23T13:14:53.945489 #30217] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
651
|
-
I, [2016-08-23T13:14:53.945518 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
652
|
-
I, [2016-08-23T13:14:53.953839 #30217] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
653
|
-
I, [2016-08-23T13:14:53.954076 #30217] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
654
|
-
I, [2016-08-23T13:14:53.954374 #30217] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
655
|
-
I, [2016-08-23T13:14:53.956718 #30217] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
656
|
-
I, [2016-08-23T13:14:53.957461 #30217] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
657
|
-
I, [2016-08-23T13:14:53.957489 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
658
|
-
I, [2016-08-23T13:14:53.961100 #30217] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
659
|
-
I, [2016-08-23T13:14:53.961411 #30217] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
660
|
-
I, [2016-08-23T13:14:53.967127 #30217] INFO -- : Completed 200 OK in 10ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
661
|
-
I, [2016-08-23T13:14:53.969862 #30217] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:53 +0300
|
662
|
-
I, [2016-08-23T13:14:53.970734 #30217] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
663
|
-
I, [2016-08-23T13:14:53.970770 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
664
|
-
I, [2016-08-23T13:14:53.976446 #30217] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
665
|
-
I, [2016-08-23T13:14:53.976722 #30217] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
666
|
-
I, [2016-08-23T13:14:53.977068 #30217] INFO -- : Completed 200 OK in 6ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
667
|
-
I, [2016-08-23T13:14:54.084156 #30217] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:54 +0300
|
668
|
-
I, [2016-08-23T13:14:54.086193 #30217] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
669
|
-
I, [2016-08-23T13:14:54.086233 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
670
|
-
I, [2016-08-23T13:14:54.094567 #30217] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
671
|
-
I, [2016-08-23T13:14:54.094901 #30217] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
672
|
-
I, [2016-08-23T13:14:54.095156 #30217] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
673
|
-
I, [2016-08-23T13:14:54.097325 #30217] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:54 +0300
|
674
|
-
I, [2016-08-23T13:14:54.098076 #30217] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
675
|
-
I, [2016-08-23T13:14:54.098132 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
676
|
-
I, [2016-08-23T13:14:54.100855 #30217] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
677
|
-
I, [2016-08-23T13:14:54.101123 #30217] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
678
|
-
I, [2016-08-23T13:14:54.101368 #30217] INFO -- : Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
679
|
-
I, [2016-08-23T13:14:54.206588 #30217] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:54 +0300
|
680
|
-
I, [2016-08-23T13:14:54.207492 #30217] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
681
|
-
I, [2016-08-23T13:14:54.207531 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
682
|
-
I, [2016-08-23T13:14:54.216137 #30217] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
683
|
-
I, [2016-08-23T13:14:54.216546 #30217] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
684
|
-
I, [2016-08-23T13:14:54.216934 #30217] INFO -- : Completed 200 OK in 9ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
685
|
-
I, [2016-08-23T13:14:54.220361 #30217] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:54 +0300
|
686
|
-
I, [2016-08-23T13:14:54.221067 #30217] INFO -- : Processing by DummyController#crash as HTML
|
687
|
-
I, [2016-08-23T13:14:54.221099 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
688
|
-
I, [2016-08-23T13:14:54.221395 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
689
|
-
F, [2016-08-23T13:14:54.224175 #30217] FATAL -- :
|
690
|
-
F, [2016-08-23T13:14:54.224208 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
691
|
-
F, [2016-08-23T13:14:54.224224 #30217] FATAL -- :
|
692
|
-
F, [2016-08-23T13:14:54.224237 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
693
|
-
I, [2016-08-23T13:14:54.332120 #30217] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:54 +0300
|
694
|
-
I, [2016-08-23T13:14:54.332980 #30217] INFO -- : Processing by DummyController#crash as HTML
|
695
|
-
I, [2016-08-23T13:14:54.333016 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
696
|
-
I, [2016-08-23T13:14:54.333338 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
697
|
-
F, [2016-08-23T13:14:54.340763 #30217] FATAL -- :
|
698
|
-
F, [2016-08-23T13:14:54.340790 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
699
|
-
F, [2016-08-23T13:14:54.340803 #30217] FATAL -- :
|
700
|
-
F, [2016-08-23T13:14:54.340814 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
701
|
-
I, [2016-08-23T13:14:54.342618 #30217] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:54 +0300
|
702
|
-
I, [2016-08-23T13:14:54.343254 #30217] INFO -- : Processing by DummyController#crash as HTML
|
703
|
-
I, [2016-08-23T13:14:54.343281 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
704
|
-
I, [2016-08-23T13:14:54.343535 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
705
|
-
F, [2016-08-23T13:14:54.346060 #30217] FATAL -- :
|
706
|
-
F, [2016-08-23T13:14:54.346097 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
707
|
-
F, [2016-08-23T13:14:54.346112 #30217] FATAL -- :
|
708
|
-
F, [2016-08-23T13:14:54.346124 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
709
|
-
I, [2016-08-23T13:14:54.450388 #30217] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:54 +0300
|
710
|
-
I, [2016-08-23T13:14:54.451300 #30217] INFO -- : Processing by DummyController#crash as HTML
|
711
|
-
I, [2016-08-23T13:14:54.451338 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
712
|
-
I, [2016-08-23T13:14:54.451656 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
713
|
-
F, [2016-08-23T13:14:54.459505 #30217] FATAL -- :
|
714
|
-
F, [2016-08-23T13:14:54.459528 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
715
|
-
F, [2016-08-23T13:14:54.459541 #30217] FATAL -- :
|
716
|
-
F, [2016-08-23T13:14:54.459551 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
717
|
-
I, [2016-08-23T13:14:54.461349 #30217] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:14:54 +0300
|
718
|
-
I, [2016-08-23T13:14:54.461999 #30217] INFO -- : Processing by DummyController#crash as HTML
|
719
|
-
I, [2016-08-23T13:14:54.462029 #30217] INFO -- : Parameters: {"foo"=>"bar"}
|
720
|
-
I, [2016-08-23T13:14:54.462265 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
721
|
-
F, [2016-08-23T13:14:54.465154 #30217] FATAL -- :
|
722
|
-
F, [2016-08-23T13:14:54.465199 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
723
|
-
F, [2016-08-23T13:14:54.465224 #30217] FATAL -- :
|
724
|
-
F, [2016-08-23T13:14:54.465245 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
725
|
-
I, [2016-08-23T13:14:54.573948 #30217] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 13:14:54 +0300
|
726
|
-
I, [2016-08-23T13:14:54.574688 #30217] INFO -- : Processing by DummyController#delayed_job as HTML
|
727
|
-
I, [2016-08-23T13:14:54.591345 #30217] INFO -- : Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.4ms)
|
728
|
-
F, [2016-08-23T13:14:54.594070 #30217] FATAL -- :
|
729
|
-
F, [2016-08-23T13:14:54.594107 #30217] FATAL -- : AirbrakeTestError (delayed_job error):
|
730
|
-
F, [2016-08-23T13:14:54.598007 #30217] FATAL -- :
|
731
|
-
F, [2016-08-23T13:14:54.598028 #30217] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
732
|
-
F, [2016-08-23T13:14:54.598042 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
733
|
-
I, [2016-08-23T13:14:58.609518 #30217] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:14:58 +0300
|
734
|
-
I, [2016-08-23T13:14:58.610310 #30217] INFO -- : Processing by DummyController#crash as HTML
|
735
|
-
I, [2016-08-23T13:14:58.610644 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
736
|
-
F, [2016-08-23T13:14:58.618428 #30217] FATAL -- :
|
737
|
-
F, [2016-08-23T13:14:58.618458 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
738
|
-
F, [2016-08-23T13:14:58.618470 #30217] FATAL -- :
|
739
|
-
F, [2016-08-23T13:14:58.618482 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
740
|
-
I, [2016-08-23T13:14:58.620505 #30217] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:14:58 +0300
|
741
|
-
I, [2016-08-23T13:14:58.621166 #30217] INFO -- : Processing by DummyController#crash as HTML
|
742
|
-
I, [2016-08-23T13:14:58.621424 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
743
|
-
F, [2016-08-23T13:14:58.624087 #30217] FATAL -- :
|
744
|
-
F, [2016-08-23T13:14:58.628320 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
745
|
-
F, [2016-08-23T13:14:58.628362 #30217] FATAL -- :
|
746
|
-
F, [2016-08-23T13:14:58.628376 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
747
|
-
I, [2016-08-23T13:14:58.630205 #30217] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:14:58 +0300
|
748
|
-
I, [2016-08-23T13:14:58.630763 #30217] INFO -- : Processing by DummyController#crash as HTML
|
749
|
-
I, [2016-08-23T13:14:58.631007 #30217] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
750
|
-
F, [2016-08-23T13:14:58.633847 #30217] FATAL -- :
|
751
|
-
F, [2016-08-23T13:14:58.633884 #30217] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
752
|
-
F, [2016-08-23T13:14:58.633899 #30217] FATAL -- :
|
753
|
-
F, [2016-08-23T13:14:58.633912 #30217] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
754
|
-
I, [2016-08-23T13:14:58.737682 #30217] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 13:14:58 +0300
|
755
|
-
I, [2016-08-23T13:14:58.738621 #30217] INFO -- : Processing by DummyController#resque as HTML
|
756
|
-
I, [2016-08-23T13:14:58.747383 #30217] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
757
|
-
I, [2016-08-23T13:14:58.747638 #30217] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
758
|
-
I, [2016-08-23T13:14:58.747935 #30217] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
759
|
-
D, [2016-08-23T13:15:02.410533 #30448] DEBUG -- : [1m[35m (0.4ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
760
|
-
D, [2016-08-23T13:15:02.415087 #30448] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
761
|
-
D, [2016-08-23T13:15:02.415327 #30448] DEBUG -- : [1m[35m (0.0ms)[0m [1m[34mselect sqlite_version(*)[0m
|
762
|
-
D, [2016-08-23T13:15:02.415619 #30448] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
763
|
-
D, [2016-08-23T13:15:02.416939 #30448] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
764
|
-
D, [2016-08-23T13:15:02.425378 #30448] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
765
|
-
D, [2016-08-23T13:15:02.429353 #30448] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
766
|
-
D, [2016-08-23T13:15:02.430396 #30448] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-08-23 10:15:02 UTC], ["updated_at", 2016-08-23 10:15:02 UTC]]
|
767
|
-
D, [2016-08-23T13:15:02.430552 #30448] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
768
|
-
I, [2016-08-23T13:15:02.466991 #30448] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:02 +0300
|
769
|
-
I, [2016-08-23T13:15:02.468887 #30448] INFO -- : Processing by DummyController#crash as HTML
|
770
|
-
I, [2016-08-23T13:15:02.470121 #30448] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
771
|
-
F, [2016-08-23T13:15:02.480716 #30448] FATAL -- :
|
772
|
-
F, [2016-08-23T13:15:02.486263 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
773
|
-
F, [2016-08-23T13:15:02.486316 #30448] FATAL -- :
|
774
|
-
F, [2016-08-23T13:15:02.486339 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
775
|
-
I, [2016-08-23T13:15:02.488768 #30448] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 13:15:02 +0300
|
776
|
-
I, [2016-08-23T13:15:02.489499 #30448] INFO -- : Processing by DummyController#delayed_job as HTML
|
777
|
-
I, [2016-08-23T13:15:02.500973 #30448] INFO -- : Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.4ms)
|
778
|
-
F, [2016-08-23T13:15:02.504056 #30448] FATAL -- :
|
779
|
-
F, [2016-08-23T13:15:02.504088 #30448] FATAL -- : AirbrakeTestError (delayed_job error):
|
780
|
-
F, [2016-08-23T13:15:02.504104 #30448] FATAL -- :
|
781
|
-
F, [2016-08-23T13:15:02.504127 #30448] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
782
|
-
F, [2016-08-23T13:15:02.504140 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
783
|
-
I, [2016-08-23T13:15:06.515976 #30448] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 13:15:06 +0300
|
784
|
-
I, [2016-08-23T13:15:06.517048 #30448] INFO -- : Processing by DummyController#resque as HTML
|
785
|
-
I, [2016-08-23T13:15:06.530095 #30448] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
786
|
-
I, [2016-08-23T13:15:06.531087 #30448] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.9ms)
|
787
|
-
I, [2016-08-23T13:15:06.531431 #30448] INFO -- : Completed 200 OK in 14ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
788
|
-
I, [2016-08-23T13:15:06.534896 #30448] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:06 +0300
|
789
|
-
I, [2016-08-23T13:15:06.535445 #30448] INFO -- : Processing by DummyController#crash as HTML
|
790
|
-
I, [2016-08-23T13:15:06.535714 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
791
|
-
F, [2016-08-23T13:15:06.538465 #30448] FATAL -- :
|
792
|
-
F, [2016-08-23T13:15:06.538502 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
793
|
-
F, [2016-08-23T13:15:06.538563 #30448] FATAL -- :
|
794
|
-
F, [2016-08-23T13:15:06.538576 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
795
|
-
I, [2016-08-23T13:15:06.654927 #30448] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 13:15:06 +0300
|
796
|
-
I, [2016-08-23T13:15:06.655639 #30448] INFO -- : Processing by DummyController#index as HTML
|
797
|
-
I, [2016-08-23T13:15:06.656793 #30448] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
798
|
-
I, [2016-08-23T13:15:06.657421 #30448] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.6ms)
|
799
|
-
I, [2016-08-23T13:15:06.657738 #30448] INFO -- : Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
800
|
-
I, [2016-08-23T13:15:06.659899 #30448] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:15:06 +0300
|
801
|
-
I, [2016-08-23T13:15:06.660601 #30448] INFO -- : Processing by DummyController#active_job as HTML
|
802
|
-
I, [2016-08-23T13:15:06.664426 #30448] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
803
|
-
I, [2016-08-23T13:15:06.664695 #30448] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
804
|
-
I, [2016-08-23T13:15:06.665255 #30448] INFO -- : Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
805
|
-
I, [2016-08-23T13:15:08.670027 #30448] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:15:08 +0300
|
806
|
-
I, [2016-08-23T13:15:08.670992 #30448] INFO -- : Processing by DummyController#active_job as HTML
|
807
|
-
I, [2016-08-23T13:15:08.684476 #30448] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
808
|
-
I, [2016-08-23T13:15:08.684825 #30448] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
809
|
-
I, [2016-08-23T13:15:08.685163 #30448] INFO -- : Completed 200 OK in 14ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
810
|
-
I, [2016-08-23T13:15:13.695150 #30448] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:15:13 +0300
|
811
|
-
I, [2016-08-23T13:15:13.695946 #30448] INFO -- : Processing by DummyController#active_job as HTML
|
812
|
-
I, [2016-08-23T13:15:13.697852 #30448] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
813
|
-
I, [2016-08-23T13:15:13.698180 #30448] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
814
|
-
I, [2016-08-23T13:15:13.698565 #30448] INFO -- : Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
815
|
-
I, [2016-08-23T13:15:15.705968 #30448] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:15 +0300
|
816
|
-
I, [2016-08-23T13:15:15.706735 #30448] INFO -- : Processing by DummyController#crash as HTML
|
817
|
-
I, [2016-08-23T13:15:15.707089 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
818
|
-
F, [2016-08-23T13:15:15.716223 #30448] FATAL -- :
|
819
|
-
F, [2016-08-23T13:15:15.716266 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
820
|
-
F, [2016-08-23T13:15:15.716280 #30448] FATAL -- :
|
821
|
-
F, [2016-08-23T13:15:15.716290 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
822
|
-
I, [2016-08-23T13:15:15.718409 #30448] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:15 +0300
|
823
|
-
I, [2016-08-23T13:15:15.718996 #30448] INFO -- : Processing by DummyController#crash as HTML
|
824
|
-
I, [2016-08-23T13:15:15.719310 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
825
|
-
F, [2016-08-23T13:15:15.722335 #30448] FATAL -- :
|
826
|
-
F, [2016-08-23T13:15:15.722376 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
827
|
-
F, [2016-08-23T13:15:15.722390 #30448] FATAL -- :
|
828
|
-
F, [2016-08-23T13:15:15.722402 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
829
|
-
I, [2016-08-23T13:15:15.825585 #30448] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:15 +0300
|
830
|
-
I, [2016-08-23T13:15:15.826269 #30448] INFO -- : Processing by DummyController#crash as HTML
|
831
|
-
I, [2016-08-23T13:15:15.826584 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
832
|
-
F, [2016-08-23T13:15:15.830622 #30448] FATAL -- :
|
833
|
-
F, [2016-08-23T13:15:15.830669 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
834
|
-
F, [2016-08-23T13:15:15.830685 #30448] FATAL -- :
|
835
|
-
F, [2016-08-23T13:15:15.830699 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
836
|
-
I, [2016-08-23T13:15:15.937170 #30448] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:15 +0300
|
837
|
-
I, [2016-08-23T13:15:15.938075 #30448] INFO -- : Processing by DummyController#crash as HTML
|
838
|
-
I, [2016-08-23T13:15:15.938448 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
839
|
-
F, [2016-08-23T13:15:15.947396 #30448] FATAL -- :
|
840
|
-
F, [2016-08-23T13:15:15.947451 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
841
|
-
F, [2016-08-23T13:15:15.947466 #30448] FATAL -- :
|
842
|
-
F, [2016-08-23T13:15:15.947478 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
843
|
-
I, [2016-08-23T13:15:15.949609 #30448] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:15 +0300
|
844
|
-
I, [2016-08-23T13:15:15.950425 #30448] INFO -- : Processing by DummyController#crash as HTML
|
845
|
-
I, [2016-08-23T13:15:15.950710 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
846
|
-
F, [2016-08-23T13:15:15.953971 #30448] FATAL -- :
|
847
|
-
F, [2016-08-23T13:15:15.954008 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
848
|
-
F, [2016-08-23T13:15:15.954023 #30448] FATAL -- :
|
849
|
-
F, [2016-08-23T13:15:15.954036 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
850
|
-
I, [2016-08-23T13:15:16.059570 #30448] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
851
|
-
I, [2016-08-23T13:15:16.060307 #30448] INFO -- : Processing by DummyController#crash as HTML
|
852
|
-
I, [2016-08-23T13:15:16.060686 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
853
|
-
F, [2016-08-23T13:15:16.069479 #30448] FATAL -- :
|
854
|
-
F, [2016-08-23T13:15:16.069517 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
855
|
-
F, [2016-08-23T13:15:16.069530 #30448] FATAL -- :
|
856
|
-
F, [2016-08-23T13:15:16.069541 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
857
|
-
I, [2016-08-23T13:15:16.071384 #30448] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
858
|
-
I, [2016-08-23T13:15:16.071923 #30448] INFO -- : Processing by DummyController#crash as HTML
|
859
|
-
I, [2016-08-23T13:15:16.072150 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
860
|
-
F, [2016-08-23T13:15:16.074963 #30448] FATAL -- :
|
861
|
-
F, [2016-08-23T13:15:16.074994 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
862
|
-
F, [2016-08-23T13:15:16.078928 #30448] FATAL -- :
|
863
|
-
F, [2016-08-23T13:15:16.078956 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
864
|
-
I, [2016-08-23T13:15:16.080702 #30448] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
865
|
-
I, [2016-08-23T13:15:16.081300 #30448] INFO -- : Processing by DummyController#crash as HTML
|
866
|
-
I, [2016-08-23T13:15:16.081544 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
867
|
-
F, [2016-08-23T13:15:16.084405 #30448] FATAL -- :
|
868
|
-
F, [2016-08-23T13:15:16.084441 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
869
|
-
F, [2016-08-23T13:15:16.084455 #30448] FATAL -- :
|
870
|
-
F, [2016-08-23T13:15:16.084466 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
871
|
-
I, [2016-08-23T13:15:16.192818 #30448] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
872
|
-
I, [2016-08-23T13:15:16.193765 #30448] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
873
|
-
I, [2016-08-23T13:15:16.193800 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
874
|
-
I, [2016-08-23T13:15:16.200717 #30448] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
875
|
-
I, [2016-08-23T13:15:16.200959 #30448] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
876
|
-
I, [2016-08-23T13:15:16.201216 #30448] INFO -- : Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
877
|
-
I, [2016-08-23T13:15:16.203504 #30448] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
878
|
-
I, [2016-08-23T13:15:16.204182 #30448] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
879
|
-
I, [2016-08-23T13:15:16.204210 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
880
|
-
I, [2016-08-23T13:15:16.206938 #30448] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
881
|
-
I, [2016-08-23T13:15:16.207193 #30448] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
882
|
-
I, [2016-08-23T13:15:16.207489 #30448] INFO -- : Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
883
|
-
I, [2016-08-23T13:15:16.315932 #30448] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
884
|
-
I, [2016-08-23T13:15:16.316923 #30448] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
885
|
-
I, [2016-08-23T13:15:16.316971 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
886
|
-
I, [2016-08-23T13:15:16.325359 #30448] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
887
|
-
I, [2016-08-23T13:15:16.325645 #30448] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
888
|
-
I, [2016-08-23T13:15:16.325904 #30448] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
889
|
-
I, [2016-08-23T13:15:16.327807 #30448] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
890
|
-
I, [2016-08-23T13:15:16.328384 #30448] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
891
|
-
I, [2016-08-23T13:15:16.328415 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
892
|
-
I, [2016-08-23T13:15:16.331868 #30448] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
893
|
-
I, [2016-08-23T13:15:16.332155 #30448] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
894
|
-
I, [2016-08-23T13:15:16.332506 #30448] INFO -- : Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
895
|
-
I, [2016-08-23T13:15:16.436826 #30448] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
896
|
-
I, [2016-08-23T13:15:16.437749 #30448] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
897
|
-
I, [2016-08-23T13:15:16.437785 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
898
|
-
I, [2016-08-23T13:15:16.445624 #30448] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
899
|
-
I, [2016-08-23T13:15:16.445921 #30448] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
900
|
-
I, [2016-08-23T13:15:16.446205 #30448] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
901
|
-
I, [2016-08-23T13:15:16.448680 #30448] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
902
|
-
I, [2016-08-23T13:15:16.449349 #30448] INFO -- : Processing by DummyController#crash as HTML
|
903
|
-
I, [2016-08-23T13:15:16.449375 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
904
|
-
I, [2016-08-23T13:15:16.449676 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
905
|
-
F, [2016-08-23T13:15:16.452327 #30448] FATAL -- :
|
906
|
-
F, [2016-08-23T13:15:16.452363 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
907
|
-
F, [2016-08-23T13:15:16.452377 #30448] FATAL -- :
|
908
|
-
F, [2016-08-23T13:15:16.452389 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
909
|
-
I, [2016-08-23T13:15:16.559950 #30448] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
910
|
-
I, [2016-08-23T13:15:16.560911 #30448] INFO -- : Processing by DummyController#crash as HTML
|
911
|
-
I, [2016-08-23T13:15:16.560951 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
912
|
-
I, [2016-08-23T13:15:16.561271 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
913
|
-
F, [2016-08-23T13:15:16.569946 #30448] FATAL -- :
|
914
|
-
F, [2016-08-23T13:15:16.569989 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
915
|
-
F, [2016-08-23T13:15:16.570001 #30448] FATAL -- :
|
916
|
-
F, [2016-08-23T13:15:16.570012 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
917
|
-
I, [2016-08-23T13:15:16.571998 #30448] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
918
|
-
I, [2016-08-23T13:15:16.572722 #30448] INFO -- : Processing by DummyController#crash as HTML
|
919
|
-
I, [2016-08-23T13:15:16.572750 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
920
|
-
I, [2016-08-23T13:15:16.573016 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
921
|
-
F, [2016-08-23T13:15:16.575851 #30448] FATAL -- :
|
922
|
-
F, [2016-08-23T13:15:16.575881 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
923
|
-
F, [2016-08-23T13:15:16.575895 #30448] FATAL -- :
|
924
|
-
F, [2016-08-23T13:15:16.575907 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
925
|
-
I, [2016-08-23T13:15:16.681684 #30448] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
926
|
-
I, [2016-08-23T13:15:16.682505 #30448] INFO -- : Processing by DummyController#crash as HTML
|
927
|
-
I, [2016-08-23T13:15:16.682536 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
928
|
-
I, [2016-08-23T13:15:16.682806 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
929
|
-
F, [2016-08-23T13:15:16.689779 #30448] FATAL -- :
|
930
|
-
F, [2016-08-23T13:15:16.689809 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
931
|
-
F, [2016-08-23T13:15:16.689822 #30448] FATAL -- :
|
932
|
-
F, [2016-08-23T13:15:16.689833 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
933
|
-
I, [2016-08-23T13:15:16.691627 #30448] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
934
|
-
I, [2016-08-23T13:15:16.692277 #30448] INFO -- : Processing by DummyController#crash as HTML
|
935
|
-
I, [2016-08-23T13:15:16.692304 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
936
|
-
I, [2016-08-23T13:15:16.692562 #30448] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
937
|
-
F, [2016-08-23T13:15:16.695250 #30448] FATAL -- :
|
938
|
-
F, [2016-08-23T13:15:16.695286 #30448] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
939
|
-
F, [2016-08-23T13:15:16.695300 #30448] FATAL -- :
|
940
|
-
F, [2016-08-23T13:15:16.695312 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
941
|
-
I, [2016-08-23T13:15:16.803487 #30448] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
942
|
-
I, [2016-08-23T13:15:16.804661 #30448] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
943
|
-
I, [2016-08-23T13:15:16.804747 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
944
|
-
I, [2016-08-23T13:15:16.813194 #30448] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
945
|
-
I, [2016-08-23T13:15:16.813683 #30448] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.4ms)
|
946
|
-
I, [2016-08-23T13:15:16.814165 #30448] INFO -- : Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
947
|
-
I, [2016-08-23T13:15:16.817488 #30448] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
948
|
-
I, [2016-08-23T13:15:16.818224 #30448] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
949
|
-
I, [2016-08-23T13:15:16.818253 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
950
|
-
I, [2016-08-23T13:15:16.825302 #30448] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
951
|
-
I, [2016-08-23T13:15:16.825518 #30448] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
952
|
-
I, [2016-08-23T13:15:16.825770 #30448] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
953
|
-
I, [2016-08-23T13:15:16.827757 #30448] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
954
|
-
I, [2016-08-23T13:15:16.828382 #30448] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
955
|
-
I, [2016-08-23T13:15:16.828416 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
956
|
-
I, [2016-08-23T13:15:16.834990 #30448] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
957
|
-
I, [2016-08-23T13:15:16.835191 #30448] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
958
|
-
I, [2016-08-23T13:15:16.835407 #30448] INFO -- : Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
959
|
-
I, [2016-08-23T13:15:16.837309 #30448] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
960
|
-
I, [2016-08-23T13:15:16.837837 #30448] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
961
|
-
I, [2016-08-23T13:15:16.837866 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
962
|
-
I, [2016-08-23T13:15:16.844264 #30448] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
963
|
-
I, [2016-08-23T13:15:16.844482 #30448] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
964
|
-
I, [2016-08-23T13:15:16.844729 #30448] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
965
|
-
I, [2016-08-23T13:15:16.846832 #30448] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
966
|
-
I, [2016-08-23T13:15:16.847491 #30448] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
967
|
-
I, [2016-08-23T13:15:16.847519 #30448] INFO -- : Parameters: {"foo"=>"bar"}
|
968
|
-
I, [2016-08-23T13:15:16.854249 #30448] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
969
|
-
I, [2016-08-23T13:15:16.854474 #30448] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
970
|
-
I, [2016-08-23T13:15:16.854705 #30448] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
971
|
-
I, [2016-08-23T13:15:16.856824 #30448] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
972
|
-
I, [2016-08-23T13:15:16.857434 #30448] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
973
|
-
D, [2016-08-23T13:15:16.857667 #30448] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
974
|
-
D, [2016-08-23T13:15:16.860403 #30448] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
975
|
-
D, [2016-08-23T13:15:16.860675 #30448] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
976
|
-
I, [2016-08-23T13:15:16.860999 #30448] INFO -- : Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.5ms)
|
977
|
-
F, [2016-08-23T13:15:16.866818 #30448] FATAL -- :
|
978
|
-
F, [2016-08-23T13:15:16.866870 #30448] FATAL -- : AirbrakeTestError (after_rollback):
|
979
|
-
F, [2016-08-23T13:15:16.866895 #30448] FATAL -- :
|
980
|
-
F, [2016-08-23T13:15:16.878293 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
981
|
-
I, [2016-08-23T13:15:16.880330 #30448] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 13:15:16 +0300
|
982
|
-
I, [2016-08-23T13:15:16.881041 #30448] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
983
|
-
D, [2016-08-23T13:15:16.881334 #30448] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
984
|
-
D, [2016-08-23T13:15:16.881798 #30448] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
985
|
-
D, [2016-08-23T13:15:16.881964 #30448] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
986
|
-
I, [2016-08-23T13:15:16.882267 #30448] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
|
987
|
-
F, [2016-08-23T13:15:16.885756 #30448] FATAL -- :
|
988
|
-
F, [2016-08-23T13:15:16.885795 #30448] FATAL -- : AirbrakeTestError (after_commit):
|
989
|
-
F, [2016-08-23T13:15:16.885809 #30448] FATAL -- :
|
990
|
-
F, [2016-08-23T13:15:16.885821 #30448] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
991
|
-
D, [2016-08-23T13:15:42.568989 #31133] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
992
|
-
D, [2016-08-23T13:15:42.573525 #31133] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
993
|
-
D, [2016-08-23T13:15:42.573727 #31133] DEBUG -- : [1m[35m (0.0ms)[0m [1m[34mselect sqlite_version(*)[0m
|
994
|
-
D, [2016-08-23T13:15:42.574037 #31133] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
995
|
-
D, [2016-08-23T13:15:42.575293 #31133] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
996
|
-
D, [2016-08-23T13:15:42.583809 #31133] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
997
|
-
D, [2016-08-23T13:15:42.587557 #31133] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
998
|
-
D, [2016-08-23T13:15:42.588472 #31133] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-08-23 10:15:42 UTC], ["updated_at", 2016-08-23 10:15:42 UTC]]
|
999
|
-
D, [2016-08-23T13:15:42.588639 #31133] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1000
|
-
I, [2016-08-23T13:15:42.614231 #31133] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 13:15:42 +0300
|
1001
|
-
I, [2016-08-23T13:15:42.615926 #31133] INFO -- : Processing by DummyController#index as HTML
|
1002
|
-
I, [2016-08-23T13:15:42.618344 #31133] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
1003
|
-
I, [2016-08-23T13:15:42.619079 #31133] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.7ms)
|
1004
|
-
I, [2016-08-23T13:15:42.619376 #31133] INFO -- : Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
1005
|
-
I, [2016-08-23T13:15:42.621794 #31133] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:42 +0300
|
1006
|
-
I, [2016-08-23T13:15:42.622324 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1007
|
-
I, [2016-08-23T13:15:42.623488 #31133] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
1008
|
-
F, [2016-08-23T13:15:42.632711 #31133] FATAL -- :
|
1009
|
-
F, [2016-08-23T13:15:42.638503 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1010
|
-
F, [2016-08-23T13:15:42.638540 #31133] FATAL -- :
|
1011
|
-
F, [2016-08-23T13:15:42.638579 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1012
|
-
I, [2016-08-23T13:15:42.640716 #31133] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 13:15:42 +0300
|
1013
|
-
I, [2016-08-23T13:15:42.641455 #31133] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
1014
|
-
D, [2016-08-23T13:15:42.644262 #31133] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1015
|
-
D, [2016-08-23T13:15:42.644823 #31133] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
1016
|
-
D, [2016-08-23T13:15:42.645025 #31133] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1017
|
-
I, [2016-08-23T13:15:42.645306 #31133] INFO -- : Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.4ms)
|
1018
|
-
F, [2016-08-23T13:15:42.648501 #31133] FATAL -- :
|
1019
|
-
F, [2016-08-23T13:15:42.648536 #31133] FATAL -- : AirbrakeTestError (after_commit):
|
1020
|
-
F, [2016-08-23T13:15:42.648554 #31133] FATAL -- :
|
1021
|
-
F, [2016-08-23T13:15:42.648568 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1022
|
-
I, [2016-08-23T13:15:42.774408 #31133] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 13:15:42 +0300
|
1023
|
-
I, [2016-08-23T13:15:42.775182 #31133] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
1024
|
-
D, [2016-08-23T13:15:42.775475 #31133] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1025
|
-
D, [2016-08-23T13:15:42.776167 #31133] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
1026
|
-
D, [2016-08-23T13:15:42.776344 #31133] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1027
|
-
I, [2016-08-23T13:15:42.776693 #31133] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
|
1028
|
-
F, [2016-08-23T13:15:42.792855 #31133] FATAL -- :
|
1029
|
-
F, [2016-08-23T13:15:42.792889 #31133] FATAL -- : AirbrakeTestError (after_rollback):
|
1030
|
-
F, [2016-08-23T13:15:42.792904 #31133] FATAL -- :
|
1031
|
-
F, [2016-08-23T13:15:42.792962 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1032
|
-
I, [2016-08-23T13:15:42.795308 #31133] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 13:15:42 +0300
|
1033
|
-
I, [2016-08-23T13:15:42.796019 #31133] INFO -- : Processing by DummyController#resque as HTML
|
1034
|
-
I, [2016-08-23T13:15:42.807560 #31133] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1035
|
-
I, [2016-08-23T13:15:42.807911 #31133] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.3ms)
|
1036
|
-
I, [2016-08-23T13:15:42.808245 #31133] INFO -- : Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1037
|
-
I, [2016-08-23T13:15:42.811416 #31133] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:15:42 +0300
|
1038
|
-
I, [2016-08-23T13:15:42.812461 #31133] INFO -- : Processing by DummyController#active_job as HTML
|
1039
|
-
I, [2016-08-23T13:15:42.813598 #31133] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1040
|
-
I, [2016-08-23T13:15:42.813896 #31133] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
1041
|
-
I, [2016-08-23T13:15:42.814236 #31133] INFO -- : Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1042
|
-
I, [2016-08-23T13:15:44.821549 #31133] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:15:44 +0300
|
1043
|
-
I, [2016-08-23T13:15:44.822490 #31133] INFO -- : Processing by DummyController#active_job as HTML
|
1044
|
-
I, [2016-08-23T13:15:44.823958 #31133] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1045
|
-
I, [2016-08-23T13:15:44.824633 #31133] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
1046
|
-
I, [2016-08-23T13:15:44.824927 #31133] INFO -- : Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1047
|
-
I, [2016-08-23T13:15:49.850597 #31133] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:15:49 +0300
|
1048
|
-
I, [2016-08-23T13:15:49.851208 #31133] INFO -- : Processing by DummyController#active_job as HTML
|
1049
|
-
I, [2016-08-23T13:15:49.852720 #31133] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1050
|
-
I, [2016-08-23T13:15:49.852959 #31133] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
1051
|
-
I, [2016-08-23T13:15:49.853212 #31133] INFO -- : Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1052
|
-
I, [2016-08-23T13:15:51.858354 #31133] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 13:15:51 +0300
|
1053
|
-
I, [2016-08-23T13:15:51.859271 #31133] INFO -- : Processing by DummyController#delayed_job as HTML
|
1054
|
-
I, [2016-08-23T13:15:51.876417 #31133] INFO -- : Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.5ms)
|
1055
|
-
F, [2016-08-23T13:15:51.879918 #31133] FATAL -- :
|
1056
|
-
F, [2016-08-23T13:15:51.884370 #31133] FATAL -- : AirbrakeTestError (delayed_job error):
|
1057
|
-
F, [2016-08-23T13:15:51.884388 #31133] FATAL -- :
|
1058
|
-
F, [2016-08-23T13:15:51.884400 #31133] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
1059
|
-
F, [2016-08-23T13:15:51.884410 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1060
|
-
I, [2016-08-23T13:15:55.893510 #31133] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:55 +0300
|
1061
|
-
I, [2016-08-23T13:15:55.894285 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1062
|
-
I, [2016-08-23T13:15:55.894676 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1063
|
-
F, [2016-08-23T13:15:55.905230 #31133] FATAL -- :
|
1064
|
-
F, [2016-08-23T13:15:55.905278 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1065
|
-
F, [2016-08-23T13:15:55.905292 #31133] FATAL -- :
|
1066
|
-
F, [2016-08-23T13:15:55.905303 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1067
|
-
I, [2016-08-23T13:15:55.907405 #31133] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:55 +0300
|
1068
|
-
I, [2016-08-23T13:15:55.908057 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1069
|
-
I, [2016-08-23T13:15:55.908391 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1070
|
-
F, [2016-08-23T13:15:55.911445 #31133] FATAL -- :
|
1071
|
-
F, [2016-08-23T13:15:55.911500 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1072
|
-
F, [2016-08-23T13:15:55.911528 #31133] FATAL -- :
|
1073
|
-
F, [2016-08-23T13:15:55.911550 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1074
|
-
I, [2016-08-23T13:15:56.017730 #31133] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1075
|
-
I, [2016-08-23T13:15:56.018537 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1076
|
-
I, [2016-08-23T13:15:56.018909 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1077
|
-
F, [2016-08-23T13:15:56.032754 #31133] FATAL -- :
|
1078
|
-
F, [2016-08-23T13:15:56.032798 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1079
|
-
F, [2016-08-23T13:15:56.032816 #31133] FATAL -- :
|
1080
|
-
F, [2016-08-23T13:15:56.032831 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1081
|
-
I, [2016-08-23T13:15:56.035382 #31133] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1082
|
-
I, [2016-08-23T13:15:56.036381 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1083
|
-
I, [2016-08-23T13:15:56.036418 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1084
|
-
I, [2016-08-23T13:15:56.036697 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1085
|
-
F, [2016-08-23T13:15:56.040124 #31133] FATAL -- :
|
1086
|
-
F, [2016-08-23T13:15:56.040155 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1087
|
-
F, [2016-08-23T13:15:56.040171 #31133] FATAL -- :
|
1088
|
-
F, [2016-08-23T13:15:56.040185 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1089
|
-
I, [2016-08-23T13:15:56.143756 #31133] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1090
|
-
I, [2016-08-23T13:15:56.144665 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1091
|
-
I, [2016-08-23T13:15:56.144697 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1092
|
-
I, [2016-08-23T13:15:56.144974 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1093
|
-
F, [2016-08-23T13:15:56.152655 #31133] FATAL -- :
|
1094
|
-
F, [2016-08-23T13:15:56.152684 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1095
|
-
F, [2016-08-23T13:15:56.152709 #31133] FATAL -- :
|
1096
|
-
F, [2016-08-23T13:15:56.152723 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1097
|
-
I, [2016-08-23T13:15:56.154738 #31133] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1098
|
-
I, [2016-08-23T13:15:56.155519 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1099
|
-
I, [2016-08-23T13:15:56.155551 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1100
|
-
I, [2016-08-23T13:15:56.155816 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1101
|
-
F, [2016-08-23T13:15:56.158711 #31133] FATAL -- :
|
1102
|
-
F, [2016-08-23T13:15:56.158748 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1103
|
-
F, [2016-08-23T13:15:56.163305 #31133] FATAL -- :
|
1104
|
-
F, [2016-08-23T13:15:56.163347 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1105
|
-
I, [2016-08-23T13:15:56.165557 #31133] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1106
|
-
I, [2016-08-23T13:15:56.166989 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1107
|
-
I, [2016-08-23T13:15:56.167021 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1108
|
-
I, [2016-08-23T13:15:56.167274 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1109
|
-
F, [2016-08-23T13:15:56.170333 #31133] FATAL -- :
|
1110
|
-
F, [2016-08-23T13:15:56.170377 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1111
|
-
F, [2016-08-23T13:15:56.170392 #31133] FATAL -- :
|
1112
|
-
F, [2016-08-23T13:15:56.170422 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1113
|
-
I, [2016-08-23T13:15:56.273458 #31133] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1114
|
-
I, [2016-08-23T13:15:56.274308 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1115
|
-
I, [2016-08-23T13:15:56.274339 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1116
|
-
I, [2016-08-23T13:15:56.274647 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1117
|
-
F, [2016-08-23T13:15:56.281802 #31133] FATAL -- :
|
1118
|
-
F, [2016-08-23T13:15:56.281833 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1119
|
-
F, [2016-08-23T13:15:56.281845 #31133] FATAL -- :
|
1120
|
-
F, [2016-08-23T13:15:56.281856 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1121
|
-
I, [2016-08-23T13:15:56.283852 #31133] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1122
|
-
I, [2016-08-23T13:15:56.284679 #31133] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1123
|
-
I, [2016-08-23T13:15:56.284710 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1124
|
-
I, [2016-08-23T13:15:56.288069 #31133] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1125
|
-
I, [2016-08-23T13:15:56.288341 #31133] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1126
|
-
I, [2016-08-23T13:15:56.288598 #31133] INFO -- : Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1127
|
-
I, [2016-08-23T13:15:56.395716 #31133] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1128
|
-
I, [2016-08-23T13:15:56.396566 #31133] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1129
|
-
I, [2016-08-23T13:15:56.396603 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1130
|
-
I, [2016-08-23T13:15:56.404097 #31133] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1131
|
-
I, [2016-08-23T13:15:56.404343 #31133] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1132
|
-
I, [2016-08-23T13:15:56.404581 #31133] INFO -- : Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1133
|
-
I, [2016-08-23T13:15:56.406944 #31133] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1134
|
-
I, [2016-08-23T13:15:56.407772 #31133] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1135
|
-
I, [2016-08-23T13:15:56.407812 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1136
|
-
I, [2016-08-23T13:15:56.411042 #31133] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1137
|
-
I, [2016-08-23T13:15:56.415755 #31133] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1138
|
-
I, [2016-08-23T13:15:56.416020 #31133] INFO -- : Completed 200 OK in 8ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
1139
|
-
I, [2016-08-23T13:15:56.418305 #31133] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1140
|
-
I, [2016-08-23T13:15:56.419030 #31133] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1141
|
-
I, [2016-08-23T13:15:56.419058 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1142
|
-
I, [2016-08-23T13:15:56.422070 #31133] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1143
|
-
I, [2016-08-23T13:15:56.422376 #31133] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1144
|
-
I, [2016-08-23T13:15:56.422646 #31133] INFO -- : Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1145
|
-
I, [2016-08-23T13:15:56.531200 #31133] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1146
|
-
I, [2016-08-23T13:15:56.532196 #31133] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1147
|
-
I, [2016-08-23T13:15:56.532236 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1148
|
-
I, [2016-08-23T13:15:56.540744 #31133] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1149
|
-
I, [2016-08-23T13:15:56.541019 #31133] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1150
|
-
I, [2016-08-23T13:15:56.541304 #31133] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1151
|
-
I, [2016-08-23T13:15:56.543550 #31133] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1152
|
-
I, [2016-08-23T13:15:56.544237 #31133] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1153
|
-
I, [2016-08-23T13:15:56.544266 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1154
|
-
I, [2016-08-23T13:15:56.551368 #31133] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1155
|
-
I, [2016-08-23T13:15:56.551604 #31133] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1156
|
-
I, [2016-08-23T13:15:56.551956 #31133] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1157
|
-
I, [2016-08-23T13:15:56.554439 #31133] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1158
|
-
I, [2016-08-23T13:15:56.555129 #31133] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1159
|
-
I, [2016-08-23T13:15:56.555158 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1160
|
-
I, [2016-08-23T13:15:56.562763 #31133] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1161
|
-
I, [2016-08-23T13:15:56.563075 #31133] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1162
|
-
I, [2016-08-23T13:15:56.563349 #31133] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1163
|
-
I, [2016-08-23T13:15:56.565663 #31133] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1164
|
-
I, [2016-08-23T13:15:56.566385 #31133] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1165
|
-
I, [2016-08-23T13:15:56.566414 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1166
|
-
I, [2016-08-23T13:15:56.573092 #31133] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1167
|
-
I, [2016-08-23T13:15:56.573326 #31133] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1168
|
-
I, [2016-08-23T13:15:56.573562 #31133] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1169
|
-
I, [2016-08-23T13:15:56.575523 #31133] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1170
|
-
I, [2016-08-23T13:15:56.576078 #31133] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1171
|
-
I, [2016-08-23T13:15:56.576114 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1172
|
-
I, [2016-08-23T13:15:56.582838 #31133] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1173
|
-
I, [2016-08-23T13:15:56.583077 #31133] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1174
|
-
I, [2016-08-23T13:15:56.583294 #31133] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1175
|
-
I, [2016-08-23T13:15:56.585129 #31133] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1176
|
-
I, [2016-08-23T13:15:56.585735 #31133] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1177
|
-
I, [2016-08-23T13:15:56.585765 #31133] INFO -- : Parameters: {"foo"=>"bar"}
|
1178
|
-
I, [2016-08-23T13:15:56.593094 #31133] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1179
|
-
I, [2016-08-23T13:15:56.593444 #31133] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
1180
|
-
I, [2016-08-23T13:15:56.593774 #31133] INFO -- : Completed 200 OK in 8ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1181
|
-
I, [2016-08-23T13:15:56.596835 #31133] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1182
|
-
I, [2016-08-23T13:15:56.597636 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1183
|
-
I, [2016-08-23T13:15:56.597986 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1184
|
-
F, [2016-08-23T13:15:56.601545 #31133] FATAL -- :
|
1185
|
-
F, [2016-08-23T13:15:56.601580 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1186
|
-
F, [2016-08-23T13:15:56.601617 #31133] FATAL -- :
|
1187
|
-
F, [2016-08-23T13:15:56.601632 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1188
|
-
I, [2016-08-23T13:15:56.709397 #31133] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1189
|
-
I, [2016-08-23T13:15:56.710357 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1190
|
-
I, [2016-08-23T13:15:56.710746 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1191
|
-
F, [2016-08-23T13:15:56.719180 #31133] FATAL -- :
|
1192
|
-
F, [2016-08-23T13:15:56.719213 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1193
|
-
F, [2016-08-23T13:15:56.719229 #31133] FATAL -- :
|
1194
|
-
F, [2016-08-23T13:15:56.719240 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1195
|
-
I, [2016-08-23T13:15:56.721184 #31133] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1196
|
-
I, [2016-08-23T13:15:56.721676 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1197
|
-
I, [2016-08-23T13:15:56.721906 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1198
|
-
F, [2016-08-23T13:15:56.724703 #31133] FATAL -- :
|
1199
|
-
F, [2016-08-23T13:15:56.724757 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1200
|
-
F, [2016-08-23T13:15:56.724782 #31133] FATAL -- :
|
1201
|
-
F, [2016-08-23T13:15:56.724804 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1202
|
-
I, [2016-08-23T13:15:56.831151 #31133] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1203
|
-
I, [2016-08-23T13:15:56.832021 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1204
|
-
I, [2016-08-23T13:15:56.832362 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1205
|
-
F, [2016-08-23T13:15:56.839877 #31133] FATAL -- :
|
1206
|
-
F, [2016-08-23T13:15:56.839901 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1207
|
-
F, [2016-08-23T13:15:56.839912 #31133] FATAL -- :
|
1208
|
-
F, [2016-08-23T13:15:56.839922 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1209
|
-
I, [2016-08-23T13:15:56.841636 #31133] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1210
|
-
I, [2016-08-23T13:15:56.842272 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1211
|
-
I, [2016-08-23T13:15:56.842510 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1212
|
-
F, [2016-08-23T13:15:56.845239 #31133] FATAL -- :
|
1213
|
-
F, [2016-08-23T13:15:56.845279 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1214
|
-
F, [2016-08-23T13:15:56.845326 #31133] FATAL -- :
|
1215
|
-
F, [2016-08-23T13:15:56.845340 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1216
|
-
I, [2016-08-23T13:15:56.953591 #31133] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:15:56 +0300
|
1217
|
-
I, [2016-08-23T13:15:56.954683 #31133] INFO -- : Processing by DummyController#crash as HTML
|
1218
|
-
I, [2016-08-23T13:15:56.954954 #31133] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1219
|
-
F, [2016-08-23T13:15:56.963762 #31133] FATAL -- :
|
1220
|
-
F, [2016-08-23T13:15:56.963816 #31133] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1221
|
-
F, [2016-08-23T13:15:56.963830 #31133] FATAL -- :
|
1222
|
-
F, [2016-08-23T13:15:56.963841 #31133] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1223
|
-
D, [2016-08-23T13:16:01.427342 #31391] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1224
|
-
D, [2016-08-23T13:16:01.433469 #31391] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1225
|
-
D, [2016-08-23T13:16:01.433769 #31391] DEBUG -- : [1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
1226
|
-
D, [2016-08-23T13:16:01.434123 #31391] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1227
|
-
D, [2016-08-23T13:16:01.435766 #31391] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1228
|
-
D, [2016-08-23T13:16:01.444056 #31391] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
1229
|
-
D, [2016-08-23T13:16:01.447224 #31391] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1230
|
-
D, [2016-08-23T13:16:01.448124 #31391] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-08-23 10:16:01 UTC], ["updated_at", 2016-08-23 10:16:01 UTC]]
|
1231
|
-
D, [2016-08-23T13:16:01.448256 #31391] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1232
|
-
I, [2016-08-23T13:16:01.472773 #31391] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:01 +0300
|
1233
|
-
I, [2016-08-23T13:16:01.474473 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1234
|
-
I, [2016-08-23T13:16:01.475571 #31391] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
1235
|
-
F, [2016-08-23T13:16:01.484868 #31391] FATAL -- :
|
1236
|
-
F, [2016-08-23T13:16:01.484926 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1237
|
-
F, [2016-08-23T13:16:01.484943 #31391] FATAL -- :
|
1238
|
-
F, [2016-08-23T13:16:01.484958 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1239
|
-
I, [2016-08-23T13:16:01.597028 #31391] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 13:16:01 +0300
|
1240
|
-
I, [2016-08-23T13:16:01.597858 #31391] INFO -- : Processing by DummyController#index as HTML
|
1241
|
-
I, [2016-08-23T13:16:01.601205 #31391] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
1242
|
-
I, [2016-08-23T13:16:01.602068 #31391] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.8ms)
|
1243
|
-
I, [2016-08-23T13:16:01.602412 #31391] INFO -- : Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
1244
|
-
I, [2016-08-23T13:16:01.604681 #31391] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 13:16:01 +0300
|
1245
|
-
I, [2016-08-23T13:16:01.605211 #31391] INFO -- : Processing by DummyController#resque as HTML
|
1246
|
-
I, [2016-08-23T13:16:01.612853 #31391] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1247
|
-
I, [2016-08-23T13:16:01.613090 #31391] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
1248
|
-
I, [2016-08-23T13:16:01.613333 #31391] INFO -- : Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1249
|
-
I, [2016-08-23T13:16:01.615678 #31391] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:01 +0300
|
1250
|
-
I, [2016-08-23T13:16:01.616449 #31391] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1251
|
-
I, [2016-08-23T13:16:01.616478 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1252
|
-
I, [2016-08-23T13:16:01.624602 #31391] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1253
|
-
I, [2016-08-23T13:16:01.624926 #31391] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1254
|
-
I, [2016-08-23T13:16:01.625183 #31391] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1255
|
-
I, [2016-08-23T13:16:01.733987 #31391] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:01 +0300
|
1256
|
-
I, [2016-08-23T13:16:01.735001 #31391] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1257
|
-
I, [2016-08-23T13:16:01.735083 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1258
|
-
I, [2016-08-23T13:16:01.744524 #31391] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1259
|
-
I, [2016-08-23T13:16:01.744784 #31391] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1260
|
-
I, [2016-08-23T13:16:01.745035 #31391] INFO -- : Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1261
|
-
I, [2016-08-23T13:16:01.747330 #31391] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:01 +0300
|
1262
|
-
I, [2016-08-23T13:16:01.748006 #31391] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1263
|
-
I, [2016-08-23T13:16:01.748034 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1264
|
-
I, [2016-08-23T13:16:01.750926 #31391] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1265
|
-
I, [2016-08-23T13:16:01.751225 #31391] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1266
|
-
I, [2016-08-23T13:16:01.751500 #31391] INFO -- : Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1267
|
-
I, [2016-08-23T13:16:01.858344 #31391] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:01 +0300
|
1268
|
-
I, [2016-08-23T13:16:01.859538 #31391] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1269
|
-
I, [2016-08-23T13:16:01.859579 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1270
|
-
I, [2016-08-23T13:16:01.874602 #31391] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1271
|
-
I, [2016-08-23T13:16:01.875077 #31391] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.4ms)
|
1272
|
-
I, [2016-08-23T13:16:01.875318 #31391] INFO -- : Completed 200 OK in 16ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1273
|
-
I, [2016-08-23T13:16:01.878265 #31391] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:01 +0300
|
1274
|
-
I, [2016-08-23T13:16:01.879226 #31391] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1275
|
-
I, [2016-08-23T13:16:01.879257 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1276
|
-
I, [2016-08-23T13:16:01.884200 #31391] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1277
|
-
I, [2016-08-23T13:16:01.884509 #31391] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1278
|
-
I, [2016-08-23T13:16:01.885163 #31391] INFO -- : Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
1279
|
-
I, [2016-08-23T13:16:01.992300 #31391] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:01 +0300
|
1280
|
-
I, [2016-08-23T13:16:01.993498 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1281
|
-
I, [2016-08-23T13:16:01.993537 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1282
|
-
I, [2016-08-23T13:16:01.993895 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1283
|
-
F, [2016-08-23T13:16:02.006601 #31391] FATAL -- :
|
1284
|
-
F, [2016-08-23T13:16:02.006631 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1285
|
-
F, [2016-08-23T13:16:02.006643 #31391] FATAL -- :
|
1286
|
-
F, [2016-08-23T13:16:02.006653 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1287
|
-
I, [2016-08-23T13:16:02.009212 #31391] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:02 +0300
|
1288
|
-
I, [2016-08-23T13:16:02.017848 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1289
|
-
I, [2016-08-23T13:16:02.017918 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1290
|
-
I, [2016-08-23T13:16:02.018227 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1291
|
-
F, [2016-08-23T13:16:02.021209 #31391] FATAL -- :
|
1292
|
-
F, [2016-08-23T13:16:02.021246 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1293
|
-
F, [2016-08-23T13:16:02.021259 #31391] FATAL -- :
|
1294
|
-
F, [2016-08-23T13:16:02.021271 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1295
|
-
I, [2016-08-23T13:16:02.129778 #31391] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:02 +0300
|
1296
|
-
I, [2016-08-23T13:16:02.130730 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1297
|
-
I, [2016-08-23T13:16:02.130771 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1298
|
-
I, [2016-08-23T13:16:02.131113 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1299
|
-
F, [2016-08-23T13:16:02.139224 #31391] FATAL -- :
|
1300
|
-
F, [2016-08-23T13:16:02.139248 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1301
|
-
F, [2016-08-23T13:16:02.139259 #31391] FATAL -- :
|
1302
|
-
F, [2016-08-23T13:16:02.139270 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1303
|
-
I, [2016-08-23T13:16:02.141176 #31391] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:02 +0300
|
1304
|
-
I, [2016-08-23T13:16:02.141931 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1305
|
-
I, [2016-08-23T13:16:02.141959 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1306
|
-
I, [2016-08-23T13:16:02.142227 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1307
|
-
F, [2016-08-23T13:16:02.145125 #31391] FATAL -- :
|
1308
|
-
F, [2016-08-23T13:16:02.145161 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1309
|
-
F, [2016-08-23T13:16:02.145175 #31391] FATAL -- :
|
1310
|
-
F, [2016-08-23T13:16:02.145247 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1311
|
-
I, [2016-08-23T13:16:02.252906 #31391] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:02 +0300
|
1312
|
-
I, [2016-08-23T13:16:02.253834 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1313
|
-
I, [2016-08-23T13:16:02.253887 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1314
|
-
I, [2016-08-23T13:16:02.254209 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1315
|
-
F, [2016-08-23T13:16:02.262586 #31391] FATAL -- :
|
1316
|
-
F, [2016-08-23T13:16:02.262614 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1317
|
-
F, [2016-08-23T13:16:02.262626 #31391] FATAL -- :
|
1318
|
-
F, [2016-08-23T13:16:02.262636 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1319
|
-
I, [2016-08-23T13:16:02.264700 #31391] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:02 +0300
|
1320
|
-
I, [2016-08-23T13:16:02.265442 #31391] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1321
|
-
I, [2016-08-23T13:16:02.265470 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1322
|
-
I, [2016-08-23T13:16:02.273164 #31391] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1323
|
-
I, [2016-08-23T13:16:02.273428 #31391] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1324
|
-
I, [2016-08-23T13:16:02.273693 #31391] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1325
|
-
I, [2016-08-23T13:16:02.275981 #31391] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:02 +0300
|
1326
|
-
I, [2016-08-23T13:16:02.276675 #31391] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1327
|
-
I, [2016-08-23T13:16:02.276703 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1328
|
-
I, [2016-08-23T13:16:02.285171 #31391] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1329
|
-
I, [2016-08-23T13:16:02.285454 #31391] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1330
|
-
I, [2016-08-23T13:16:02.288847 #31391] INFO -- : Completed 200 OK in 12ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
1331
|
-
I, [2016-08-23T13:16:02.291501 #31391] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:02 +0300
|
1332
|
-
I, [2016-08-23T13:16:02.292301 #31391] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1333
|
-
I, [2016-08-23T13:16:02.292332 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1334
|
-
I, [2016-08-23T13:16:02.299444 #31391] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1335
|
-
I, [2016-08-23T13:16:02.299733 #31391] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1336
|
-
I, [2016-08-23T13:16:02.299958 #31391] INFO -- : Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1337
|
-
I, [2016-08-23T13:16:02.302271 #31391] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:02 +0300
|
1338
|
-
I, [2016-08-23T13:16:02.303016 #31391] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1339
|
-
I, [2016-08-23T13:16:02.303055 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1340
|
-
I, [2016-08-23T13:16:02.309975 #31391] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1341
|
-
I, [2016-08-23T13:16:02.310226 #31391] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1342
|
-
I, [2016-08-23T13:16:02.310499 #31391] INFO -- : Completed 200 OK in 7ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1343
|
-
I, [2016-08-23T13:16:02.312785 #31391] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:02 +0300
|
1344
|
-
I, [2016-08-23T13:16:02.313477 #31391] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1345
|
-
I, [2016-08-23T13:16:02.313505 #31391] INFO -- : Parameters: {"foo"=>"bar"}
|
1346
|
-
I, [2016-08-23T13:16:02.320578 #31391] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1347
|
-
I, [2016-08-23T13:16:02.320853 #31391] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1348
|
-
I, [2016-08-23T13:16:02.321120 #31391] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1349
|
-
I, [2016-08-23T13:16:02.323233 #31391] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 13:16:02 +0300
|
1350
|
-
I, [2016-08-23T13:16:02.323812 #31391] INFO -- : Processing by DummyController#delayed_job as HTML
|
1351
|
-
I, [2016-08-23T13:16:02.333924 #31391] INFO -- : Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.3ms)
|
1352
|
-
F, [2016-08-23T13:16:02.337166 #31391] FATAL -- :
|
1353
|
-
F, [2016-08-23T13:16:02.337206 #31391] FATAL -- : AirbrakeTestError (delayed_job error):
|
1354
|
-
F, [2016-08-23T13:16:02.337231 #31391] FATAL -- :
|
1355
|
-
F, [2016-08-23T13:16:02.337285 #31391] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
1356
|
-
F, [2016-08-23T13:16:02.337330 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1357
|
-
I, [2016-08-23T13:16:06.353791 #31391] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:06 +0300
|
1358
|
-
I, [2016-08-23T13:16:06.354878 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1359
|
-
I, [2016-08-23T13:16:06.355148 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1360
|
-
F, [2016-08-23T13:16:06.362302 #31391] FATAL -- :
|
1361
|
-
F, [2016-08-23T13:16:06.362329 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1362
|
-
F, [2016-08-23T13:16:06.362342 #31391] FATAL -- :
|
1363
|
-
F, [2016-08-23T13:16:06.362352 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1364
|
-
I, [2016-08-23T13:16:06.364477 #31391] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 13:16:06 +0300
|
1365
|
-
I, [2016-08-23T13:16:06.365073 #31391] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
1366
|
-
D, [2016-08-23T13:16:06.365298 #31391] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1367
|
-
D, [2016-08-23T13:16:06.367870 #31391] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
1368
|
-
D, [2016-08-23T13:16:06.368054 #31391] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1369
|
-
I, [2016-08-23T13:16:06.368365 #31391] INFO -- : Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.4ms)
|
1370
|
-
F, [2016-08-23T13:16:06.373086 #31391] FATAL -- :
|
1371
|
-
F, [2016-08-23T13:16:06.373123 #31391] FATAL -- : AirbrakeTestError (after_rollback):
|
1372
|
-
F, [2016-08-23T13:16:06.373136 #31391] FATAL -- :
|
1373
|
-
F, [2016-08-23T13:16:06.373148 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1374
|
-
I, [2016-08-23T13:16:06.480382 #31391] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 13:16:06 +0300
|
1375
|
-
I, [2016-08-23T13:16:06.481468 #31391] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
1376
|
-
D, [2016-08-23T13:16:06.481899 #31391] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1377
|
-
D, [2016-08-23T13:16:06.482573 #31391] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
1378
|
-
D, [2016-08-23T13:16:06.482802 #31391] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1379
|
-
I, [2016-08-23T13:16:06.483141 #31391] INFO -- : Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms)
|
1380
|
-
F, [2016-08-23T13:16:06.491604 #31391] FATAL -- :
|
1381
|
-
F, [2016-08-23T13:16:06.491632 #31391] FATAL -- : AirbrakeTestError (after_commit):
|
1382
|
-
F, [2016-08-23T13:16:06.491643 #31391] FATAL -- :
|
1383
|
-
F, [2016-08-23T13:16:06.491653 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1384
|
-
I, [2016-08-23T13:16:06.493615 #31391] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:16:06 +0300
|
1385
|
-
I, [2016-08-23T13:16:06.494342 #31391] INFO -- : Processing by DummyController#active_job as HTML
|
1386
|
-
I, [2016-08-23T13:16:06.495466 #31391] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1387
|
-
I, [2016-08-23T13:16:06.495710 #31391] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
1388
|
-
I, [2016-08-23T13:16:06.496012 #31391] INFO -- : Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1389
|
-
I, [2016-08-23T13:16:11.502695 #31391] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:16:11 +0300
|
1390
|
-
I, [2016-08-23T13:16:11.503612 #31391] INFO -- : Processing by DummyController#active_job as HTML
|
1391
|
-
I, [2016-08-23T13:16:11.511458 #31391] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1392
|
-
I, [2016-08-23T13:16:11.511774 #31391] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
1393
|
-
I, [2016-08-23T13:16:11.512099 #31391] INFO -- : Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1394
|
-
I, [2016-08-23T13:16:13.519577 #31391] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:16:13 +0300
|
1395
|
-
I, [2016-08-23T13:16:13.520293 #31391] INFO -- : Processing by DummyController#active_job as HTML
|
1396
|
-
I, [2016-08-23T13:16:13.521811 #31391] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1397
|
-
I, [2016-08-23T13:16:13.522119 #31391] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
1398
|
-
I, [2016-08-23T13:16:13.522397 #31391] INFO -- : Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1399
|
-
I, [2016-08-23T13:16:15.529105 #31391] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:15 +0300
|
1400
|
-
I, [2016-08-23T13:16:15.529967 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1401
|
-
I, [2016-08-23T13:16:15.530334 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1402
|
-
F, [2016-08-23T13:16:15.538194 #31391] FATAL -- :
|
1403
|
-
F, [2016-08-23T13:16:15.538226 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1404
|
-
F, [2016-08-23T13:16:15.538238 #31391] FATAL -- :
|
1405
|
-
F, [2016-08-23T13:16:15.538251 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1406
|
-
I, [2016-08-23T13:16:15.540345 #31391] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:15 +0300
|
1407
|
-
I, [2016-08-23T13:16:15.541262 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1408
|
-
I, [2016-08-23T13:16:15.541583 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1409
|
-
F, [2016-08-23T13:16:15.544359 #31391] FATAL -- :
|
1410
|
-
F, [2016-08-23T13:16:15.544387 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1411
|
-
F, [2016-08-23T13:16:15.544425 #31391] FATAL -- :
|
1412
|
-
F, [2016-08-23T13:16:15.544438 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1413
|
-
I, [2016-08-23T13:16:15.650682 #31391] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:15 +0300
|
1414
|
-
I, [2016-08-23T13:16:15.651511 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1415
|
-
I, [2016-08-23T13:16:15.651854 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1416
|
-
F, [2016-08-23T13:16:15.662151 #31391] FATAL -- :
|
1417
|
-
F, [2016-08-23T13:16:15.662196 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1418
|
-
F, [2016-08-23T13:16:15.662209 #31391] FATAL -- :
|
1419
|
-
F, [2016-08-23T13:16:15.662219 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1420
|
-
I, [2016-08-23T13:16:15.664364 #31391] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:15 +0300
|
1421
|
-
I, [2016-08-23T13:16:15.664961 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1422
|
-
I, [2016-08-23T13:16:15.665228 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1423
|
-
F, [2016-08-23T13:16:15.668158 #31391] FATAL -- :
|
1424
|
-
F, [2016-08-23T13:16:15.668201 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1425
|
-
F, [2016-08-23T13:16:15.668215 #31391] FATAL -- :
|
1426
|
-
F, [2016-08-23T13:16:15.668227 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1427
|
-
I, [2016-08-23T13:16:15.772405 #31391] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:15 +0300
|
1428
|
-
I, [2016-08-23T13:16:15.773150 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1429
|
-
I, [2016-08-23T13:16:15.773462 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1430
|
-
F, [2016-08-23T13:16:15.780694 #31391] FATAL -- :
|
1431
|
-
F, [2016-08-23T13:16:15.780723 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1432
|
-
F, [2016-08-23T13:16:15.780735 #31391] FATAL -- :
|
1433
|
-
F, [2016-08-23T13:16:15.780744 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1434
|
-
I, [2016-08-23T13:16:15.782489 #31391] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:15 +0300
|
1435
|
-
I, [2016-08-23T13:16:15.782923 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1436
|
-
I, [2016-08-23T13:16:15.783125 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1437
|
-
F, [2016-08-23T13:16:15.785573 #31391] FATAL -- :
|
1438
|
-
F, [2016-08-23T13:16:15.789817 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1439
|
-
F, [2016-08-23T13:16:15.789906 #31391] FATAL -- :
|
1440
|
-
F, [2016-08-23T13:16:15.789932 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1441
|
-
I, [2016-08-23T13:16:15.792208 #31391] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:15 +0300
|
1442
|
-
I, [2016-08-23T13:16:15.792963 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1443
|
-
I, [2016-08-23T13:16:15.793277 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1444
|
-
F, [2016-08-23T13:16:15.796133 #31391] FATAL -- :
|
1445
|
-
F, [2016-08-23T13:16:15.800130 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1446
|
-
F, [2016-08-23T13:16:15.800145 #31391] FATAL -- :
|
1447
|
-
F, [2016-08-23T13:16:15.800157 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1448
|
-
I, [2016-08-23T13:16:15.801931 #31391] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:15 +0300
|
1449
|
-
I, [2016-08-23T13:16:15.802492 #31391] INFO -- : Processing by DummyController#crash as HTML
|
1450
|
-
I, [2016-08-23T13:16:15.802737 #31391] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1451
|
-
F, [2016-08-23T13:16:15.805610 #31391] FATAL -- :
|
1452
|
-
F, [2016-08-23T13:16:15.805647 #31391] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1453
|
-
F, [2016-08-23T13:16:15.805663 #31391] FATAL -- :
|
1454
|
-
F, [2016-08-23T13:16:15.805676 #31391] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1455
|
-
D, [2016-08-23T13:16:27.090147 #31765] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1456
|
-
D, [2016-08-23T13:16:27.094560 #31765] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1457
|
-
D, [2016-08-23T13:16:27.094759 #31765] DEBUG -- : [1m[35m (0.0ms)[0m [1m[34mselect sqlite_version(*)[0m
|
1458
|
-
D, [2016-08-23T13:16:27.095062 #31765] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1459
|
-
D, [2016-08-23T13:16:27.096319 #31765] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1460
|
-
D, [2016-08-23T13:16:27.104692 #31765] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
1461
|
-
D, [2016-08-23T13:16:27.107925 #31765] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1462
|
-
D, [2016-08-23T13:16:27.108980 #31765] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-08-23 10:16:27 UTC], ["updated_at", 2016-08-23 10:16:27 UTC]]
|
1463
|
-
D, [2016-08-23T13:16:27.109135 #31765] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1464
|
-
I, [2016-08-23T13:16:27.136369 #31765] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1465
|
-
I, [2016-08-23T13:16:27.138085 #31765] INFO -- : Processing by DummyController#resque as HTML
|
1466
|
-
I, [2016-08-23T13:16:27.149387 #31765] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1467
|
-
I, [2016-08-23T13:16:27.150251 #31765] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.8ms)
|
1468
|
-
I, [2016-08-23T13:16:27.150602 #31765] INFO -- : Completed 200 OK in 12ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
1469
|
-
I, [2016-08-23T13:16:27.154503 #31765] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1470
|
-
I, [2016-08-23T13:16:27.161521 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1471
|
-
I, [2016-08-23T13:16:27.161874 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1472
|
-
F, [2016-08-23T13:16:27.165103 #31765] FATAL -- :
|
1473
|
-
F, [2016-08-23T13:16:27.165153 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1474
|
-
F, [2016-08-23T13:16:27.165170 #31765] FATAL -- :
|
1475
|
-
F, [2016-08-23T13:16:27.165184 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1476
|
-
I, [2016-08-23T13:16:27.285212 #31765] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1477
|
-
I, [2016-08-23T13:16:27.286355 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1478
|
-
I, [2016-08-23T13:16:27.286750 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1479
|
-
F, [2016-08-23T13:16:27.301143 #31765] FATAL -- :
|
1480
|
-
F, [2016-08-23T13:16:27.301187 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1481
|
-
F, [2016-08-23T13:16:27.301200 #31765] FATAL -- :
|
1482
|
-
F, [2016-08-23T13:16:27.301220 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1483
|
-
I, [2016-08-23T13:16:27.303355 #31765] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1484
|
-
I, [2016-08-23T13:16:27.304104 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1485
|
-
I, [2016-08-23T13:16:27.304436 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1486
|
-
F, [2016-08-23T13:16:27.307655 #31765] FATAL -- :
|
1487
|
-
F, [2016-08-23T13:16:27.307685 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1488
|
-
F, [2016-08-23T13:16:27.307700 #31765] FATAL -- :
|
1489
|
-
F, [2016-08-23T13:16:27.307712 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1490
|
-
I, [2016-08-23T13:16:27.411952 #31765] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1491
|
-
I, [2016-08-23T13:16:27.412750 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1492
|
-
I, [2016-08-23T13:16:27.413103 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1493
|
-
F, [2016-08-23T13:16:27.422548 #31765] FATAL -- :
|
1494
|
-
F, [2016-08-23T13:16:27.422578 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1495
|
-
F, [2016-08-23T13:16:27.422597 #31765] FATAL -- :
|
1496
|
-
F, [2016-08-23T13:16:27.422611 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1497
|
-
I, [2016-08-23T13:16:27.424608 #31765] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1498
|
-
I, [2016-08-23T13:16:27.425198 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1499
|
-
I, [2016-08-23T13:16:27.425563 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1500
|
-
F, [2016-08-23T13:16:27.430229 #31765] FATAL -- :
|
1501
|
-
F, [2016-08-23T13:16:27.430288 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1502
|
-
F, [2016-08-23T13:16:27.430314 #31765] FATAL -- :
|
1503
|
-
F, [2016-08-23T13:16:27.430358 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1504
|
-
I, [2016-08-23T13:16:27.538732 #31765] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1505
|
-
I, [2016-08-23T13:16:27.539765 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1506
|
-
I, [2016-08-23T13:16:27.540097 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1507
|
-
F, [2016-08-23T13:16:27.545207 #31765] FATAL -- :
|
1508
|
-
F, [2016-08-23T13:16:27.545247 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1509
|
-
F, [2016-08-23T13:16:27.545267 #31765] FATAL -- :
|
1510
|
-
F, [2016-08-23T13:16:27.545284 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1511
|
-
I, [2016-08-23T13:16:27.653082 #31765] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1512
|
-
I, [2016-08-23T13:16:27.653789 #31765] INFO -- : Processing by DummyController#index as HTML
|
1513
|
-
I, [2016-08-23T13:16:27.654729 #31765] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
1514
|
-
I, [2016-08-23T13:16:27.655217 #31765] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
1515
|
-
I, [2016-08-23T13:16:27.655486 #31765] INFO -- : Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1516
|
-
I, [2016-08-23T13:16:27.657431 #31765] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1517
|
-
I, [2016-08-23T13:16:27.658479 #31765] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1518
|
-
I, [2016-08-23T13:16:27.658511 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1519
|
-
I, [2016-08-23T13:16:27.670495 #31765] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1520
|
-
I, [2016-08-23T13:16:27.670980 #31765] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.4ms)
|
1521
|
-
I, [2016-08-23T13:16:27.671236 #31765] INFO -- : Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1522
|
-
I, [2016-08-23T13:16:27.674230 #31765] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1523
|
-
I, [2016-08-23T13:16:27.675096 #31765] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1524
|
-
I, [2016-08-23T13:16:27.675124 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1525
|
-
I, [2016-08-23T13:16:27.686548 #31765] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1526
|
-
I, [2016-08-23T13:16:27.686874 #31765] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1527
|
-
I, [2016-08-23T13:16:27.687201 #31765] INFO -- : Completed 200 OK in 12ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1528
|
-
I, [2016-08-23T13:16:27.792494 #31765] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1529
|
-
I, [2016-08-23T13:16:27.793391 #31765] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1530
|
-
I, [2016-08-23T13:16:27.793429 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1531
|
-
I, [2016-08-23T13:16:27.801169 #31765] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1532
|
-
I, [2016-08-23T13:16:27.801463 #31765] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1533
|
-
I, [2016-08-23T13:16:27.801732 #31765] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1534
|
-
I, [2016-08-23T13:16:27.804187 #31765] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1535
|
-
I, [2016-08-23T13:16:27.804910 #31765] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1536
|
-
I, [2016-08-23T13:16:27.804946 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1537
|
-
I, [2016-08-23T13:16:27.808759 #31765] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1538
|
-
I, [2016-08-23T13:16:27.809014 #31765] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1539
|
-
I, [2016-08-23T13:16:27.809297 #31765] INFO -- : Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1540
|
-
I, [2016-08-23T13:16:27.915505 #31765] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1541
|
-
I, [2016-08-23T13:16:27.916757 #31765] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1542
|
-
I, [2016-08-23T13:16:27.916816 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1543
|
-
I, [2016-08-23T13:16:27.925828 #31765] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1544
|
-
I, [2016-08-23T13:16:27.926112 #31765] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1545
|
-
I, [2016-08-23T13:16:27.926420 #31765] INFO -- : Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1546
|
-
I, [2016-08-23T13:16:27.929279 #31765] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1547
|
-
I, [2016-08-23T13:16:27.930154 #31765] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1548
|
-
I, [2016-08-23T13:16:27.930183 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1549
|
-
I, [2016-08-23T13:16:27.937764 #31765] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1550
|
-
I, [2016-08-23T13:16:27.938025 #31765] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1551
|
-
I, [2016-08-23T13:16:27.938278 #31765] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1552
|
-
I, [2016-08-23T13:16:27.940370 #31765] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1553
|
-
I, [2016-08-23T13:16:27.941042 #31765] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1554
|
-
I, [2016-08-23T13:16:27.941070 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1555
|
-
I, [2016-08-23T13:16:27.951995 #31765] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1556
|
-
I, [2016-08-23T13:16:27.952323 #31765] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
1557
|
-
I, [2016-08-23T13:16:27.952570 #31765] INFO -- : Completed 200 OK in 11ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
1558
|
-
I, [2016-08-23T13:16:27.954959 #31765] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1559
|
-
I, [2016-08-23T13:16:27.955676 #31765] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1560
|
-
I, [2016-08-23T13:16:27.955704 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1561
|
-
I, [2016-08-23T13:16:27.962706 #31765] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1562
|
-
I, [2016-08-23T13:16:27.962933 #31765] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1563
|
-
I, [2016-08-23T13:16:27.963221 #31765] INFO -- : Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1564
|
-
I, [2016-08-23T13:16:27.965339 #31765] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1565
|
-
I, [2016-08-23T13:16:27.965991 #31765] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1566
|
-
I, [2016-08-23T13:16:27.966020 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1567
|
-
I, [2016-08-23T13:16:27.973267 #31765] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1568
|
-
I, [2016-08-23T13:16:27.973539 #31765] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1569
|
-
I, [2016-08-23T13:16:27.973803 #31765] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1570
|
-
I, [2016-08-23T13:16:27.976130 #31765] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1571
|
-
I, [2016-08-23T13:16:27.976820 #31765] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1572
|
-
I, [2016-08-23T13:16:27.976846 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1573
|
-
I, [2016-08-23T13:16:27.984616 #31765] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1574
|
-
I, [2016-08-23T13:16:27.984992 #31765] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
1575
|
-
I, [2016-08-23T13:16:27.985406 #31765] INFO -- : Completed 200 OK in 8ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1576
|
-
I, [2016-08-23T13:16:27.988354 #31765] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:27 +0300
|
1577
|
-
I, [2016-08-23T13:16:27.989178 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1578
|
-
I, [2016-08-23T13:16:27.989215 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1579
|
-
I, [2016-08-23T13:16:27.989525 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1580
|
-
F, [2016-08-23T13:16:27.992619 #31765] FATAL -- :
|
1581
|
-
F, [2016-08-23T13:16:27.992661 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1582
|
-
F, [2016-08-23T13:16:27.992677 #31765] FATAL -- :
|
1583
|
-
F, [2016-08-23T13:16:27.992695 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1584
|
-
I, [2016-08-23T13:16:28.099790 #31765] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:28 +0300
|
1585
|
-
I, [2016-08-23T13:16:28.100943 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1586
|
-
I, [2016-08-23T13:16:28.100983 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1587
|
-
I, [2016-08-23T13:16:28.101310 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1588
|
-
F, [2016-08-23T13:16:28.110451 #31765] FATAL -- :
|
1589
|
-
F, [2016-08-23T13:16:28.110482 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1590
|
-
F, [2016-08-23T13:16:28.110496 #31765] FATAL -- :
|
1591
|
-
F, [2016-08-23T13:16:28.110508 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1592
|
-
I, [2016-08-23T13:16:28.112527 #31765] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:28 +0300
|
1593
|
-
I, [2016-08-23T13:16:28.113196 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1594
|
-
I, [2016-08-23T13:16:28.113223 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1595
|
-
I, [2016-08-23T13:16:28.113454 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1596
|
-
F, [2016-08-23T13:16:28.116315 #31765] FATAL -- :
|
1597
|
-
F, [2016-08-23T13:16:28.116375 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1598
|
-
F, [2016-08-23T13:16:28.116410 #31765] FATAL -- :
|
1599
|
-
F, [2016-08-23T13:16:28.116432 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1600
|
-
I, [2016-08-23T13:16:28.125839 #31765] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:28 +0300
|
1601
|
-
I, [2016-08-23T13:16:28.126641 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1602
|
-
I, [2016-08-23T13:16:28.126669 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1603
|
-
I, [2016-08-23T13:16:28.126899 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1604
|
-
F, [2016-08-23T13:16:28.129674 #31765] FATAL -- :
|
1605
|
-
F, [2016-08-23T13:16:28.129715 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1606
|
-
F, [2016-08-23T13:16:28.129730 #31765] FATAL -- :
|
1607
|
-
F, [2016-08-23T13:16:28.129782 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1608
|
-
I, [2016-08-23T13:16:28.238491 #31765] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:16:28 +0300
|
1609
|
-
I, [2016-08-23T13:16:28.239753 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1610
|
-
I, [2016-08-23T13:16:28.239794 #31765] INFO -- : Parameters: {"foo"=>"bar"}
|
1611
|
-
I, [2016-08-23T13:16:28.240205 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1612
|
-
F, [2016-08-23T13:16:28.249081 #31765] FATAL -- :
|
1613
|
-
F, [2016-08-23T13:16:28.249107 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1614
|
-
F, [2016-08-23T13:16:28.249121 #31765] FATAL -- :
|
1615
|
-
F, [2016-08-23T13:16:28.249132 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1616
|
-
I, [2016-08-23T13:16:28.256620 #31765] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:28 +0300
|
1617
|
-
I, [2016-08-23T13:16:28.257605 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1618
|
-
I, [2016-08-23T13:16:28.257862 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1619
|
-
F, [2016-08-23T13:16:28.260973 #31765] FATAL -- :
|
1620
|
-
F, [2016-08-23T13:16:28.261014 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1621
|
-
F, [2016-08-23T13:16:28.261040 #31765] FATAL -- :
|
1622
|
-
F, [2016-08-23T13:16:28.261062 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1623
|
-
I, [2016-08-23T13:16:28.368190 #31765] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 13:16:28 +0300
|
1624
|
-
I, [2016-08-23T13:16:28.369030 #31765] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
1625
|
-
D, [2016-08-23T13:16:28.371554 #31765] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1626
|
-
D, [2016-08-23T13:16:28.372197 #31765] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
1627
|
-
D, [2016-08-23T13:16:28.372389 #31765] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1628
|
-
I, [2016-08-23T13:16:28.372709 #31765] INFO -- : Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.5ms)
|
1629
|
-
F, [2016-08-23T13:16:28.380777 #31765] FATAL -- :
|
1630
|
-
F, [2016-08-23T13:16:28.380819 #31765] FATAL -- : AirbrakeTestError (after_commit):
|
1631
|
-
F, [2016-08-23T13:16:28.380833 #31765] FATAL -- :
|
1632
|
-
F, [2016-08-23T13:16:28.380844 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1633
|
-
I, [2016-08-23T13:16:28.382737 #31765] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 13:16:28 +0300
|
1634
|
-
I, [2016-08-23T13:16:28.383460 #31765] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
1635
|
-
D, [2016-08-23T13:16:28.383684 #31765] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1636
|
-
D, [2016-08-23T13:16:28.384271 #31765] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
1637
|
-
D, [2016-08-23T13:16:28.384432 #31765] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1638
|
-
I, [2016-08-23T13:16:28.384715 #31765] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
|
1639
|
-
F, [2016-08-23T13:16:28.390300 #31765] FATAL -- :
|
1640
|
-
F, [2016-08-23T13:16:28.399963 #31765] FATAL -- : AirbrakeTestError (after_rollback):
|
1641
|
-
F, [2016-08-23T13:16:28.399992 #31765] FATAL -- :
|
1642
|
-
F, [2016-08-23T13:16:28.400005 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1643
|
-
I, [2016-08-23T13:16:28.402098 #31765] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 13:16:28 +0300
|
1644
|
-
I, [2016-08-23T13:16:28.402729 #31765] INFO -- : Processing by DummyController#delayed_job as HTML
|
1645
|
-
I, [2016-08-23T13:16:28.412739 #31765] INFO -- : Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.3ms)
|
1646
|
-
F, [2016-08-23T13:16:28.415595 #31765] FATAL -- :
|
1647
|
-
F, [2016-08-23T13:16:28.415623 #31765] FATAL -- : AirbrakeTestError (delayed_job error):
|
1648
|
-
F, [2016-08-23T13:16:28.415638 #31765] FATAL -- :
|
1649
|
-
F, [2016-08-23T13:16:28.415651 #31765] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
1650
|
-
F, [2016-08-23T13:16:28.415663 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1651
|
-
I, [2016-08-23T13:16:32.428395 #31765] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:16:32 +0300
|
1652
|
-
I, [2016-08-23T13:16:32.429572 #31765] INFO -- : Processing by DummyController#active_job as HTML
|
1653
|
-
I, [2016-08-23T13:16:32.432785 #31765] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1654
|
-
I, [2016-08-23T13:16:32.433079 #31765] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
1655
|
-
I, [2016-08-23T13:16:32.433393 #31765] INFO -- : Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1656
|
-
I, [2016-08-23T13:16:37.441168 #31765] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:16:37 +0300
|
1657
|
-
I, [2016-08-23T13:16:37.442123 #31765] INFO -- : Processing by DummyController#active_job as HTML
|
1658
|
-
I, [2016-08-23T13:16:37.450406 #31765] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1659
|
-
I, [2016-08-23T13:16:37.450811 #31765] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
1660
|
-
I, [2016-08-23T13:16:37.451182 #31765] INFO -- : Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1661
|
-
I, [2016-08-23T13:16:39.458054 #31765] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:16:39 +0300
|
1662
|
-
I, [2016-08-23T13:16:39.458880 #31765] INFO -- : Processing by DummyController#active_job as HTML
|
1663
|
-
I, [2016-08-23T13:16:39.460323 #31765] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1664
|
-
I, [2016-08-23T13:16:39.461398 #31765] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.4ms)
|
1665
|
-
I, [2016-08-23T13:16:39.461847 #31765] INFO -- : Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
1666
|
-
I, [2016-08-23T13:16:41.470509 #31765] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:41 +0300
|
1667
|
-
I, [2016-08-23T13:16:41.471298 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1668
|
-
I, [2016-08-23T13:16:41.471686 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1669
|
-
F, [2016-08-23T13:16:41.481907 #31765] FATAL -- :
|
1670
|
-
F, [2016-08-23T13:16:41.481965 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1671
|
-
F, [2016-08-23T13:16:41.481989 #31765] FATAL -- :
|
1672
|
-
F, [2016-08-23T13:16:41.481999 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1673
|
-
I, [2016-08-23T13:16:41.484595 #31765] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:41 +0300
|
1674
|
-
I, [2016-08-23T13:16:41.485363 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1675
|
-
I, [2016-08-23T13:16:41.485661 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1676
|
-
F, [2016-08-23T13:16:41.489297 #31765] FATAL -- :
|
1677
|
-
F, [2016-08-23T13:16:41.497548 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1678
|
-
F, [2016-08-23T13:16:41.497578 #31765] FATAL -- :
|
1679
|
-
F, [2016-08-23T13:16:41.497592 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1680
|
-
I, [2016-08-23T13:16:41.500858 #31765] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:16:41 +0300
|
1681
|
-
I, [2016-08-23T13:16:41.501483 #31765] INFO -- : Processing by DummyController#crash as HTML
|
1682
|
-
I, [2016-08-23T13:16:41.501733 #31765] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1683
|
-
F, [2016-08-23T13:16:41.507438 #31765] FATAL -- :
|
1684
|
-
F, [2016-08-23T13:16:41.507521 #31765] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1685
|
-
F, [2016-08-23T13:16:41.507550 #31765] FATAL -- :
|
1686
|
-
F, [2016-08-23T13:16:41.507567 #31765] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1687
|
-
D, [2016-08-23T13:17:06.185128 #32341] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1688
|
-
D, [2016-08-23T13:17:06.189546 #32341] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1689
|
-
D, [2016-08-23T13:17:06.189741 #32341] DEBUG -- : [1m[35m (0.0ms)[0m [1m[34mselect sqlite_version(*)[0m
|
1690
|
-
D, [2016-08-23T13:17:06.190061 #32341] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1691
|
-
D, [2016-08-23T13:17:06.191325 #32341] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1692
|
-
D, [2016-08-23T13:17:06.199029 #32341] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
1693
|
-
D, [2016-08-23T13:17:06.202648 #32341] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1694
|
-
D, [2016-08-23T13:17:06.203782 #32341] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-08-23 10:17:06 UTC], ["updated_at", 2016-08-23 10:17:06 UTC]]
|
1695
|
-
D, [2016-08-23T13:17:06.203957 #32341] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1696
|
-
I, [2016-08-23T13:17:06.230135 #32341] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1697
|
-
I, [2016-08-23T13:17:06.231877 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1698
|
-
I, [2016-08-23T13:17:06.233052 #32341] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
1699
|
-
F, [2016-08-23T13:17:06.244520 #32341] FATAL -- :
|
1700
|
-
F, [2016-08-23T13:17:06.244579 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1701
|
-
F, [2016-08-23T13:17:06.244597 #32341] FATAL -- :
|
1702
|
-
F, [2016-08-23T13:17:06.244611 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1703
|
-
I, [2016-08-23T13:17:06.365448 #32341] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1704
|
-
I, [2016-08-23T13:17:06.366238 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1705
|
-
I, [2016-08-23T13:17:06.366563 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1706
|
-
F, [2016-08-23T13:17:06.374492 #32341] FATAL -- :
|
1707
|
-
F, [2016-08-23T13:17:06.374520 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1708
|
-
F, [2016-08-23T13:17:06.374532 #32341] FATAL -- :
|
1709
|
-
F, [2016-08-23T13:17:06.374546 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1710
|
-
I, [2016-08-23T13:17:06.376468 #32341] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1711
|
-
I, [2016-08-23T13:17:06.377009 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1712
|
-
I, [2016-08-23T13:17:06.377267 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1713
|
-
F, [2016-08-23T13:17:06.380279 #32341] FATAL -- :
|
1714
|
-
F, [2016-08-23T13:17:06.380325 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1715
|
-
F, [2016-08-23T13:17:06.380364 #32341] FATAL -- :
|
1716
|
-
F, [2016-08-23T13:17:06.384597 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1717
|
-
I, [2016-08-23T13:17:06.489612 #32341] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1718
|
-
I, [2016-08-23T13:17:06.490589 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1719
|
-
I, [2016-08-23T13:17:06.490933 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1720
|
-
F, [2016-08-23T13:17:06.500651 #32341] FATAL -- :
|
1721
|
-
F, [2016-08-23T13:17:06.500681 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1722
|
-
F, [2016-08-23T13:17:06.500693 #32341] FATAL -- :
|
1723
|
-
F, [2016-08-23T13:17:06.500703 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1724
|
-
I, [2016-08-23T13:17:06.502998 #32341] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1725
|
-
I, [2016-08-23T13:17:06.503696 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1726
|
-
I, [2016-08-23T13:17:06.503996 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1727
|
-
F, [2016-08-23T13:17:06.507534 #32341] FATAL -- :
|
1728
|
-
F, [2016-08-23T13:17:06.507571 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1729
|
-
F, [2016-08-23T13:17:06.507585 #32341] FATAL -- :
|
1730
|
-
F, [2016-08-23T13:17:06.507597 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1731
|
-
I, [2016-08-23T13:17:06.610654 #32341] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1732
|
-
I, [2016-08-23T13:17:06.611630 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1733
|
-
I, [2016-08-23T13:17:06.611668 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1734
|
-
I, [2016-08-23T13:17:06.611984 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1735
|
-
F, [2016-08-23T13:17:06.615731 #32341] FATAL -- :
|
1736
|
-
F, [2016-08-23T13:17:06.615771 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1737
|
-
F, [2016-08-23T13:17:06.615815 #32341] FATAL -- :
|
1738
|
-
F, [2016-08-23T13:17:06.615828 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1739
|
-
I, [2016-08-23T13:17:06.720845 #32341] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1740
|
-
I, [2016-08-23T13:17:06.721986 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1741
|
-
I, [2016-08-23T13:17:06.722019 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1742
|
-
I, [2016-08-23T13:17:06.722298 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1743
|
-
F, [2016-08-23T13:17:06.736136 #32341] FATAL -- :
|
1744
|
-
F, [2016-08-23T13:17:06.736167 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1745
|
-
F, [2016-08-23T13:17:06.736178 #32341] FATAL -- :
|
1746
|
-
F, [2016-08-23T13:17:06.736188 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1747
|
-
I, [2016-08-23T13:17:06.738747 #32341] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1748
|
-
I, [2016-08-23T13:17:06.739799 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1749
|
-
I, [2016-08-23T13:17:06.739831 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1750
|
-
I, [2016-08-23T13:17:06.740076 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1751
|
-
F, [2016-08-23T13:17:06.744360 #32341] FATAL -- :
|
1752
|
-
F, [2016-08-23T13:17:06.744411 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1753
|
-
F, [2016-08-23T13:17:06.744435 #32341] FATAL -- :
|
1754
|
-
F, [2016-08-23T13:17:06.744448 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1755
|
-
I, [2016-08-23T13:17:06.850960 #32341] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1756
|
-
I, [2016-08-23T13:17:06.852050 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1757
|
-
I, [2016-08-23T13:17:06.852084 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1758
|
-
I, [2016-08-23T13:17:06.852395 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1759
|
-
F, [2016-08-23T13:17:06.867864 #32341] FATAL -- :
|
1760
|
-
F, [2016-08-23T13:17:06.867899 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1761
|
-
F, [2016-08-23T13:17:06.867912 #32341] FATAL -- :
|
1762
|
-
F, [2016-08-23T13:17:06.867923 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1763
|
-
I, [2016-08-23T13:17:06.869885 #32341] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1764
|
-
I, [2016-08-23T13:17:06.870594 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1765
|
-
I, [2016-08-23T13:17:06.870632 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1766
|
-
I, [2016-08-23T13:17:06.870893 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1767
|
-
F, [2016-08-23T13:17:06.873480 #32341] FATAL -- :
|
1768
|
-
F, [2016-08-23T13:17:06.873528 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1769
|
-
F, [2016-08-23T13:17:06.873543 #32341] FATAL -- :
|
1770
|
-
F, [2016-08-23T13:17:06.873555 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1771
|
-
I, [2016-08-23T13:17:06.981210 #32341] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1772
|
-
I, [2016-08-23T13:17:06.982517 #32341] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1773
|
-
I, [2016-08-23T13:17:06.982574 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1774
|
-
I, [2016-08-23T13:17:06.993909 #32341] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1775
|
-
I, [2016-08-23T13:17:06.994658 #32341] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.7ms)
|
1776
|
-
I, [2016-08-23T13:17:06.994975 #32341] INFO -- : Completed 200 OK in 12ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
1777
|
-
I, [2016-08-23T13:17:06.998164 #32341] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:06 +0300
|
1778
|
-
I, [2016-08-23T13:17:06.998835 #32341] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1779
|
-
I, [2016-08-23T13:17:06.998875 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1780
|
-
I, [2016-08-23T13:17:07.001777 #32341] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1781
|
-
I, [2016-08-23T13:17:07.002034 #32341] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1782
|
-
I, [2016-08-23T13:17:07.002294 #32341] INFO -- : Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1783
|
-
I, [2016-08-23T13:17:07.108595 #32341] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1784
|
-
I, [2016-08-23T13:17:07.109462 #32341] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1785
|
-
I, [2016-08-23T13:17:07.109495 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1786
|
-
I, [2016-08-23T13:17:07.117256 #32341] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1787
|
-
I, [2016-08-23T13:17:07.117511 #32341] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1788
|
-
I, [2016-08-23T13:17:07.117773 #32341] INFO -- : Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1789
|
-
I, [2016-08-23T13:17:07.119960 #32341] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1790
|
-
I, [2016-08-23T13:17:07.120591 #32341] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1791
|
-
I, [2016-08-23T13:17:07.120623 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1792
|
-
I, [2016-08-23T13:17:07.123440 #32341] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1793
|
-
I, [2016-08-23T13:17:07.123722 #32341] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
1794
|
-
I, [2016-08-23T13:17:07.123963 #32341] INFO -- : Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1795
|
-
I, [2016-08-23T13:17:07.228895 #32341] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1796
|
-
I, [2016-08-23T13:17:07.229847 #32341] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
1797
|
-
I, [2016-08-23T13:17:07.229888 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1798
|
-
I, [2016-08-23T13:17:07.241039 #32341] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
1799
|
-
I, [2016-08-23T13:17:07.241494 #32341] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.4ms)
|
1800
|
-
I, [2016-08-23T13:17:07.241778 #32341] INFO -- : Completed 200 OK in 12ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
1801
|
-
I, [2016-08-23T13:17:07.244584 #32341] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1802
|
-
I, [2016-08-23T13:17:07.245458 #32341] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1803
|
-
I, [2016-08-23T13:17:07.245491 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1804
|
-
I, [2016-08-23T13:17:07.252943 #32341] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1805
|
-
I, [2016-08-23T13:17:07.253284 #32341] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
1806
|
-
I, [2016-08-23T13:17:07.253657 #32341] INFO -- : Completed 200 OK in 8ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
1807
|
-
I, [2016-08-23T13:17:07.255895 #32341] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1808
|
-
I, [2016-08-23T13:17:07.256734 #32341] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1809
|
-
I, [2016-08-23T13:17:07.256773 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1810
|
-
I, [2016-08-23T13:17:07.264912 #32341] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1811
|
-
I, [2016-08-23T13:17:07.265197 #32341] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1812
|
-
I, [2016-08-23T13:17:07.265481 #32341] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1813
|
-
I, [2016-08-23T13:17:07.267897 #32341] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1814
|
-
I, [2016-08-23T13:17:07.268596 #32341] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1815
|
-
I, [2016-08-23T13:17:07.268624 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1816
|
-
I, [2016-08-23T13:17:07.275985 #32341] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1817
|
-
I, [2016-08-23T13:17:07.276275 #32341] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1818
|
-
I, [2016-08-23T13:17:07.276598 #32341] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1819
|
-
I, [2016-08-23T13:17:07.279097 #32341] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1820
|
-
I, [2016-08-23T13:17:07.279812 #32341] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1821
|
-
I, [2016-08-23T13:17:07.279852 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1822
|
-
I, [2016-08-23T13:17:07.287186 #32341] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1823
|
-
I, [2016-08-23T13:17:07.287560 #32341] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
1824
|
-
I, [2016-08-23T13:17:07.287965 #32341] INFO -- : Completed 200 OK in 8ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1825
|
-
I, [2016-08-23T13:17:07.290871 #32341] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1826
|
-
I, [2016-08-23T13:17:07.291724 #32341] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1827
|
-
I, [2016-08-23T13:17:07.291758 #32341] INFO -- : Parameters: {"foo"=>"bar"}
|
1828
|
-
I, [2016-08-23T13:17:07.302075 #32341] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1829
|
-
I, [2016-08-23T13:17:07.302387 #32341] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1830
|
-
I, [2016-08-23T13:17:07.302668 #32341] INFO -- : Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1831
|
-
I, [2016-08-23T13:17:07.305100 #32341] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1832
|
-
I, [2016-08-23T13:17:07.305620 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1833
|
-
I, [2016-08-23T13:17:07.305866 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1834
|
-
F, [2016-08-23T13:17:07.308410 #32341] FATAL -- :
|
1835
|
-
F, [2016-08-23T13:17:07.308447 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1836
|
-
F, [2016-08-23T13:17:07.308461 #32341] FATAL -- :
|
1837
|
-
F, [2016-08-23T13:17:07.308473 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1838
|
-
I, [2016-08-23T13:17:07.314647 #32341] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1839
|
-
I, [2016-08-23T13:17:07.315243 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1840
|
-
I, [2016-08-23T13:17:07.315555 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1841
|
-
F, [2016-08-23T13:17:07.318330 #32341] FATAL -- :
|
1842
|
-
F, [2016-08-23T13:17:07.318367 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1843
|
-
F, [2016-08-23T13:17:07.318381 #32341] FATAL -- :
|
1844
|
-
F, [2016-08-23T13:17:07.318393 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1845
|
-
I, [2016-08-23T13:17:07.421829 #32341] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1846
|
-
I, [2016-08-23T13:17:07.422641 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1847
|
-
I, [2016-08-23T13:17:07.423038 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1848
|
-
F, [2016-08-23T13:17:07.431460 #32341] FATAL -- :
|
1849
|
-
F, [2016-08-23T13:17:07.431491 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1850
|
-
F, [2016-08-23T13:17:07.431506 #32341] FATAL -- :
|
1851
|
-
F, [2016-08-23T13:17:07.431517 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1852
|
-
I, [2016-08-23T13:17:07.433434 #32341] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 13:17:07 +0300
|
1853
|
-
I, [2016-08-23T13:17:07.434076 #32341] INFO -- : Processing by DummyController#delayed_job as HTML
|
1854
|
-
I, [2016-08-23T13:17:07.444095 #32341] INFO -- : Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.3ms)
|
1855
|
-
F, [2016-08-23T13:17:07.447116 #32341] FATAL -- :
|
1856
|
-
F, [2016-08-23T13:17:07.447154 #32341] FATAL -- : AirbrakeTestError (delayed_job error):
|
1857
|
-
F, [2016-08-23T13:17:07.447178 #32341] FATAL -- :
|
1858
|
-
F, [2016-08-23T13:17:07.456372 #32341] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
1859
|
-
F, [2016-08-23T13:17:07.456418 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1860
|
-
I, [2016-08-23T13:17:11.460900 #32341] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 13:17:11 +0300
|
1861
|
-
I, [2016-08-23T13:17:11.461756 #32341] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
1862
|
-
D, [2016-08-23T13:17:11.464163 #32341] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1863
|
-
D, [2016-08-23T13:17:11.464850 #32341] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
1864
|
-
D, [2016-08-23T13:17:11.465088 #32341] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1865
|
-
I, [2016-08-23T13:17:11.465432 #32341] INFO -- : Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.4ms)
|
1866
|
-
F, [2016-08-23T13:17:11.476528 #32341] FATAL -- :
|
1867
|
-
F, [2016-08-23T13:17:11.476574 #32341] FATAL -- : AirbrakeTestError (after_commit):
|
1868
|
-
F, [2016-08-23T13:17:11.476588 #32341] FATAL -- :
|
1869
|
-
F, [2016-08-23T13:17:11.476599 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1870
|
-
I, [2016-08-23T13:17:11.478422 #32341] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 13:17:11 +0300
|
1871
|
-
I, [2016-08-23T13:17:11.479049 #32341] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
1872
|
-
D, [2016-08-23T13:17:11.479262 #32341] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
1873
|
-
D, [2016-08-23T13:17:11.479818 #32341] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
1874
|
-
D, [2016-08-23T13:17:11.479978 #32341] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
1875
|
-
I, [2016-08-23T13:17:11.480238 #32341] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
|
1876
|
-
F, [2016-08-23T13:17:11.484921 #32341] FATAL -- :
|
1877
|
-
F, [2016-08-23T13:17:11.484959 #32341] FATAL -- : AirbrakeTestError (after_rollback):
|
1878
|
-
F, [2016-08-23T13:17:11.484973 #32341] FATAL -- :
|
1879
|
-
F, [2016-08-23T13:17:11.484985 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1880
|
-
I, [2016-08-23T13:17:11.589801 #32341] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:17:11 +0300
|
1881
|
-
I, [2016-08-23T13:17:11.590492 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1882
|
-
I, [2016-08-23T13:17:11.590797 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1883
|
-
F, [2016-08-23T13:17:11.597833 #32341] FATAL -- :
|
1884
|
-
F, [2016-08-23T13:17:11.597862 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1885
|
-
F, [2016-08-23T13:17:11.597874 #32341] FATAL -- :
|
1886
|
-
F, [2016-08-23T13:17:11.597884 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1887
|
-
I, [2016-08-23T13:17:11.599890 #32341] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 13:17:11 +0300
|
1888
|
-
I, [2016-08-23T13:17:11.600521 #32341] INFO -- : Processing by DummyController#index as HTML
|
1889
|
-
I, [2016-08-23T13:17:11.601316 #32341] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
1890
|
-
I, [2016-08-23T13:17:11.601598 #32341] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
1891
|
-
I, [2016-08-23T13:17:11.601871 #32341] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
1892
|
-
I, [2016-08-23T13:17:11.609108 #32341] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:17:11 +0300
|
1893
|
-
I, [2016-08-23T13:17:11.610116 #32341] INFO -- : Processing by DummyController#crash as HTML
|
1894
|
-
I, [2016-08-23T13:17:11.610430 #32341] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1895
|
-
F, [2016-08-23T13:17:11.613639 #32341] FATAL -- :
|
1896
|
-
F, [2016-08-23T13:17:11.613677 #32341] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1897
|
-
F, [2016-08-23T13:17:11.613691 #32341] FATAL -- :
|
1898
|
-
F, [2016-08-23T13:17:11.613704 #32341] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1899
|
-
I, [2016-08-23T13:17:11.719502 #32341] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:17:11 +0300
|
1900
|
-
I, [2016-08-23T13:17:11.720237 #32341] INFO -- : Processing by DummyController#active_job as HTML
|
1901
|
-
I, [2016-08-23T13:17:11.722618 #32341] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1902
|
-
I, [2016-08-23T13:17:11.722866 #32341] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
1903
|
-
I, [2016-08-23T13:17:11.723146 #32341] INFO -- : Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1904
|
-
I, [2016-08-23T13:17:13.730213 #32341] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:17:13 +0300
|
1905
|
-
I, [2016-08-23T13:17:13.731229 #32341] INFO -- : Processing by DummyController#active_job as HTML
|
1906
|
-
I, [2016-08-23T13:17:13.732730 #32341] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1907
|
-
I, [2016-08-23T13:17:13.733139 #32341] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
1908
|
-
I, [2016-08-23T13:17:13.733532 #32341] INFO -- : Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1909
|
-
I, [2016-08-23T13:17:18.746195 #32341] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:17:18 +0300
|
1910
|
-
I, [2016-08-23T13:17:18.746966 #32341] INFO -- : Processing by DummyController#active_job as HTML
|
1911
|
-
I, [2016-08-23T13:17:18.748713 #32341] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
1912
|
-
I, [2016-08-23T13:17:18.749027 #32341] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
1913
|
-
I, [2016-08-23T13:17:18.749384 #32341] INFO -- : Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1914
|
-
I, [2016-08-23T13:17:20.756949 #32341] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 13:17:20 +0300
|
1915
|
-
I, [2016-08-23T13:17:20.757910 #32341] INFO -- : Processing by DummyController#resque as HTML
|
1916
|
-
I, [2016-08-23T13:17:20.774207 #32341] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1917
|
-
I, [2016-08-23T13:17:20.774837 #32341] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.3ms)
|
1918
|
-
I, [2016-08-23T13:17:20.775100 #32341] INFO -- : Completed 200 OK in 17ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
1919
|
-
D, [2016-08-23T13:18:55.783510 #33932] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
1920
|
-
D, [2016-08-23T13:18:55.787853 #33932] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
1921
|
-
D, [2016-08-23T13:18:55.788035 #33932] DEBUG -- : [1m[35m (0.0ms)[0m [1m[34mselect sqlite_version(*)[0m
|
1922
|
-
D, [2016-08-23T13:18:55.788382 #33932] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
1923
|
-
D, [2016-08-23T13:18:55.789642 #33932] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
1924
|
-
D, [2016-08-23T13:18:55.797545 #33932] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
1925
|
-
D, [2016-08-23T13:18:55.800799 #33932] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
1926
|
-
D, [2016-08-23T13:18:55.801691 #33932] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-08-23 10:18:55 UTC], ["updated_at", 2016-08-23 10:18:55 UTC]]
|
1927
|
-
D, [2016-08-23T13:18:55.801828 #33932] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
1928
|
-
I, [2016-08-23T13:18:55.827165 #33932] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 13:18:55 +0300
|
1929
|
-
I, [2016-08-23T13:18:55.829028 #33932] INFO -- : Processing by DummyController#resque as HTML
|
1930
|
-
I, [2016-08-23T13:18:55.840688 #33932] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
1931
|
-
I, [2016-08-23T13:18:55.841670 #33932] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.9ms)
|
1932
|
-
I, [2016-08-23T13:18:55.842094 #33932] INFO -- : Completed 200 OK in 13ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
1933
|
-
I, [2016-08-23T13:18:55.851989 #33932] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:18:55 +0300
|
1934
|
-
I, [2016-08-23T13:18:55.853163 #33932] INFO -- : Processing by DummyController#crash as HTML
|
1935
|
-
I, [2016-08-23T13:18:55.853453 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1936
|
-
F, [2016-08-23T13:18:55.863075 #33932] FATAL -- :
|
1937
|
-
F, [2016-08-23T13:18:55.863113 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1938
|
-
F, [2016-08-23T13:18:55.863142 #33932] FATAL -- :
|
1939
|
-
F, [2016-08-23T13:18:55.867442 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1940
|
-
I, [2016-08-23T13:18:55.869619 #33932] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:18:55 +0300
|
1941
|
-
I, [2016-08-23T13:18:55.870178 #33932] INFO -- : Processing by DummyController#crash as HTML
|
1942
|
-
I, [2016-08-23T13:18:55.870455 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1943
|
-
F, [2016-08-23T13:18:55.873174 #33932] FATAL -- :
|
1944
|
-
F, [2016-08-23T13:18:55.873213 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1945
|
-
F, [2016-08-23T13:18:55.873244 #33932] FATAL -- :
|
1946
|
-
F, [2016-08-23T13:18:55.873267 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1947
|
-
I, [2016-08-23T13:18:55.993460 #33932] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 13:18:55 +0300
|
1948
|
-
I, [2016-08-23T13:18:55.994266 #33932] INFO -- : Processing by DummyController#index as HTML
|
1949
|
-
I, [2016-08-23T13:18:55.995232 #33932] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
1950
|
-
I, [2016-08-23T13:18:55.995562 #33932] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.3ms)
|
1951
|
-
I, [2016-08-23T13:18:55.995900 #33932] INFO -- : Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
1952
|
-
I, [2016-08-23T13:18:55.997439 #33932] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:55 +0300
|
1953
|
-
I, [2016-08-23T13:18:55.998133 #33932] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1954
|
-
I, [2016-08-23T13:18:55.998163 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
1955
|
-
I, [2016-08-23T13:18:56.006805 #33932] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1956
|
-
I, [2016-08-23T13:18:56.007065 #33932] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1957
|
-
I, [2016-08-23T13:18:56.007300 #33932] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1958
|
-
I, [2016-08-23T13:18:56.009861 #33932] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
1959
|
-
I, [2016-08-23T13:18:56.010587 #33932] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1960
|
-
I, [2016-08-23T13:18:56.010615 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
1961
|
-
I, [2016-08-23T13:18:56.023294 #33932] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1962
|
-
I, [2016-08-23T13:18:56.023630 #33932] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
1963
|
-
I, [2016-08-23T13:18:56.024230 #33932] INFO -- : Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
1964
|
-
I, [2016-08-23T13:18:56.027615 #33932] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
1965
|
-
I, [2016-08-23T13:18:56.028601 #33932] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1966
|
-
I, [2016-08-23T13:18:56.028634 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
1967
|
-
I, [2016-08-23T13:18:56.044367 #33932] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1968
|
-
I, [2016-08-23T13:18:56.044873 #33932] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.4ms)
|
1969
|
-
I, [2016-08-23T13:18:56.045123 #33932] INFO -- : Completed 200 OK in 16ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1970
|
-
I, [2016-08-23T13:18:56.047979 #33932] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
1971
|
-
I, [2016-08-23T13:18:56.048936 #33932] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1972
|
-
I, [2016-08-23T13:18:56.048968 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
1973
|
-
I, [2016-08-23T13:18:56.061124 #33932] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1974
|
-
I, [2016-08-23T13:18:56.061580 #33932] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
1975
|
-
I, [2016-08-23T13:18:56.061833 #33932] INFO -- : Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1976
|
-
I, [2016-08-23T13:18:56.064538 #33932] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
1977
|
-
I, [2016-08-23T13:18:56.065380 #33932] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
1978
|
-
I, [2016-08-23T13:18:56.065409 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
1979
|
-
I, [2016-08-23T13:18:56.084860 #33932] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
1980
|
-
I, [2016-08-23T13:18:56.085209 #33932] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
1981
|
-
I, [2016-08-23T13:18:56.085547 #33932] INFO -- : Completed 200 OK in 20ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
1982
|
-
I, [2016-08-23T13:18:56.088409 #33932] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
1983
|
-
I, [2016-08-23T13:18:56.089191 #33932] INFO -- : Processing by DummyController#crash as HTML
|
1984
|
-
I, [2016-08-23T13:18:56.089226 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
1985
|
-
I, [2016-08-23T13:18:56.089517 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1986
|
-
F, [2016-08-23T13:18:56.092953 #33932] FATAL -- :
|
1987
|
-
F, [2016-08-23T13:18:56.092996 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1988
|
-
F, [2016-08-23T13:18:56.093018 #33932] FATAL -- :
|
1989
|
-
F, [2016-08-23T13:18:56.097390 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1990
|
-
I, [2016-08-23T13:18:56.099261 #33932] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
1991
|
-
I, [2016-08-23T13:18:56.099945 #33932] INFO -- : Processing by DummyController#crash as HTML
|
1992
|
-
I, [2016-08-23T13:18:56.099974 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
1993
|
-
I, [2016-08-23T13:18:56.100209 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
1994
|
-
F, [2016-08-23T13:18:56.102820 #33932] FATAL -- :
|
1995
|
-
F, [2016-08-23T13:18:56.102857 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
1996
|
-
F, [2016-08-23T13:18:56.102873 #33932] FATAL -- :
|
1997
|
-
F, [2016-08-23T13:18:56.102896 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
1998
|
-
I, [2016-08-23T13:18:56.211369 #33932] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
1999
|
-
I, [2016-08-23T13:18:56.212327 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2000
|
-
I, [2016-08-23T13:18:56.212378 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
2001
|
-
I, [2016-08-23T13:18:56.212732 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2002
|
-
F, [2016-08-23T13:18:56.221332 #33932] FATAL -- :
|
2003
|
-
F, [2016-08-23T13:18:56.221361 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2004
|
-
F, [2016-08-23T13:18:56.221376 #33932] FATAL -- :
|
2005
|
-
F, [2016-08-23T13:18:56.221387 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2006
|
-
I, [2016-08-23T13:18:56.223287 #33932] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2007
|
-
I, [2016-08-23T13:18:56.224060 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2008
|
-
I, [2016-08-23T13:18:56.224089 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
2009
|
-
I, [2016-08-23T13:18:56.224334 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2010
|
-
F, [2016-08-23T13:18:56.228479 #33932] FATAL -- :
|
2011
|
-
F, [2016-08-23T13:18:56.228518 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2012
|
-
F, [2016-08-23T13:18:56.228542 #33932] FATAL -- :
|
2013
|
-
F, [2016-08-23T13:18:56.228561 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2014
|
-
I, [2016-08-23T13:18:56.333854 #33932] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2015
|
-
I, [2016-08-23T13:18:56.334763 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2016
|
-
I, [2016-08-23T13:18:56.334801 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
2017
|
-
I, [2016-08-23T13:18:56.335134 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2018
|
-
F, [2016-08-23T13:18:56.343963 #33932] FATAL -- :
|
2019
|
-
F, [2016-08-23T13:18:56.343992 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2020
|
-
F, [2016-08-23T13:18:56.344008 #33932] FATAL -- :
|
2021
|
-
F, [2016-08-23T13:18:56.344020 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2022
|
-
I, [2016-08-23T13:18:56.346163 #33932] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2023
|
-
I, [2016-08-23T13:18:56.346967 #33932] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2024
|
-
I, [2016-08-23T13:18:56.346997 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
2025
|
-
I, [2016-08-23T13:18:56.350012 #33932] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2026
|
-
I, [2016-08-23T13:18:56.350328 #33932] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2027
|
-
I, [2016-08-23T13:18:56.350609 #33932] INFO -- : Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2028
|
-
I, [2016-08-23T13:18:56.457099 #33932] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2029
|
-
I, [2016-08-23T13:18:56.458109 #33932] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2030
|
-
I, [2016-08-23T13:18:56.458162 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
2031
|
-
I, [2016-08-23T13:18:56.466152 #33932] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2032
|
-
I, [2016-08-23T13:18:56.466503 #33932] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
2033
|
-
I, [2016-08-23T13:18:56.466777 #33932] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2034
|
-
I, [2016-08-23T13:18:56.469155 #33932] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2035
|
-
I, [2016-08-23T13:18:56.469846 #33932] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2036
|
-
I, [2016-08-23T13:18:56.469875 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
2037
|
-
I, [2016-08-23T13:18:56.473903 #33932] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2038
|
-
I, [2016-08-23T13:18:56.474226 #33932] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2039
|
-
I, [2016-08-23T13:18:56.474560 #33932] INFO -- : Completed 200 OK in 5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2040
|
-
I, [2016-08-23T13:18:56.579554 #33932] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2041
|
-
I, [2016-08-23T13:18:56.580348 #33932] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2042
|
-
I, [2016-08-23T13:18:56.580387 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
2043
|
-
I, [2016-08-23T13:18:56.587598 #33932] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2044
|
-
I, [2016-08-23T13:18:56.587928 #33932] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
2045
|
-
I, [2016-08-23T13:18:56.588233 #33932] INFO -- : Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2046
|
-
I, [2016-08-23T13:18:56.590497 #33932] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2047
|
-
I, [2016-08-23T13:18:56.591128 #33932] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2048
|
-
I, [2016-08-23T13:18:56.591155 #33932] INFO -- : Parameters: {"foo"=>"bar"}
|
2049
|
-
I, [2016-08-23T13:18:56.593871 #33932] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2050
|
-
I, [2016-08-23T13:18:56.594110 #33932] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2051
|
-
I, [2016-08-23T13:18:56.594369 #33932] INFO -- : Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2052
|
-
I, [2016-08-23T13:18:56.701033 #33932] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2053
|
-
I, [2016-08-23T13:18:56.701868 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2054
|
-
I, [2016-08-23T13:18:56.702191 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2055
|
-
F, [2016-08-23T13:18:56.710706 #33932] FATAL -- :
|
2056
|
-
F, [2016-08-23T13:18:56.710737 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2057
|
-
F, [2016-08-23T13:18:56.710772 #33932] FATAL -- :
|
2058
|
-
F, [2016-08-23T13:18:56.710785 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2059
|
-
I, [2016-08-23T13:18:56.712964 #33932] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2060
|
-
I, [2016-08-23T13:18:56.713652 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2061
|
-
I, [2016-08-23T13:18:56.716373 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2062
|
-
F, [2016-08-23T13:18:56.719038 #33932] FATAL -- :
|
2063
|
-
F, [2016-08-23T13:18:56.719076 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2064
|
-
F, [2016-08-23T13:18:56.719093 #33932] FATAL -- :
|
2065
|
-
F, [2016-08-23T13:18:56.719116 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2066
|
-
I, [2016-08-23T13:18:56.824992 #33932] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2067
|
-
I, [2016-08-23T13:18:56.825688 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2068
|
-
I, [2016-08-23T13:18:56.826007 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2069
|
-
F, [2016-08-23T13:18:56.833548 #33932] FATAL -- :
|
2070
|
-
F, [2016-08-23T13:18:56.833577 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2071
|
-
F, [2016-08-23T13:18:56.833600 #33932] FATAL -- :
|
2072
|
-
F, [2016-08-23T13:18:56.833613 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2073
|
-
I, [2016-08-23T13:18:56.835524 #33932] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2074
|
-
I, [2016-08-23T13:18:56.836104 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2075
|
-
I, [2016-08-23T13:18:56.836366 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2076
|
-
F, [2016-08-23T13:18:56.839277 #33932] FATAL -- :
|
2077
|
-
F, [2016-08-23T13:18:56.839316 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2078
|
-
F, [2016-08-23T13:18:56.839342 #33932] FATAL -- :
|
2079
|
-
F, [2016-08-23T13:18:56.839365 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2080
|
-
I, [2016-08-23T13:18:56.945262 #33932] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2081
|
-
I, [2016-08-23T13:18:56.946300 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2082
|
-
I, [2016-08-23T13:18:56.946658 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2083
|
-
F, [2016-08-23T13:18:56.955403 #33932] FATAL -- :
|
2084
|
-
F, [2016-08-23T13:18:56.955430 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2085
|
-
F, [2016-08-23T13:18:56.955458 #33932] FATAL -- :
|
2086
|
-
F, [2016-08-23T13:18:56.955471 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2087
|
-
I, [2016-08-23T13:18:56.957610 #33932] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 13:18:56 +0300
|
2088
|
-
I, [2016-08-23T13:18:56.958267 #33932] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
2089
|
-
D, [2016-08-23T13:18:56.960547 #33932] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2090
|
-
D, [2016-08-23T13:18:56.961095 #33932] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
2091
|
-
D, [2016-08-23T13:18:56.961295 #33932] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2092
|
-
I, [2016-08-23T13:18:56.961568 #33932] INFO -- : Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.4ms)
|
2093
|
-
F, [2016-08-23T13:18:56.964468 #33932] FATAL -- :
|
2094
|
-
F, [2016-08-23T13:18:56.964505 #33932] FATAL -- : AirbrakeTestError (after_commit):
|
2095
|
-
F, [2016-08-23T13:18:56.964522 #33932] FATAL -- :
|
2096
|
-
F, [2016-08-23T13:18:56.964536 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2097
|
-
I, [2016-08-23T13:18:57.070945 #33932] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 13:18:57 +0300
|
2098
|
-
I, [2016-08-23T13:18:57.071810 #33932] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
2099
|
-
D, [2016-08-23T13:18:57.072084 #33932] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
2100
|
-
D, [2016-08-23T13:18:57.072851 #33932] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
2101
|
-
D, [2016-08-23T13:18:57.073039 #33932] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
2102
|
-
I, [2016-08-23T13:18:57.073386 #33932] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
|
2103
|
-
F, [2016-08-23T13:18:57.089959 #33932] FATAL -- :
|
2104
|
-
F, [2016-08-23T13:18:57.089989 #33932] FATAL -- : AirbrakeTestError (after_rollback):
|
2105
|
-
F, [2016-08-23T13:18:57.090002 #33932] FATAL -- :
|
2106
|
-
F, [2016-08-23T13:18:57.090013 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2107
|
-
I, [2016-08-23T13:18:57.092054 #33932] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 13:18:57 +0300
|
2108
|
-
I, [2016-08-23T13:18:57.092749 #33932] INFO -- : Processing by DummyController#delayed_job as HTML
|
2109
|
-
I, [2016-08-23T13:18:57.102957 #33932] INFO -- : Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.3ms)
|
2110
|
-
F, [2016-08-23T13:18:57.107037 #33932] FATAL -- :
|
2111
|
-
F, [2016-08-23T13:18:57.107093 #33932] FATAL -- : AirbrakeTestError (delayed_job error):
|
2112
|
-
F, [2016-08-23T13:18:57.107128 #33932] FATAL -- :
|
2113
|
-
F, [2016-08-23T13:18:57.117587 #33932] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
2114
|
-
F, [2016-08-23T13:18:57.117637 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2115
|
-
I, [2016-08-23T13:19:01.126079 #33932] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:19:01 +0300
|
2116
|
-
I, [2016-08-23T13:19:01.126834 #33932] INFO -- : Processing by DummyController#active_job as HTML
|
2117
|
-
I, [2016-08-23T13:19:01.129343 #33932] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2118
|
-
I, [2016-08-23T13:19:01.129615 #33932] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
2119
|
-
I, [2016-08-23T13:19:01.129894 #33932] INFO -- : Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2120
|
-
I, [2016-08-23T13:19:03.132455 #33932] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:19:03 +0300
|
2121
|
-
I, [2016-08-23T13:19:03.133438 #33932] INFO -- : Processing by DummyController#active_job as HTML
|
2122
|
-
I, [2016-08-23T13:19:03.134751 #33932] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2123
|
-
I, [2016-08-23T13:19:03.135103 #33932] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
2124
|
-
I, [2016-08-23T13:19:03.135429 #33932] INFO -- : Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2125
|
-
I, [2016-08-23T13:19:07.620979 #33932] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:19:07 +0300
|
2126
|
-
I, [2016-08-23T13:19:07.621784 #33932] INFO -- : Processing by DummyController#active_job as HTML
|
2127
|
-
I, [2016-08-23T13:19:07.623709 #33932] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2128
|
-
I, [2016-08-23T13:19:07.624118 #33932] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
2129
|
-
I, [2016-08-23T13:19:07.624517 #33932] INFO -- : Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2130
|
-
I, [2016-08-23T13:19:09.631784 #33932] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:09 +0300
|
2131
|
-
I, [2016-08-23T13:19:09.632508 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2132
|
-
I, [2016-08-23T13:19:09.632852 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2133
|
-
F, [2016-08-23T13:19:09.643125 #33932] FATAL -- :
|
2134
|
-
F, [2016-08-23T13:19:09.643162 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2135
|
-
F, [2016-08-23T13:19:09.643178 #33932] FATAL -- :
|
2136
|
-
F, [2016-08-23T13:19:09.643190 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2137
|
-
I, [2016-08-23T13:19:09.645270 #33932] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:09 +0300
|
2138
|
-
I, [2016-08-23T13:19:09.645918 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2139
|
-
I, [2016-08-23T13:19:09.646244 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2140
|
-
F, [2016-08-23T13:19:09.649877 #33932] FATAL -- :
|
2141
|
-
F, [2016-08-23T13:19:09.649971 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2142
|
-
F, [2016-08-23T13:19:09.650009 #33932] FATAL -- :
|
2143
|
-
F, [2016-08-23T13:19:09.650024 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2144
|
-
I, [2016-08-23T13:19:09.754114 #33932] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:09 +0300
|
2145
|
-
I, [2016-08-23T13:19:09.755245 #33932] INFO -- : Processing by DummyController#crash as HTML
|
2146
|
-
I, [2016-08-23T13:19:09.755626 #33932] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2147
|
-
F, [2016-08-23T13:19:09.771398 #33932] FATAL -- :
|
2148
|
-
F, [2016-08-23T13:19:09.771461 #33932] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2149
|
-
F, [2016-08-23T13:19:09.771492 #33932] FATAL -- :
|
2150
|
-
F, [2016-08-23T13:19:09.771516 #33932] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2151
|
-
D, [2016-08-23T13:19:18.598019 #34234] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
2152
|
-
D, [2016-08-23T13:19:18.602219 #34234] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
2153
|
-
D, [2016-08-23T13:19:18.602420 #34234] DEBUG -- : [1m[35m (0.0ms)[0m [1m[34mselect sqlite_version(*)[0m
|
2154
|
-
D, [2016-08-23T13:19:18.602703 #34234] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
2155
|
-
D, [2016-08-23T13:19:18.603913 #34234] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
2156
|
-
D, [2016-08-23T13:19:18.612790 #34234] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
2157
|
-
D, [2016-08-23T13:19:18.616001 #34234] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2158
|
-
D, [2016-08-23T13:19:18.616932 #34234] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-08-23 10:19:18 UTC], ["updated_at", 2016-08-23 10:19:18 UTC]]
|
2159
|
-
D, [2016-08-23T13:19:18.617085 #34234] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2160
|
-
I, [2016-08-23T13:19:18.642208 #34234] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 13:19:18 +0300
|
2161
|
-
I, [2016-08-23T13:19:18.643970 #34234] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
2162
|
-
D, [2016-08-23T13:19:18.646153 #34234] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2163
|
-
D, [2016-08-23T13:19:18.646703 #34234] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
2164
|
-
D, [2016-08-23T13:19:18.646893 #34234] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2165
|
-
I, [2016-08-23T13:19:18.648011 #34234] INFO -- : Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.4ms)
|
2166
|
-
F, [2016-08-23T13:19:18.657822 #34234] FATAL -- :
|
2167
|
-
F, [2016-08-23T13:19:18.657884 #34234] FATAL -- : AirbrakeTestError (after_commit):
|
2168
|
-
F, [2016-08-23T13:19:18.657901 #34234] FATAL -- :
|
2169
|
-
F, [2016-08-23T13:19:18.657916 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2170
|
-
I, [2016-08-23T13:19:18.772741 #34234] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 13:19:18 +0300
|
2171
|
-
I, [2016-08-23T13:19:18.773548 #34234] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
2172
|
-
D, [2016-08-23T13:19:18.773820 #34234] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
2173
|
-
D, [2016-08-23T13:19:18.774471 #34234] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
2174
|
-
D, [2016-08-23T13:19:18.774651 #34234] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
2175
|
-
I, [2016-08-23T13:19:18.774958 #34234] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
|
2176
|
-
F, [2016-08-23T13:19:18.792693 #34234] FATAL -- :
|
2177
|
-
F, [2016-08-23T13:19:18.792724 #34234] FATAL -- : AirbrakeTestError (after_rollback):
|
2178
|
-
F, [2016-08-23T13:19:18.792736 #34234] FATAL -- :
|
2179
|
-
F, [2016-08-23T13:19:18.792746 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2180
|
-
I, [2016-08-23T13:19:18.801276 #34234] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:18 +0300
|
2181
|
-
I, [2016-08-23T13:19:18.802363 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2182
|
-
I, [2016-08-23T13:19:18.802689 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2183
|
-
F, [2016-08-23T13:19:18.807011 #34234] FATAL -- :
|
2184
|
-
F, [2016-08-23T13:19:18.807056 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2185
|
-
F, [2016-08-23T13:19:18.807074 #34234] FATAL -- :
|
2186
|
-
F, [2016-08-23T13:19:18.807089 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2187
|
-
I, [2016-08-23T13:19:18.814795 #34234] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:18 +0300
|
2188
|
-
I, [2016-08-23T13:19:18.815640 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2189
|
-
I, [2016-08-23T13:19:18.815690 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2190
|
-
I, [2016-08-23T13:19:18.815951 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2191
|
-
F, [2016-08-23T13:19:18.818732 #34234] FATAL -- :
|
2192
|
-
F, [2016-08-23T13:19:18.818769 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2193
|
-
F, [2016-08-23T13:19:18.818783 #34234] FATAL -- :
|
2194
|
-
F, [2016-08-23T13:19:18.818814 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2195
|
-
I, [2016-08-23T13:19:18.827821 #34234] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:18 +0300
|
2196
|
-
I, [2016-08-23T13:19:18.828774 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2197
|
-
I, [2016-08-23T13:19:18.828803 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2198
|
-
I, [2016-08-23T13:19:18.829295 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2199
|
-
F, [2016-08-23T13:19:18.834027 #34234] FATAL -- :
|
2200
|
-
F, [2016-08-23T13:19:18.834068 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2201
|
-
F, [2016-08-23T13:19:18.834082 #34234] FATAL -- :
|
2202
|
-
F, [2016-08-23T13:19:18.834105 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2203
|
-
I, [2016-08-23T13:19:18.941419 #34234] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:18 +0300
|
2204
|
-
I, [2016-08-23T13:19:18.942614 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2205
|
-
I, [2016-08-23T13:19:18.942647 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2206
|
-
I, [2016-08-23T13:19:18.942935 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2207
|
-
F, [2016-08-23T13:19:18.947562 #34234] FATAL -- :
|
2208
|
-
F, [2016-08-23T13:19:18.947607 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2209
|
-
F, [2016-08-23T13:19:18.947631 #34234] FATAL -- :
|
2210
|
-
F, [2016-08-23T13:19:18.947652 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2211
|
-
I, [2016-08-23T13:19:19.055205 #34234] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2212
|
-
I, [2016-08-23T13:19:19.056128 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2213
|
-
I, [2016-08-23T13:19:19.056165 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2214
|
-
I, [2016-08-23T13:19:19.056778 #34234] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
2215
|
-
F, [2016-08-23T13:19:19.076919 #34234] FATAL -- :
|
2216
|
-
F, [2016-08-23T13:19:19.076965 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2217
|
-
F, [2016-08-23T13:19:19.076985 #34234] FATAL -- :
|
2218
|
-
F, [2016-08-23T13:19:19.077002 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2219
|
-
I, [2016-08-23T13:19:19.079186 #34234] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2220
|
-
I, [2016-08-23T13:19:19.080024 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2221
|
-
I, [2016-08-23T13:19:19.080062 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2222
|
-
I, [2016-08-23T13:19:19.080425 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2223
|
-
F, [2016-08-23T13:19:19.083626 #34234] FATAL -- :
|
2224
|
-
F, [2016-08-23T13:19:19.083659 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2225
|
-
F, [2016-08-23T13:19:19.083675 #34234] FATAL -- :
|
2226
|
-
F, [2016-08-23T13:19:19.083689 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2227
|
-
I, [2016-08-23T13:19:19.190115 #34234] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2228
|
-
I, [2016-08-23T13:19:19.191242 #34234] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2229
|
-
I, [2016-08-23T13:19:19.191278 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2230
|
-
I, [2016-08-23T13:19:19.201843 #34234] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2231
|
-
I, [2016-08-23T13:19:19.202626 #34234] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.7ms)
|
2232
|
-
I, [2016-08-23T13:19:19.202957 #34234] INFO -- : Completed 200 OK in 12ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
2233
|
-
I, [2016-08-23T13:19:19.206421 #34234] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2234
|
-
I, [2016-08-23T13:19:19.207247 #34234] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2235
|
-
I, [2016-08-23T13:19:19.207274 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2236
|
-
I, [2016-08-23T13:19:19.215941 #34234] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2237
|
-
I, [2016-08-23T13:19:19.216255 #34234] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2238
|
-
I, [2016-08-23T13:19:19.216601 #34234] INFO -- : Completed 200 OK in 9ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2239
|
-
I, [2016-08-23T13:19:19.219076 #34234] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2240
|
-
I, [2016-08-23T13:19:19.219849 #34234] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2241
|
-
I, [2016-08-23T13:19:19.219881 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2242
|
-
I, [2016-08-23T13:19:19.227256 #34234] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2243
|
-
I, [2016-08-23T13:19:19.227505 #34234] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2244
|
-
I, [2016-08-23T13:19:19.227767 #34234] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2245
|
-
I, [2016-08-23T13:19:19.229991 #34234] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2246
|
-
I, [2016-08-23T13:19:19.230796 #34234] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2247
|
-
I, [2016-08-23T13:19:19.230824 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2248
|
-
I, [2016-08-23T13:19:19.238587 #34234] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2249
|
-
I, [2016-08-23T13:19:19.238832 #34234] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2250
|
-
I, [2016-08-23T13:19:19.239109 #34234] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2251
|
-
I, [2016-08-23T13:19:19.241398 #34234] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2252
|
-
I, [2016-08-23T13:19:19.242103 #34234] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2253
|
-
I, [2016-08-23T13:19:19.242131 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2254
|
-
I, [2016-08-23T13:19:19.254457 #34234] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2255
|
-
I, [2016-08-23T13:19:19.254737 #34234] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2256
|
-
I, [2016-08-23T13:19:19.254983 #34234] INFO -- : Completed 200 OK in 13ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
2257
|
-
I, [2016-08-23T13:19:19.257577 #34234] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2258
|
-
I, [2016-08-23T13:19:19.258390 #34234] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2259
|
-
I, [2016-08-23T13:19:19.258418 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2260
|
-
I, [2016-08-23T13:19:19.261682 #34234] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2261
|
-
I, [2016-08-23T13:19:19.261959 #34234] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2262
|
-
I, [2016-08-23T13:19:19.262260 #34234] INFO -- : Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2263
|
-
I, [2016-08-23T13:19:19.370316 #34234] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2264
|
-
I, [2016-08-23T13:19:19.371442 #34234] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2265
|
-
I, [2016-08-23T13:19:19.371492 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2266
|
-
I, [2016-08-23T13:19:19.380755 #34234] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2267
|
-
I, [2016-08-23T13:19:19.381070 #34234] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
2268
|
-
I, [2016-08-23T13:19:19.381317 #34234] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2269
|
-
I, [2016-08-23T13:19:19.383897 #34234] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2270
|
-
I, [2016-08-23T13:19:19.384610 #34234] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2271
|
-
I, [2016-08-23T13:19:19.384637 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2272
|
-
I, [2016-08-23T13:19:19.387330 #34234] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2273
|
-
I, [2016-08-23T13:19:19.387583 #34234] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2274
|
-
I, [2016-08-23T13:19:19.387839 #34234] INFO -- : Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2275
|
-
I, [2016-08-23T13:19:19.493027 #34234] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2276
|
-
I, [2016-08-23T13:19:19.493923 #34234] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2277
|
-
I, [2016-08-23T13:19:19.493955 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2278
|
-
I, [2016-08-23T13:19:19.501632 #34234] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2279
|
-
I, [2016-08-23T13:19:19.501899 #34234] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2280
|
-
I, [2016-08-23T13:19:19.502204 #34234] INFO -- : Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2281
|
-
I, [2016-08-23T13:19:19.504728 #34234] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2282
|
-
I, [2016-08-23T13:19:19.505436 #34234] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2283
|
-
I, [2016-08-23T13:19:19.505464 #34234] INFO -- : Parameters: {"foo"=>"bar"}
|
2284
|
-
I, [2016-08-23T13:19:19.508338 #34234] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2285
|
-
I, [2016-08-23T13:19:19.508601 #34234] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2286
|
-
I, [2016-08-23T13:19:19.508861 #34234] INFO -- : Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2287
|
-
I, [2016-08-23T13:19:19.612773 #34234] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2288
|
-
I, [2016-08-23T13:19:19.613517 #34234] INFO -- : Processing by DummyController#index as HTML
|
2289
|
-
I, [2016-08-23T13:19:19.614339 #34234] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
2290
|
-
I, [2016-08-23T13:19:19.614629 #34234] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
2291
|
-
I, [2016-08-23T13:19:19.614908 #34234] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2292
|
-
I, [2016-08-23T13:19:19.616212 #34234] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2293
|
-
I, [2016-08-23T13:19:19.616685 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2294
|
-
I, [2016-08-23T13:19:19.616958 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2295
|
-
F, [2016-08-23T13:19:19.626902 #34234] FATAL -- :
|
2296
|
-
F, [2016-08-23T13:19:19.626940 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2297
|
-
F, [2016-08-23T13:19:19.626954 #34234] FATAL -- :
|
2298
|
-
F, [2016-08-23T13:19:19.626965 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2299
|
-
I, [2016-08-23T13:19:19.629071 #34234] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:19:19 +0300
|
2300
|
-
I, [2016-08-23T13:19:19.629882 #34234] INFO -- : Processing by DummyController#active_job as HTML
|
2301
|
-
I, [2016-08-23T13:19:19.630964 #34234] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2302
|
-
I, [2016-08-23T13:19:19.631246 #34234] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
2303
|
-
I, [2016-08-23T13:19:19.631552 #34234] INFO -- : Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2304
|
-
I, [2016-08-23T13:19:24.642982 #34234] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:19:24 +0300
|
2305
|
-
I, [2016-08-23T13:19:24.643814 #34234] INFO -- : Processing by DummyController#active_job as HTML
|
2306
|
-
I, [2016-08-23T13:19:24.652203 #34234] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2307
|
-
I, [2016-08-23T13:19:24.652685 #34234] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.4ms)
|
2308
|
-
I, [2016-08-23T13:19:24.653146 #34234] INFO -- : Completed 200 OK in 9ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2309
|
-
I, [2016-08-23T13:19:26.660370 #34234] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 13:19:26 +0300
|
2310
|
-
I, [2016-08-23T13:19:26.661104 #34234] INFO -- : Processing by DummyController#active_job as HTML
|
2311
|
-
I, [2016-08-23T13:19:26.662873 #34234] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2312
|
-
I, [2016-08-23T13:19:26.663236 #34234] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
2313
|
-
I, [2016-08-23T13:19:26.663558 #34234] INFO -- : Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
2314
|
-
I, [2016-08-23T13:19:28.670181 #34234] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 13:19:28 +0300
|
2315
|
-
I, [2016-08-23T13:19:28.671043 #34234] INFO -- : Processing by DummyController#delayed_job as HTML
|
2316
|
-
I, [2016-08-23T13:19:28.682454 #34234] INFO -- : Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.4ms)
|
2317
|
-
F, [2016-08-23T13:19:28.685570 #34234] FATAL -- :
|
2318
|
-
F, [2016-08-23T13:19:28.685610 #34234] FATAL -- : AirbrakeTestError (delayed_job error):
|
2319
|
-
F, [2016-08-23T13:19:28.685629 #34234] FATAL -- :
|
2320
|
-
F, [2016-08-23T13:19:28.685648 #34234] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
2321
|
-
F, [2016-08-23T13:19:28.685683 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2322
|
-
I, [2016-08-23T13:19:32.698239 #34234] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:32 +0300
|
2323
|
-
I, [2016-08-23T13:19:32.699253 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2324
|
-
I, [2016-08-23T13:19:32.699649 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2325
|
-
F, [2016-08-23T13:19:32.707947 #34234] FATAL -- :
|
2326
|
-
F, [2016-08-23T13:19:32.707974 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2327
|
-
F, [2016-08-23T13:19:32.707986 #34234] FATAL -- :
|
2328
|
-
F, [2016-08-23T13:19:32.707996 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2329
|
-
I, [2016-08-23T13:19:32.710035 #34234] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:32 +0300
|
2330
|
-
I, [2016-08-23T13:19:32.710683 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2331
|
-
I, [2016-08-23T13:19:32.710926 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2332
|
-
F, [2016-08-23T13:19:32.713731 #34234] FATAL -- :
|
2333
|
-
F, [2016-08-23T13:19:32.718074 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2334
|
-
F, [2016-08-23T13:19:32.718090 #34234] FATAL -- :
|
2335
|
-
F, [2016-08-23T13:19:32.718102 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2336
|
-
I, [2016-08-23T13:19:32.719921 #34234] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:32 +0300
|
2337
|
-
I, [2016-08-23T13:19:32.720448 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2338
|
-
I, [2016-08-23T13:19:32.720685 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2339
|
-
F, [2016-08-23T13:19:32.723627 #34234] FATAL -- :
|
2340
|
-
F, [2016-08-23T13:19:32.723653 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2341
|
-
F, [2016-08-23T13:19:32.723668 #34234] FATAL -- :
|
2342
|
-
F, [2016-08-23T13:19:32.723680 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2343
|
-
I, [2016-08-23T13:19:32.828964 #34234] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:32 +0300
|
2344
|
-
I, [2016-08-23T13:19:32.829725 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2345
|
-
I, [2016-08-23T13:19:32.830008 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2346
|
-
F, [2016-08-23T13:19:32.837648 #34234] FATAL -- :
|
2347
|
-
F, [2016-08-23T13:19:32.837672 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2348
|
-
F, [2016-08-23T13:19:32.837683 #34234] FATAL -- :
|
2349
|
-
F, [2016-08-23T13:19:32.837693 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2350
|
-
I, [2016-08-23T13:19:32.839553 #34234] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:32 +0300
|
2351
|
-
I, [2016-08-23T13:19:32.840089 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2352
|
-
I, [2016-08-23T13:19:32.840353 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2353
|
-
F, [2016-08-23T13:19:32.843224 #34234] FATAL -- :
|
2354
|
-
F, [2016-08-23T13:19:32.843252 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2355
|
-
F, [2016-08-23T13:19:32.843275 #34234] FATAL -- :
|
2356
|
-
F, [2016-08-23T13:19:32.843289 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2357
|
-
I, [2016-08-23T13:19:32.950173 #34234] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:32 +0300
|
2358
|
-
I, [2016-08-23T13:19:32.951014 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2359
|
-
I, [2016-08-23T13:19:32.951394 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2360
|
-
F, [2016-08-23T13:19:32.959598 #34234] FATAL -- :
|
2361
|
-
F, [2016-08-23T13:19:32.959631 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2362
|
-
F, [2016-08-23T13:19:32.959645 #34234] FATAL -- :
|
2363
|
-
F, [2016-08-23T13:19:32.959656 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2364
|
-
I, [2016-08-23T13:19:32.961601 #34234] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:32 +0300
|
2365
|
-
I, [2016-08-23T13:19:32.962078 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2366
|
-
I, [2016-08-23T13:19:32.962320 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2367
|
-
F, [2016-08-23T13:19:32.964884 #34234] FATAL -- :
|
2368
|
-
F, [2016-08-23T13:19:32.964910 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2369
|
-
F, [2016-08-23T13:19:32.969253 #34234] FATAL -- :
|
2370
|
-
F, [2016-08-23T13:19:32.969271 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2371
|
-
I, [2016-08-23T13:19:32.971006 #34234] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 13:19:32 +0300
|
2372
|
-
I, [2016-08-23T13:19:32.971555 #34234] INFO -- : Processing by DummyController#crash as HTML
|
2373
|
-
I, [2016-08-23T13:19:32.971831 #34234] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2374
|
-
F, [2016-08-23T13:19:32.974810 #34234] FATAL -- :
|
2375
|
-
F, [2016-08-23T13:19:32.974838 #34234] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2376
|
-
F, [2016-08-23T13:19:32.974851 #34234] FATAL -- :
|
2377
|
-
F, [2016-08-23T13:19:32.974863 #34234] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2378
|
-
I, [2016-08-23T13:19:33.082156 #34234] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 13:19:33 +0300
|
2379
|
-
I, [2016-08-23T13:19:33.083032 #34234] INFO -- : Processing by DummyController#resque as HTML
|
2380
|
-
I, [2016-08-23T13:19:33.090624 #34234] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
2381
|
-
I, [2016-08-23T13:19:33.090890 #34234] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
2382
|
-
I, [2016-08-23T13:19:33.091172 #34234] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2383
|
-
D, [2016-08-23T15:06:24.851630 #26575] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
2384
|
-
D, [2016-08-23T15:06:24.858883 #26575] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
2385
|
-
D, [2016-08-23T15:06:24.859153 #26575] DEBUG -- : [1m[35m (0.0ms)[0m [1m[34mselect sqlite_version(*)[0m
|
2386
|
-
D, [2016-08-23T15:06:24.859466 #26575] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
2387
|
-
D, [2016-08-23T15:06:24.861008 #26575] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
2388
|
-
D, [2016-08-23T15:06:24.873118 #26575] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
2389
|
-
D, [2016-08-23T15:06:24.877460 #26575] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2390
|
-
D, [2016-08-23T15:06:24.878333 #26575] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-08-23 12:06:24 UTC], ["updated_at", 2016-08-23 12:06:24 UTC]]
|
2391
|
-
D, [2016-08-23T15:06:24.878474 #26575] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2392
|
-
I, [2016-08-23T15:06:24.919381 #26575] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:24 +0300
|
2393
|
-
I, [2016-08-23T15:06:24.921649 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2394
|
-
I, [2016-08-23T15:06:24.922888 #26575] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
2395
|
-
F, [2016-08-23T15:06:24.933657 #26575] FATAL -- :
|
2396
|
-
F, [2016-08-23T15:06:24.933699 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2397
|
-
F, [2016-08-23T15:06:24.933715 #26575] FATAL -- :
|
2398
|
-
F, [2016-08-23T15:06:24.933734 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2399
|
-
I, [2016-08-23T15:06:25.062708 #26575] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2400
|
-
I, [2016-08-23T15:06:25.063820 #26575] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2401
|
-
I, [2016-08-23T15:06:25.063857 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2402
|
-
I, [2016-08-23T15:06:25.078797 #26575] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2403
|
-
I, [2016-08-23T15:06:25.080100 #26575] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (1.2ms)
|
2404
|
-
I, [2016-08-23T15:06:25.080571 #26575] INFO -- : Completed 200 OK in 17ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
2405
|
-
I, [2016-08-23T15:06:25.085464 #26575] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2406
|
-
I, [2016-08-23T15:06:25.086283 #26575] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2407
|
-
I, [2016-08-23T15:06:25.086315 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2408
|
-
I, [2016-08-23T15:06:25.089689 #26575] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2409
|
-
I, [2016-08-23T15:06:25.089943 #26575] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2410
|
-
I, [2016-08-23T15:06:25.090297 #26575] INFO -- : Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2411
|
-
I, [2016-08-23T15:06:25.196068 #26575] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2412
|
-
I, [2016-08-23T15:06:25.197014 #26575] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2413
|
-
I, [2016-08-23T15:06:25.197063 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2414
|
-
I, [2016-08-23T15:06:25.211374 #26575] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2415
|
-
I, [2016-08-23T15:06:25.211652 #26575] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2416
|
-
I, [2016-08-23T15:06:25.211941 #26575] INFO -- : Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2417
|
-
I, [2016-08-23T15:06:25.215294 #26575] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2418
|
-
I, [2016-08-23T15:06:25.216228 #26575] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2419
|
-
I, [2016-08-23T15:06:25.216266 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2420
|
-
I, [2016-08-23T15:06:25.221339 #26575] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2421
|
-
I, [2016-08-23T15:06:25.231442 #26575] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.5ms)
|
2422
|
-
I, [2016-08-23T15:06:25.231747 #26575] INFO -- : Completed 200 OK in 15ms (Views: 10.7ms | ActiveRecord: 0.0ms)
|
2423
|
-
I, [2016-08-23T15:06:25.234915 #26575] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2424
|
-
I, [2016-08-23T15:06:25.235935 #26575] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2425
|
-
I, [2016-08-23T15:06:25.235963 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2426
|
-
I, [2016-08-23T15:06:25.240750 #26575] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2427
|
-
I, [2016-08-23T15:06:25.241015 #26575] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2428
|
-
I, [2016-08-23T15:06:25.241320 #26575] INFO -- : Completed 200 OK in 5ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2429
|
-
I, [2016-08-23T15:06:25.351021 #26575] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2430
|
-
I, [2016-08-23T15:06:25.352191 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2431
|
-
I, [2016-08-23T15:06:25.352233 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2432
|
-
I, [2016-08-23T15:06:25.352576 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2433
|
-
F, [2016-08-23T15:06:25.367886 #26575] FATAL -- :
|
2434
|
-
F, [2016-08-23T15:06:25.367920 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2435
|
-
F, [2016-08-23T15:06:25.367932 #26575] FATAL -- :
|
2436
|
-
F, [2016-08-23T15:06:25.367942 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2437
|
-
I, [2016-08-23T15:06:25.369980 #26575] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2438
|
-
I, [2016-08-23T15:06:25.370708 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2439
|
-
I, [2016-08-23T15:06:25.370735 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2440
|
-
I, [2016-08-23T15:06:25.371028 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2441
|
-
F, [2016-08-23T15:06:25.373957 #26575] FATAL -- :
|
2442
|
-
F, [2016-08-23T15:06:25.373987 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2443
|
-
F, [2016-08-23T15:06:25.374002 #26575] FATAL -- :
|
2444
|
-
F, [2016-08-23T15:06:25.374014 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2445
|
-
I, [2016-08-23T15:06:25.480050 #26575] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2446
|
-
I, [2016-08-23T15:06:25.481011 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2447
|
-
I, [2016-08-23T15:06:25.481058 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2448
|
-
I, [2016-08-23T15:06:25.481365 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2449
|
-
F, [2016-08-23T15:06:25.489486 #26575] FATAL -- :
|
2450
|
-
F, [2016-08-23T15:06:25.489518 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2451
|
-
F, [2016-08-23T15:06:25.489532 #26575] FATAL -- :
|
2452
|
-
F, [2016-08-23T15:06:25.489543 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2453
|
-
I, [2016-08-23T15:06:25.491388 #26575] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2454
|
-
I, [2016-08-23T15:06:25.492048 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2455
|
-
I, [2016-08-23T15:06:25.492078 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2456
|
-
I, [2016-08-23T15:06:25.492341 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2457
|
-
F, [2016-08-23T15:06:25.495262 #26575] FATAL -- :
|
2458
|
-
F, [2016-08-23T15:06:25.495299 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2459
|
-
F, [2016-08-23T15:06:25.495313 #26575] FATAL -- :
|
2460
|
-
F, [2016-08-23T15:06:25.495324 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2461
|
-
I, [2016-08-23T15:06:25.602813 #26575] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2462
|
-
I, [2016-08-23T15:06:25.604035 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2463
|
-
I, [2016-08-23T15:06:25.604075 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2464
|
-
I, [2016-08-23T15:06:25.604428 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2465
|
-
F, [2016-08-23T15:06:25.613756 #26575] FATAL -- :
|
2466
|
-
F, [2016-08-23T15:06:25.613786 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2467
|
-
F, [2016-08-23T15:06:25.613801 #26575] FATAL -- :
|
2468
|
-
F, [2016-08-23T15:06:25.613814 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2469
|
-
I, [2016-08-23T15:06:25.615795 #26575] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2470
|
-
I, [2016-08-23T15:06:25.616598 #26575] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2471
|
-
I, [2016-08-23T15:06:25.616627 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2472
|
-
I, [2016-08-23T15:06:25.628861 #26575] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2473
|
-
I, [2016-08-23T15:06:25.629223 #26575] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.3ms)
|
2474
|
-
I, [2016-08-23T15:06:25.629584 #26575] INFO -- : Completed 200 OK in 13ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
2475
|
-
I, [2016-08-23T15:06:25.632294 #26575] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2476
|
-
I, [2016-08-23T15:06:25.633108 #26575] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2477
|
-
I, [2016-08-23T15:06:25.633163 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2478
|
-
I, [2016-08-23T15:06:25.641174 #26575] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2479
|
-
I, [2016-08-23T15:06:25.641422 #26575] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2480
|
-
I, [2016-08-23T15:06:25.641681 #26575] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2481
|
-
I, [2016-08-23T15:06:25.643756 #26575] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2482
|
-
I, [2016-08-23T15:06:25.644425 #26575] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2483
|
-
I, [2016-08-23T15:06:25.644453 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2484
|
-
I, [2016-08-23T15:06:25.651457 #26575] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2485
|
-
I, [2016-08-23T15:06:25.651686 #26575] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2486
|
-
I, [2016-08-23T15:06:25.652086 #26575] INFO -- : Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2487
|
-
I, [2016-08-23T15:06:25.654241 #26575] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2488
|
-
I, [2016-08-23T15:06:25.654898 #26575] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2489
|
-
I, [2016-08-23T15:06:25.654941 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2490
|
-
I, [2016-08-23T15:06:25.662171 #26575] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2491
|
-
I, [2016-08-23T15:06:25.662418 #26575] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2492
|
-
I, [2016-08-23T15:06:25.662674 #26575] INFO -- : Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
2493
|
-
I, [2016-08-23T15:06:25.664827 #26575] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2494
|
-
I, [2016-08-23T15:06:25.665495 #26575] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2495
|
-
I, [2016-08-23T15:06:25.665522 #26575] INFO -- : Parameters: {"foo"=>"bar"}
|
2496
|
-
I, [2016-08-23T15:06:25.673003 #26575] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2497
|
-
I, [2016-08-23T15:06:25.673272 #26575] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2498
|
-
I, [2016-08-23T15:06:25.673563 #26575] INFO -- : Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2499
|
-
I, [2016-08-23T15:06:25.676059 #26575] INFO -- : Started GET "/" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2500
|
-
I, [2016-08-23T15:06:25.676666 #26575] INFO -- : Processing by DummyController#index as HTML
|
2501
|
-
I, [2016-08-23T15:06:25.677298 #26575] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
2502
|
-
I, [2016-08-23T15:06:25.677513 #26575] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
2503
|
-
I, [2016-08-23T15:06:25.677739 #26575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
2504
|
-
I, [2016-08-23T15:06:25.678923 #26575] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2505
|
-
I, [2016-08-23T15:06:25.679289 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2506
|
-
I, [2016-08-23T15:06:25.679529 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2507
|
-
F, [2016-08-23T15:06:25.682067 #26575] FATAL -- :
|
2508
|
-
F, [2016-08-23T15:06:25.682095 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2509
|
-
F, [2016-08-23T15:06:25.682110 #26575] FATAL -- :
|
2510
|
-
F, [2016-08-23T15:06:25.682122 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2511
|
-
I, [2016-08-23T15:06:25.787016 #26575] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2512
|
-
I, [2016-08-23T15:06:25.787780 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2513
|
-
I, [2016-08-23T15:06:25.788124 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2514
|
-
F, [2016-08-23T15:06:25.799668 #26575] FATAL -- :
|
2515
|
-
F, [2016-08-23T15:06:25.799700 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2516
|
-
F, [2016-08-23T15:06:25.799712 #26575] FATAL -- :
|
2517
|
-
F, [2016-08-23T15:06:25.799721 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2518
|
-
I, [2016-08-23T15:06:25.801418 #26575] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2519
|
-
I, [2016-08-23T15:06:25.801975 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2520
|
-
I, [2016-08-23T15:06:25.802236 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2521
|
-
F, [2016-08-23T15:06:25.805039 #26575] FATAL -- :
|
2522
|
-
F, [2016-08-23T15:06:25.805077 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2523
|
-
F, [2016-08-23T15:06:25.805090 #26575] FATAL -- :
|
2524
|
-
F, [2016-08-23T15:06:25.805102 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2525
|
-
I, [2016-08-23T15:06:25.909400 #26575] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2526
|
-
I, [2016-08-23T15:06:25.910146 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2527
|
-
I, [2016-08-23T15:06:25.910474 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2528
|
-
F, [2016-08-23T15:06:25.918732 #26575] FATAL -- :
|
2529
|
-
F, [2016-08-23T15:06:25.918768 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2530
|
-
F, [2016-08-23T15:06:25.918780 #26575] FATAL -- :
|
2531
|
-
F, [2016-08-23T15:06:25.918801 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2532
|
-
I, [2016-08-23T15:06:25.920926 #26575] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:25 +0300
|
2533
|
-
I, [2016-08-23T15:06:25.921613 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2534
|
-
I, [2016-08-23T15:06:25.921883 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2535
|
-
F, [2016-08-23T15:06:25.924681 #26575] FATAL -- :
|
2536
|
-
F, [2016-08-23T15:06:25.924718 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2537
|
-
F, [2016-08-23T15:06:25.924743 #26575] FATAL -- :
|
2538
|
-
F, [2016-08-23T15:06:25.924767 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2539
|
-
I, [2016-08-23T15:06:26.029377 #26575] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:26 +0300
|
2540
|
-
I, [2016-08-23T15:06:26.030258 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2541
|
-
I, [2016-08-23T15:06:26.030609 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2542
|
-
F, [2016-08-23T15:06:26.039211 #26575] FATAL -- :
|
2543
|
-
F, [2016-08-23T15:06:26.039245 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2544
|
-
F, [2016-08-23T15:06:26.039258 #26575] FATAL -- :
|
2545
|
-
F, [2016-08-23T15:06:26.039269 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2546
|
-
I, [2016-08-23T15:06:26.041341 #26575] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:26 +0300
|
2547
|
-
I, [2016-08-23T15:06:26.041949 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2548
|
-
I, [2016-08-23T15:06:26.042203 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2549
|
-
F, [2016-08-23T15:06:26.045000 #26575] FATAL -- :
|
2550
|
-
F, [2016-08-23T15:06:26.045038 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2551
|
-
F, [2016-08-23T15:06:26.045051 #26575] FATAL -- :
|
2552
|
-
F, [2016-08-23T15:06:26.045063 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2553
|
-
I, [2016-08-23T15:06:26.149848 #26575] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:26 +0300
|
2554
|
-
I, [2016-08-23T15:06:26.150608 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2555
|
-
I, [2016-08-23T15:06:26.150960 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2556
|
-
F, [2016-08-23T15:06:26.161147 #26575] FATAL -- :
|
2557
|
-
F, [2016-08-23T15:06:26.161178 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2558
|
-
F, [2016-08-23T15:06:26.161191 #26575] FATAL -- :
|
2559
|
-
F, [2016-08-23T15:06:26.161201 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2560
|
-
I, [2016-08-23T15:06:26.163111 #26575] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-08-23 15:06:26 +0300
|
2561
|
-
I, [2016-08-23T15:06:26.163699 #26575] INFO -- : Processing by DummyController#crash as HTML
|
2562
|
-
I, [2016-08-23T15:06:26.163980 #26575] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2563
|
-
F, [2016-08-23T15:06:26.166536 #26575] FATAL -- :
|
2564
|
-
F, [2016-08-23T15:06:26.166564 #26575] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2565
|
-
F, [2016-08-23T15:06:26.166579 #26575] FATAL -- :
|
2566
|
-
F, [2016-08-23T15:06:26.166613 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2567
|
-
I, [2016-08-23T15:06:26.273592 #26575] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-08-23 15:06:26 +0300
|
2568
|
-
I, [2016-08-23T15:06:26.274685 #26575] INFO -- : Processing by DummyController#delayed_job as HTML
|
2569
|
-
I, [2016-08-23T15:06:26.290605 #26575] INFO -- : Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.4ms)
|
2570
|
-
F, [2016-08-23T15:06:26.293464 #26575] FATAL -- :
|
2571
|
-
F, [2016-08-23T15:06:26.293502 #26575] FATAL -- : AirbrakeTestError (delayed_job error):
|
2572
|
-
F, [2016-08-23T15:06:26.293517 #26575] FATAL -- :
|
2573
|
-
F, [2016-08-23T15:06:26.293528 #26575] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
2574
|
-
F, [2016-08-23T15:06:26.293539 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2575
|
-
I, [2016-08-23T15:06:30.305532 #26575] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:06:30 +0300
|
2576
|
-
I, [2016-08-23T15:06:30.306486 #26575] INFO -- : Processing by DummyController#active_job as HTML
|
2577
|
-
I, [2016-08-23T15:06:30.308369 #26575] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2578
|
-
I, [2016-08-23T15:06:30.308669 #26575] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
2579
|
-
I, [2016-08-23T15:06:30.308981 #26575] INFO -- : Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2580
|
-
I, [2016-08-23T15:06:32.315820 #26575] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:06:32 +0300
|
2581
|
-
I, [2016-08-23T15:06:32.316523 #26575] INFO -- : Processing by DummyController#active_job as HTML
|
2582
|
-
I, [2016-08-23T15:06:32.317490 #26575] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2583
|
-
I, [2016-08-23T15:06:32.317767 #26575] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
2584
|
-
I, [2016-08-23T15:06:32.318049 #26575] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2585
|
-
I, [2016-08-23T15:06:34.323601 #26575] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:06:34 +0300
|
2586
|
-
I, [2016-08-23T15:06:34.324291 #26575] INFO -- : Processing by DummyController#active_job as HTML
|
2587
|
-
I, [2016-08-23T15:06:34.325264 #26575] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2588
|
-
I, [2016-08-23T15:06:34.325560 #26575] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
2589
|
-
I, [2016-08-23T15:06:34.325854 #26575] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2590
|
-
I, [2016-08-23T15:06:36.339822 #26575] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 15:06:36 +0300
|
2591
|
-
I, [2016-08-23T15:06:36.340591 #26575] INFO -- : Processing by DummyController#resque as HTML
|
2592
|
-
I, [2016-08-23T15:06:36.348063 #26575] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
2593
|
-
I, [2016-08-23T15:06:36.348335 #26575] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
2594
|
-
I, [2016-08-23T15:06:36.348644 #26575] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2595
|
-
I, [2016-08-23T15:06:36.352090 #26575] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 15:06:36 +0300
|
2596
|
-
I, [2016-08-23T15:06:36.352957 #26575] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
2597
|
-
D, [2016-08-23T15:06:36.353242 #26575] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
2598
|
-
D, [2016-08-23T15:06:36.355983 #26575] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
2599
|
-
D, [2016-08-23T15:06:36.356210 #26575] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
2600
|
-
I, [2016-08-23T15:06:36.356527 #26575] INFO -- : Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.4ms)
|
2601
|
-
F, [2016-08-23T15:06:36.361196 #26575] FATAL -- :
|
2602
|
-
F, [2016-08-23T15:06:36.361234 #26575] FATAL -- : AirbrakeTestError (after_rollback):
|
2603
|
-
F, [2016-08-23T15:06:36.361249 #26575] FATAL -- :
|
2604
|
-
F, [2016-08-23T15:06:36.361261 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2605
|
-
I, [2016-08-23T15:06:36.465299 #26575] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 15:06:36 +0300
|
2606
|
-
I, [2016-08-23T15:06:36.466156 #26575] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
2607
|
-
D, [2016-08-23T15:06:36.466572 #26575] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
2608
|
-
D, [2016-08-23T15:06:36.467132 #26575] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
2609
|
-
D, [2016-08-23T15:06:36.467342 #26575] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2610
|
-
I, [2016-08-23T15:06:36.467673 #26575] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
|
2611
|
-
F, [2016-08-23T15:06:36.476226 #26575] FATAL -- :
|
2612
|
-
F, [2016-08-23T15:06:36.476254 #26575] FATAL -- : AirbrakeTestError (after_commit):
|
2613
|
-
F, [2016-08-23T15:06:36.476266 #26575] FATAL -- :
|
2614
|
-
F, [2016-08-23T15:06:36.476276 #26575] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2615
|
-
D, [2016-08-23T15:07:30.316983 #27503] DEBUG -- : [1m[35m (0.3ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
2616
|
-
D, [2016-08-23T15:07:30.321373 #27503] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
2617
|
-
D, [2016-08-23T15:07:30.321564 #27503] DEBUG -- : [1m[35m (0.0ms)[0m [1m[34mselect sqlite_version(*)[0m
|
2618
|
-
D, [2016-08-23T15:07:30.321832 #27503] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
2619
|
-
D, [2016-08-23T15:07:30.323031 #27503] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
2620
|
-
D, [2016-08-23T15:07:30.330716 #27503] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
2621
|
-
D, [2016-08-23T15:07:30.333816 #27503] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2622
|
-
D, [2016-08-23T15:07:30.334633 #27503] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-08-23 12:07:30 UTC], ["updated_at", 2016-08-23 12:07:30 UTC]]
|
2623
|
-
D, [2016-08-23T15:07:30.334760 #27503] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2624
|
-
I, [2016-08-23T15:07:30.360033 #27503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2625
|
-
I, [2016-08-23T15:07:30.368071 #27503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2626
|
-
I, [2016-08-23T15:07:30.368114 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2627
|
-
I, [2016-08-23T15:07:30.379674 #27503] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2628
|
-
I, [2016-08-23T15:07:30.380420 #27503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.7ms)
|
2629
|
-
I, [2016-08-23T15:07:30.380740 #27503] INFO -- : Completed 200 OK in 13ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
2630
|
-
I, [2016-08-23T15:07:30.384023 #27503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2631
|
-
I, [2016-08-23T15:07:30.384966 #27503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2632
|
-
I, [2016-08-23T15:07:30.385001 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2633
|
-
I, [2016-08-23T15:07:30.393880 #27503] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2634
|
-
I, [2016-08-23T15:07:30.394149 #27503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2635
|
-
I, [2016-08-23T15:07:30.394419 #27503] INFO -- : Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2636
|
-
I, [2016-08-23T15:07:30.396835 #27503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2637
|
-
I, [2016-08-23T15:07:30.397663 #27503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2638
|
-
I, [2016-08-23T15:07:30.397698 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2639
|
-
I, [2016-08-23T15:07:30.409742 #27503] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2640
|
-
I, [2016-08-23T15:07:30.409997 #27503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2641
|
-
I, [2016-08-23T15:07:30.410282 #27503] INFO -- : Completed 200 OK in 13ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2642
|
-
I, [2016-08-23T15:07:30.412353 #27503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2643
|
-
I, [2016-08-23T15:07:30.412954 #27503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2644
|
-
I, [2016-08-23T15:07:30.412982 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2645
|
-
I, [2016-08-23T15:07:30.422082 #27503] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2646
|
-
I, [2016-08-23T15:07:30.422351 #27503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2647
|
-
I, [2016-08-23T15:07:30.422626 #27503] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2648
|
-
I, [2016-08-23T15:07:30.424941 #27503] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2649
|
-
I, [2016-08-23T15:07:30.425500 #27503] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
2650
|
-
I, [2016-08-23T15:07:30.425527 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2651
|
-
I, [2016-08-23T15:07:30.433807 #27503] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
2652
|
-
I, [2016-08-23T15:07:30.434040 #27503] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
2653
|
-
I, [2016-08-23T15:07:30.434374 #27503] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2654
|
-
I, [2016-08-23T15:07:30.436881 #27503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2655
|
-
I, [2016-08-23T15:07:30.437689 #27503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2656
|
-
I, [2016-08-23T15:07:30.437717 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2657
|
-
I, [2016-08-23T15:07:30.440985 #27503] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2658
|
-
I, [2016-08-23T15:07:30.441245 #27503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2659
|
-
I, [2016-08-23T15:07:30.441543 #27503] INFO -- : Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2660
|
-
I, [2016-08-23T15:07:30.562490 #27503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2661
|
-
I, [2016-08-23T15:07:30.563343 #27503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2662
|
-
I, [2016-08-23T15:07:30.563380 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2663
|
-
I, [2016-08-23T15:07:30.578058 #27503] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2664
|
-
I, [2016-08-23T15:07:30.578332 #27503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2665
|
-
I, [2016-08-23T15:07:30.578785 #27503] INFO -- : Completed 200 OK in 15ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
2666
|
-
I, [2016-08-23T15:07:30.581697 #27503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2667
|
-
I, [2016-08-23T15:07:30.582700 #27503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2668
|
-
I, [2016-08-23T15:07:30.582730 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2669
|
-
I, [2016-08-23T15:07:30.587579 #27503] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2670
|
-
I, [2016-08-23T15:07:30.588107 #27503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.5ms)
|
2671
|
-
I, [2016-08-23T15:07:30.588404 #27503] INFO -- : Completed 200 OK in 6ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
2672
|
-
I, [2016-08-23T15:07:30.705608 #27503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2673
|
-
I, [2016-08-23T15:07:30.706448 #27503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2674
|
-
I, [2016-08-23T15:07:30.706521 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2675
|
-
I, [2016-08-23T15:07:30.715266 #27503] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2676
|
-
I, [2016-08-23T15:07:30.715557 #27503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2677
|
-
I, [2016-08-23T15:07:30.715931 #27503] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2678
|
-
I, [2016-08-23T15:07:30.717973 #27503] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2679
|
-
I, [2016-08-23T15:07:30.718519 #27503] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
2680
|
-
I, [2016-08-23T15:07:30.718546 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2681
|
-
I, [2016-08-23T15:07:30.721669 #27503] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
2682
|
-
I, [2016-08-23T15:07:30.721967 #27503] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
2683
|
-
I, [2016-08-23T15:07:30.722388 #27503] INFO -- : Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2684
|
-
I, [2016-08-23T15:07:30.829489 #27503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2685
|
-
I, [2016-08-23T15:07:30.830475 #27503] INFO -- : Processing by DummyController#crash as HTML
|
2686
|
-
I, [2016-08-23T15:07:30.830521 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2687
|
-
I, [2016-08-23T15:07:30.830898 #27503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2688
|
-
F, [2016-08-23T15:07:30.842441 #27503] FATAL -- :
|
2689
|
-
F, [2016-08-23T15:07:30.842474 #27503] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2690
|
-
F, [2016-08-23T15:07:30.842487 #27503] FATAL -- :
|
2691
|
-
F, [2016-08-23T15:07:30.842499 #27503] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2692
|
-
I, [2016-08-23T15:07:30.845157 #27503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2693
|
-
I, [2016-08-23T15:07:30.846161 #27503] INFO -- : Processing by DummyController#crash as HTML
|
2694
|
-
I, [2016-08-23T15:07:30.846193 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2695
|
-
I, [2016-08-23T15:07:30.846718 #27503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2696
|
-
F, [2016-08-23T15:07:30.852136 #27503] FATAL -- :
|
2697
|
-
F, [2016-08-23T15:07:30.852192 #27503] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2698
|
-
F, [2016-08-23T15:07:30.852209 #27503] FATAL -- :
|
2699
|
-
F, [2016-08-23T15:07:30.852223 #27503] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2700
|
-
I, [2016-08-23T15:07:30.959190 #27503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2701
|
-
I, [2016-08-23T15:07:30.960048 #27503] INFO -- : Processing by DummyController#crash as HTML
|
2702
|
-
I, [2016-08-23T15:07:30.960088 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2703
|
-
I, [2016-08-23T15:07:30.960725 #27503] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
2704
|
-
F, [2016-08-23T15:07:30.975236 #27503] FATAL -- :
|
2705
|
-
F, [2016-08-23T15:07:30.975269 #27503] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2706
|
-
F, [2016-08-23T15:07:30.975283 #27503] FATAL -- :
|
2707
|
-
F, [2016-08-23T15:07:30.975295 #27503] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2708
|
-
I, [2016-08-23T15:07:30.978063 #27503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:30 +0300
|
2709
|
-
I, [2016-08-23T15:07:30.978823 #27503] INFO -- : Processing by DummyController#crash as HTML
|
2710
|
-
I, [2016-08-23T15:07:30.978855 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2711
|
-
I, [2016-08-23T15:07:30.979373 #27503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2712
|
-
F, [2016-08-23T15:07:30.983230 #27503] FATAL -- :
|
2713
|
-
F, [2016-08-23T15:07:30.983261 #27503] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2714
|
-
F, [2016-08-23T15:07:30.983482 #27503] FATAL -- :
|
2715
|
-
F, [2016-08-23T15:07:30.983501 #27503] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2716
|
-
I, [2016-08-23T15:07:31.090409 #27503] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-08-23 15:07:31 +0300
|
2717
|
-
I, [2016-08-23T15:07:31.091342 #27503] INFO -- : Processing by DummyController#crash as HTML
|
2718
|
-
I, [2016-08-23T15:07:31.091384 #27503] INFO -- : Parameters: {"foo"=>"bar"}
|
2719
|
-
I, [2016-08-23T15:07:31.091698 #27503] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
2720
|
-
F, [2016-08-23T15:07:31.099739 #27503] FATAL -- :
|
2721
|
-
F, [2016-08-23T15:07:31.099782 #27503] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
2722
|
-
F, [2016-08-23T15:07:31.099797 #27503] FATAL -- :
|
2723
|
-
F, [2016-08-23T15:07:31.099808 #27503] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2724
|
-
I, [2016-08-23T15:07:31.102179 #27503] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-08-23 15:07:31 +0300
|
2725
|
-
I, [2016-08-23T15:07:31.102884 #27503] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
2726
|
-
D, [2016-08-23T15:07:31.105224 #27503] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2727
|
-
D, [2016-08-23T15:07:31.105835 #27503] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
2728
|
-
D, [2016-08-23T15:07:31.106053 #27503] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
2729
|
-
I, [2016-08-23T15:07:31.106353 #27503] INFO -- : Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.5ms)
|
2730
|
-
F, [2016-08-23T15:07:31.109551 #27503] FATAL -- :
|
2731
|
-
F, [2016-08-23T15:07:31.109595 #27503] FATAL -- : AirbrakeTestError (after_commit):
|
2732
|
-
F, [2016-08-23T15:07:31.114454 #27503] FATAL -- :
|
2733
|
-
F, [2016-08-23T15:07:31.114475 #27503] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2734
|
-
I, [2016-08-23T15:07:31.116230 #27503] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-08-23 15:07:31 +0300
|
2735
|
-
I, [2016-08-23T15:07:31.116758 #27503] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
2736
|
-
D, [2016-08-23T15:07:31.116945 #27503] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
2737
|
-
D, [2016-08-23T15:07:31.117423 #27503] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
2738
|
-
D, [2016-08-23T15:07:31.117587 #27503] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
2739
|
-
I, [2016-08-23T15:07:31.117849 #27503] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
|
2740
|
-
F, [2016-08-23T15:07:31.122291 #27503] FATAL -- :
|
2741
|
-
F, [2016-08-23T15:07:31.122328 #27503] FATAL -- : AirbrakeTestError (after_rollback):
|
2742
|
-
F, [2016-08-23T15:07:31.122343 #27503] FATAL -- :
|
2743
|
-
F, [2016-08-23T15:07:31.122354 #27503] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
2744
|
-
I, [2016-08-23T15:07:31.230365 #27503] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-08-23 15:07:31 +0300
|
2745
|
-
I, [2016-08-23T15:07:31.231240 #27503] INFO -- : Processing by DummyController#resque as HTML
|
2746
|
-
I, [2016-08-23T15:07:31.240524 #27503] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
2747
|
-
I, [2016-08-23T15:07:31.240799 #27503] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
2748
|
-
I, [2016-08-23T15:07:31.241080 #27503] INFO -- : Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
2749
|
-
I, [2016-08-23T15:07:31.243379 #27503] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:07:31 +0300
|
2750
|
-
I, [2016-08-23T15:07:31.244014 #27503] INFO -- : Processing by DummyController#active_job as HTML
|
2751
|
-
I, [2016-08-23T15:07:31.245011 #27503] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2752
|
-
I, [2016-08-23T15:07:31.245249 #27503] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
2753
|
-
I, [2016-08-23T15:07:31.245536 #27503] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
2754
|
-
I, [2016-08-23T15:07:33.248961 #27503] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-08-23 15:07:33 +0300
|
2755
|
-
I, [2016-08-23T15:07:33.249750 #27503] INFO -- : Processing by DummyController#active_job as HTML
|
2756
|
-
I, [2016-08-23T15:07:33.251009 #27503] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
2757
|
-
I, [2016-08-23T15:07:33.251404 #27503] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
2758
|
-
I, [2016-08-23T15:07:33.251836 #27503] INFO -- : Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1
|
+
# Logfile created on 2016-10-13 20:40:06 +0300 by logger.rb/54362
|
2
|
+
D, [2016-10-13T20:40:06.863533 #82029] DEBUG -- : [1m[35m (0.6ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
3
|
+
D, [2016-10-13T20:40:06.871852 #82029] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
4
|
+
D, [2016-10-13T20:40:06.872135 #82029] DEBUG -- : [1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
5
|
+
D, [2016-10-13T20:40:06.872457 #82029] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
6
|
+
D, [2016-10-13T20:40:06.874358 #82029] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
7
|
+
D, [2016-10-13T20:40:06.886522 #82029] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
8
|
+
D, [2016-10-13T20:40:06.890352 #82029] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
9
|
+
D, [2016-10-13T20:40:06.891300 #82029] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-10-13 17:40:06 UTC], ["updated_at", 2016-10-13 17:40:06 UTC]]
|
10
|
+
D, [2016-10-13T20:40:06.891474 #82029] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
11
|
+
I, [2016-10-13T20:40:06.939497 #82029] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:06 +0300
|
12
|
+
I, [2016-10-13T20:40:06.941516 #82029] INFO -- : Processing by DummyController#crash as HTML
|
13
|
+
I, [2016-10-13T20:40:06.942730 #82029] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
14
|
+
F, [2016-10-13T20:40:06.955649 #82029] FATAL -- :
|
15
|
+
F, [2016-10-13T20:40:06.961716 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
16
|
+
F, [2016-10-13T20:40:06.961788 #82029] FATAL -- :
|
17
|
+
F, [2016-10-13T20:40:06.961819 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
18
|
+
I, [2016-10-13T20:40:06.963895 #82029] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:06 +0300
|
19
|
+
I, [2016-10-13T20:40:06.964429 #82029] INFO -- : Processing by DummyController#crash as HTML
|
20
|
+
I, [2016-10-13T20:40:06.964646 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
21
|
+
F, [2016-10-13T20:40:06.973933 #82029] FATAL -- :
|
22
|
+
F, [2016-10-13T20:40:06.980933 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
23
|
+
F, [2016-10-13T20:40:06.980966 #82029] FATAL -- :
|
24
|
+
F, [2016-10-13T20:40:06.980980 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
25
|
+
I, [2016-10-13T20:40:06.984299 #82029] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:06 +0300
|
26
|
+
I, [2016-10-13T20:40:06.985099 #82029] INFO -- : Processing by DummyController#crash as HTML
|
27
|
+
I, [2016-10-13T20:40:06.985654 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
28
|
+
F, [2016-10-13T20:40:06.990185 #82029] FATAL -- :
|
29
|
+
F, [2016-10-13T20:40:06.990228 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
30
|
+
F, [2016-10-13T20:40:06.990244 #82029] FATAL -- :
|
31
|
+
F, [2016-10-13T20:40:06.990257 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
32
|
+
I, [2016-10-13T20:40:07.112410 #82029] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-10-13 20:40:07 +0300
|
33
|
+
I, [2016-10-13T20:40:07.113322 #82029] INFO -- : Processing by DummyController#active_job as HTML
|
34
|
+
I, [2016-10-13T20:40:07.123779 #82029] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
35
|
+
I, [2016-10-13T20:40:07.128617 #82029] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (3.5ms)
|
36
|
+
I, [2016-10-13T20:40:07.128982 #82029] INFO -- : Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.0ms)
|
37
|
+
I, [2016-10-13T20:40:09.135217 #82029] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-10-13 20:40:09 +0300
|
38
|
+
I, [2016-10-13T20:40:09.136152 #82029] INFO -- : Processing by DummyController#active_job as HTML
|
39
|
+
I, [2016-10-13T20:40:09.137785 #82029] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
40
|
+
I, [2016-10-13T20:40:09.138305 #82029] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.4ms)
|
41
|
+
I, [2016-10-13T20:40:09.140128 #82029] INFO -- : Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
42
|
+
I, [2016-10-13T20:40:11.160999 #82029] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-10-13 20:40:11 +0300
|
43
|
+
I, [2016-10-13T20:40:11.161939 #82029] INFO -- : Processing by DummyController#active_job as HTML
|
44
|
+
I, [2016-10-13T20:40:11.162996 #82029] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
45
|
+
I, [2016-10-13T20:40:11.163248 #82029] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
46
|
+
I, [2016-10-13T20:40:11.164022 #82029] INFO -- : Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
47
|
+
I, [2016-10-13T20:40:13.169319 #82029] INFO -- : Started GET "/" for 127.0.0.1 at 2016-10-13 20:40:13 +0300
|
48
|
+
I, [2016-10-13T20:40:13.169966 #82029] INFO -- : Processing by DummyController#index as HTML
|
49
|
+
I, [2016-10-13T20:40:13.170743 #82029] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
50
|
+
I, [2016-10-13T20:40:13.170979 #82029] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
51
|
+
I, [2016-10-13T20:40:13.171240 #82029] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
52
|
+
I, [2016-10-13T20:40:13.172921 #82029] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:13 +0300
|
53
|
+
I, [2016-10-13T20:40:13.173672 #82029] INFO -- : Processing by DummyController#crash as HTML
|
54
|
+
I, [2016-10-13T20:40:13.174131 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
55
|
+
F, [2016-10-13T20:40:13.176910 #82029] FATAL -- :
|
56
|
+
F, [2016-10-13T20:40:13.176956 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
57
|
+
F, [2016-10-13T20:40:13.176981 #82029] FATAL -- :
|
58
|
+
F, [2016-10-13T20:40:13.177003 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
59
|
+
I, [2016-10-13T20:40:13.283523 #82029] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:13 +0300
|
60
|
+
I, [2016-10-13T20:40:13.284792 #82029] INFO -- : Processing by DummyController#crash as HTML
|
61
|
+
I, [2016-10-13T20:40:13.285092 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
62
|
+
F, [2016-10-13T20:40:13.297217 #82029] FATAL -- :
|
63
|
+
F, [2016-10-13T20:40:13.297252 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
64
|
+
F, [2016-10-13T20:40:13.297264 #82029] FATAL -- :
|
65
|
+
F, [2016-10-13T20:40:13.297276 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
66
|
+
I, [2016-10-13T20:40:13.299336 #82029] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-10-13 20:40:13 +0300
|
67
|
+
I, [2016-10-13T20:40:13.299970 #82029] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
68
|
+
D, [2016-10-13T20:40:13.300200 #82029] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
69
|
+
D, [2016-10-13T20:40:13.302765 #82029] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
70
|
+
D, [2016-10-13T20:40:13.302944 #82029] DEBUG -- : [1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
71
|
+
I, [2016-10-13T20:40:13.303246 #82029] INFO -- : Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.4ms)
|
72
|
+
F, [2016-10-13T20:40:13.308187 #82029] FATAL -- :
|
73
|
+
F, [2016-10-13T20:40:13.308248 #82029] FATAL -- : AirbrakeTestError (after_rollback):
|
74
|
+
F, [2016-10-13T20:40:13.308264 #82029] FATAL -- :
|
75
|
+
F, [2016-10-13T20:40:13.308317 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
76
|
+
I, [2016-10-13T20:40:16.321396 #82029] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-10-13 20:40:16 +0300
|
77
|
+
I, [2016-10-13T20:40:16.322245 #82029] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
78
|
+
D, [2016-10-13T20:40:16.322715 #82029] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
79
|
+
D, [2016-10-13T20:40:16.323355 #82029] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
80
|
+
D, [2016-10-13T20:40:16.323557 #82029] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
81
|
+
I, [2016-10-13T20:40:16.323880 #82029] INFO -- : Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms)
|
82
|
+
F, [2016-10-13T20:40:16.332187 #82029] FATAL -- :
|
83
|
+
F, [2016-10-13T20:40:16.332225 #82029] FATAL -- : AirbrakeTestError (after_commit):
|
84
|
+
F, [2016-10-13T20:40:16.332238 #82029] FATAL -- :
|
85
|
+
F, [2016-10-13T20:40:16.332249 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
86
|
+
I, [2016-10-13T20:40:19.335926 #82029] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
87
|
+
I, [2016-10-13T20:40:19.336970 #82029] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
88
|
+
I, [2016-10-13T20:40:19.337013 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
89
|
+
I, [2016-10-13T20:40:19.345575 #82029] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
90
|
+
I, [2016-10-13T20:40:19.345868 #82029] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
91
|
+
I, [2016-10-13T20:40:19.346152 #82029] INFO -- : Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
92
|
+
I, [2016-10-13T20:40:19.348954 #82029] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
93
|
+
I, [2016-10-13T20:40:19.349744 #82029] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
94
|
+
I, [2016-10-13T20:40:19.349777 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
95
|
+
I, [2016-10-13T20:40:19.352633 #82029] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
96
|
+
I, [2016-10-13T20:40:19.352882 #82029] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
97
|
+
I, [2016-10-13T20:40:19.353151 #82029] INFO -- : Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
98
|
+
I, [2016-10-13T20:40:19.457232 #82029] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
99
|
+
I, [2016-10-13T20:40:19.458123 #82029] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
100
|
+
I, [2016-10-13T20:40:19.458161 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
101
|
+
I, [2016-10-13T20:40:19.466144 #82029] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
102
|
+
I, [2016-10-13T20:40:19.466412 #82029] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
103
|
+
I, [2016-10-13T20:40:19.466696 #82029] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
104
|
+
I, [2016-10-13T20:40:19.468694 #82029] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
105
|
+
I, [2016-10-13T20:40:19.469253 #82029] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
106
|
+
I, [2016-10-13T20:40:19.469282 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
107
|
+
I, [2016-10-13T20:40:19.472128 #82029] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
108
|
+
I, [2016-10-13T20:40:19.472365 #82029] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
109
|
+
I, [2016-10-13T20:40:19.472653 #82029] INFO -- : Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
110
|
+
I, [2016-10-13T20:40:19.577358 #82029] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
111
|
+
I, [2016-10-13T20:40:19.578106 #82029] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
112
|
+
I, [2016-10-13T20:40:19.578137 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
113
|
+
I, [2016-10-13T20:40:19.584473 #82029] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
114
|
+
I, [2016-10-13T20:40:19.584757 #82029] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
115
|
+
I, [2016-10-13T20:40:19.585011 #82029] INFO -- : Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
116
|
+
I, [2016-10-13T20:40:19.587662 #82029] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
117
|
+
I, [2016-10-13T20:40:19.588738 #82029] INFO -- : Processing by DummyController#crash as HTML
|
118
|
+
I, [2016-10-13T20:40:19.588782 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
119
|
+
I, [2016-10-13T20:40:19.589086 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
120
|
+
F, [2016-10-13T20:40:19.591909 #82029] FATAL -- :
|
121
|
+
F, [2016-10-13T20:40:19.600354 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
122
|
+
F, [2016-10-13T20:40:19.600379 #82029] FATAL -- :
|
123
|
+
F, [2016-10-13T20:40:19.600422 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
124
|
+
I, [2016-10-13T20:40:19.604245 #82029] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
125
|
+
I, [2016-10-13T20:40:19.605335 #82029] INFO -- : Processing by DummyController#crash as HTML
|
126
|
+
I, [2016-10-13T20:40:19.605390 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
127
|
+
I, [2016-10-13T20:40:19.605840 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
128
|
+
F, [2016-10-13T20:40:19.611451 #82029] FATAL -- :
|
129
|
+
F, [2016-10-13T20:40:19.611522 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
130
|
+
F, [2016-10-13T20:40:19.611557 #82029] FATAL -- :
|
131
|
+
F, [2016-10-13T20:40:19.611588 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
132
|
+
I, [2016-10-13T20:40:19.716136 #82029] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
133
|
+
I, [2016-10-13T20:40:19.717180 #82029] INFO -- : Processing by DummyController#crash as HTML
|
134
|
+
I, [2016-10-13T20:40:19.717220 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
135
|
+
I, [2016-10-13T20:40:19.717545 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
136
|
+
F, [2016-10-13T20:40:19.725520 #82029] FATAL -- :
|
137
|
+
F, [2016-10-13T20:40:19.725545 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
138
|
+
F, [2016-10-13T20:40:19.725556 #82029] FATAL -- :
|
139
|
+
F, [2016-10-13T20:40:19.725586 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
140
|
+
I, [2016-10-13T20:40:19.727457 #82029] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
141
|
+
I, [2016-10-13T20:40:19.728159 #82029] INFO -- : Processing by DummyController#crash as HTML
|
142
|
+
I, [2016-10-13T20:40:19.728188 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
143
|
+
I, [2016-10-13T20:40:19.728424 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
144
|
+
F, [2016-10-13T20:40:19.731078 #82029] FATAL -- :
|
145
|
+
F, [2016-10-13T20:40:19.731105 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
146
|
+
F, [2016-10-13T20:40:19.731119 #82029] FATAL -- :
|
147
|
+
F, [2016-10-13T20:40:19.731132 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
148
|
+
I, [2016-10-13T20:40:19.838386 #82029] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
149
|
+
I, [2016-10-13T20:40:19.839328 #82029] INFO -- : Processing by DummyController#crash as HTML
|
150
|
+
I, [2016-10-13T20:40:19.839368 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
151
|
+
I, [2016-10-13T20:40:19.839672 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
152
|
+
F, [2016-10-13T20:40:19.848011 #82029] FATAL -- :
|
153
|
+
F, [2016-10-13T20:40:19.848041 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
154
|
+
F, [2016-10-13T20:40:19.848053 #82029] FATAL -- :
|
155
|
+
F, [2016-10-13T20:40:19.848072 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
156
|
+
I, [2016-10-13T20:40:19.850063 #82029] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
157
|
+
I, [2016-10-13T20:40:19.850840 #82029] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
158
|
+
I, [2016-10-13T20:40:19.850868 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
159
|
+
I, [2016-10-13T20:40:19.857605 #82029] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
160
|
+
I, [2016-10-13T20:40:19.857857 #82029] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
161
|
+
I, [2016-10-13T20:40:19.858095 #82029] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
162
|
+
I, [2016-10-13T20:40:19.860240 #82029] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
163
|
+
I, [2016-10-13T20:40:19.860888 #82029] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
164
|
+
I, [2016-10-13T20:40:19.860917 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
165
|
+
I, [2016-10-13T20:40:19.868161 #82029] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
166
|
+
I, [2016-10-13T20:40:19.868403 #82029] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
167
|
+
I, [2016-10-13T20:40:19.868652 #82029] INFO -- : Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
168
|
+
I, [2016-10-13T20:40:19.870839 #82029] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
169
|
+
I, [2016-10-13T20:40:19.871533 #82029] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
170
|
+
I, [2016-10-13T20:40:19.871567 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
171
|
+
I, [2016-10-13T20:40:19.881357 #82029] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
172
|
+
I, [2016-10-13T20:40:19.881620 #82029] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
173
|
+
I, [2016-10-13T20:40:19.881864 #82029] INFO -- : Completed 200 OK in 10ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
174
|
+
I, [2016-10-13T20:40:19.884148 #82029] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
175
|
+
I, [2016-10-13T20:40:19.884819 #82029] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
176
|
+
I, [2016-10-13T20:40:19.884846 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
177
|
+
I, [2016-10-13T20:40:19.892437 #82029] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
178
|
+
I, [2016-10-13T20:40:19.892727 #82029] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
179
|
+
I, [2016-10-13T20:40:19.892994 #82029] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
180
|
+
I, [2016-10-13T20:40:19.895393 #82029] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
181
|
+
I, [2016-10-13T20:40:19.896167 #82029] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
182
|
+
I, [2016-10-13T20:40:19.896198 #82029] INFO -- : Parameters: {"foo"=>"bar"}
|
183
|
+
I, [2016-10-13T20:40:19.903134 #82029] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
184
|
+
I, [2016-10-13T20:40:19.903398 #82029] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
185
|
+
I, [2016-10-13T20:40:19.903649 #82029] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
186
|
+
I, [2016-10-13T20:40:19.906013 #82029] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
187
|
+
I, [2016-10-13T20:40:19.906567 #82029] INFO -- : Processing by DummyController#crash as HTML
|
188
|
+
I, [2016-10-13T20:40:19.906802 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
189
|
+
F, [2016-10-13T20:40:19.909640 #82029] FATAL -- :
|
190
|
+
F, [2016-10-13T20:40:19.909671 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
191
|
+
F, [2016-10-13T20:40:19.909685 #82029] FATAL -- :
|
192
|
+
F, [2016-10-13T20:40:19.909698 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
193
|
+
I, [2016-10-13T20:40:19.916511 #82029] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
194
|
+
I, [2016-10-13T20:40:19.917112 #82029] INFO -- : Processing by DummyController#crash as HTML
|
195
|
+
I, [2016-10-13T20:40:19.917422 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
196
|
+
F, [2016-10-13T20:40:19.920461 #82029] FATAL -- :
|
197
|
+
F, [2016-10-13T20:40:19.925944 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
198
|
+
F, [2016-10-13T20:40:19.925983 #82029] FATAL -- :
|
199
|
+
F, [2016-10-13T20:40:19.925999 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
200
|
+
I, [2016-10-13T20:40:19.928232 #82029] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:19 +0300
|
201
|
+
I, [2016-10-13T20:40:19.928954 #82029] INFO -- : Processing by DummyController#crash as HTML
|
202
|
+
I, [2016-10-13T20:40:19.929253 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
203
|
+
F, [2016-10-13T20:40:19.932583 #82029] FATAL -- :
|
204
|
+
F, [2016-10-13T20:40:19.932627 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
205
|
+
F, [2016-10-13T20:40:19.932644 #82029] FATAL -- :
|
206
|
+
F, [2016-10-13T20:40:19.932656 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
207
|
+
I, [2016-10-13T20:40:20.039645 #82029] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:20 +0300
|
208
|
+
I, [2016-10-13T20:40:20.040852 #82029] INFO -- : Processing by DummyController#crash as HTML
|
209
|
+
I, [2016-10-13T20:40:20.041241 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
210
|
+
F, [2016-10-13T20:40:20.052280 #82029] FATAL -- :
|
211
|
+
F, [2016-10-13T20:40:20.052310 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
212
|
+
F, [2016-10-13T20:40:20.052323 #82029] FATAL -- :
|
213
|
+
F, [2016-10-13T20:40:20.052333 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
214
|
+
I, [2016-10-13T20:40:20.054474 #82029] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:20 +0300
|
215
|
+
I, [2016-10-13T20:40:20.055156 #82029] INFO -- : Processing by DummyController#crash as HTML
|
216
|
+
I, [2016-10-13T20:40:20.055418 #82029] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
217
|
+
F, [2016-10-13T20:40:20.058182 #82029] FATAL -- :
|
218
|
+
F, [2016-10-13T20:40:20.058219 #82029] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
219
|
+
F, [2016-10-13T20:40:20.058234 #82029] FATAL -- :
|
220
|
+
F, [2016-10-13T20:40:20.058246 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
221
|
+
I, [2016-10-13T20:40:20.164279 #82029] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-10-13 20:40:20 +0300
|
222
|
+
I, [2016-10-13T20:40:20.165114 #82029] INFO -- : Processing by DummyController#delayed_job as HTML
|
223
|
+
I, [2016-10-13T20:40:20.185838 #82029] INFO -- : Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.4ms)
|
224
|
+
F, [2016-10-13T20:40:20.189848 #82029] FATAL -- :
|
225
|
+
F, [2016-10-13T20:40:20.189917 #82029] FATAL -- : AirbrakeTestError (delayed_job error):
|
226
|
+
F, [2016-10-13T20:40:20.189945 #82029] FATAL -- :
|
227
|
+
F, [2016-10-13T20:40:20.189971 #82029] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
228
|
+
F, [2016-10-13T20:40:20.193881 #82029] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
229
|
+
I, [2016-10-13T20:40:24.204307 #82029] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-10-13 20:40:24 +0300
|
230
|
+
I, [2016-10-13T20:40:24.205096 #82029] INFO -- : Processing by DummyController#resque as HTML
|
231
|
+
I, [2016-10-13T20:40:24.212906 #82029] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
232
|
+
I, [2016-10-13T20:40:24.213195 #82029] INFO -- : Rendered dummy/resque.html.erb within layouts/application (0.2ms)
|
233
|
+
I, [2016-10-13T20:40:24.213532 #82029] INFO -- : Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
234
|
+
D, [2016-10-13T20:40:46.259459 #82493] DEBUG -- : [1m[35m (0.5ms)[0m [1m[35mCREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar)[0m
|
235
|
+
D, [2016-10-13T20:40:46.265926 #82493] DEBUG -- : [1m[35m (0.2ms)[0m [1m[35mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0 NOT NULL, "attempts" integer DEFAULT 0 NOT NULL, "handler" text NOT NULL, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar, "queue" varchar, "created_at" datetime, "updated_at" datetime)[0m
|
236
|
+
D, [2016-10-13T20:40:46.266172 #82493] DEBUG -- : [1m[35m (0.1ms)[0m [1m[34mselect sqlite_version(*)[0m
|
237
|
+
D, [2016-10-13T20:40:46.266494 #82493] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
238
|
+
D, [2016-10-13T20:40:46.268170 #82493] DEBUG -- : [1m[35m (0.1ms)[0m [1m[35mCREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)[0m
|
239
|
+
D, [2016-10-13T20:40:46.279507 #82493] DEBUG -- : [1m[36mActiveRecord::InternalMetadata Load (0.1ms)[0m [1m[34mSELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?[0m [["key", :environment], ["LIMIT", 1]]
|
240
|
+
D, [2016-10-13T20:40:46.283305 #82493] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
241
|
+
D, [2016-10-13T20:40:46.284185 #82493] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)[0m [["key", "environment"], ["value", "test"], ["created_at", 2016-10-13 17:40:46 UTC], ["updated_at", 2016-10-13 17:40:46 UTC]]
|
242
|
+
D, [2016-10-13T20:40:46.284337 #82493] DEBUG -- : [1m[35m (0.0ms)[0m [1m[36mcommit transaction[0m
|
243
|
+
I, [2016-10-13T20:40:46.332146 #82493] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:46 +0300
|
244
|
+
I, [2016-10-13T20:40:46.334186 #82493] INFO -- : Processing by DummyController#crash as HTML
|
245
|
+
I, [2016-10-13T20:40:46.335588 #82493] INFO -- : Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
|
246
|
+
F, [2016-10-13T20:40:46.347249 #82493] FATAL -- :
|
247
|
+
F, [2016-10-13T20:40:46.347303 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
248
|
+
F, [2016-10-13T20:40:46.347334 #82493] FATAL -- :
|
249
|
+
F, [2016-10-13T20:40:46.347380 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
250
|
+
I, [2016-10-13T20:40:46.474341 #82493] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:46 +0300
|
251
|
+
I, [2016-10-13T20:40:46.475230 #82493] INFO -- : Processing by DummyController#crash as HTML
|
252
|
+
I, [2016-10-13T20:40:46.475552 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
253
|
+
F, [2016-10-13T20:40:46.483303 #82493] FATAL -- :
|
254
|
+
F, [2016-10-13T20:40:46.483344 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
255
|
+
F, [2016-10-13T20:40:46.483356 #82493] FATAL -- :
|
256
|
+
F, [2016-10-13T20:40:46.483366 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
257
|
+
I, [2016-10-13T20:40:46.485277 #82493] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:46 +0300
|
258
|
+
I, [2016-10-13T20:40:46.485930 #82493] INFO -- : Processing by DummyController#crash as HTML
|
259
|
+
I, [2016-10-13T20:40:46.486175 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
260
|
+
F, [2016-10-13T20:40:46.488801 #82493] FATAL -- :
|
261
|
+
F, [2016-10-13T20:40:46.488830 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
262
|
+
F, [2016-10-13T20:40:46.488845 #82493] FATAL -- :
|
263
|
+
F, [2016-10-13T20:40:46.488857 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
264
|
+
I, [2016-10-13T20:40:46.597296 #82493] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:46 +0300
|
265
|
+
I, [2016-10-13T20:40:46.598259 #82493] INFO -- : Processing by DummyController#crash as HTML
|
266
|
+
I, [2016-10-13T20:40:46.598623 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
267
|
+
F, [2016-10-13T20:40:46.607003 #82493] FATAL -- :
|
268
|
+
F, [2016-10-13T20:40:46.607042 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
269
|
+
F, [2016-10-13T20:40:46.607055 #82493] FATAL -- :
|
270
|
+
F, [2016-10-13T20:40:46.607096 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
271
|
+
I, [2016-10-13T20:40:46.608915 #82493] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:46 +0300
|
272
|
+
I, [2016-10-13T20:40:46.609429 #82493] INFO -- : Processing by DummyController#crash as HTML
|
273
|
+
I, [2016-10-13T20:40:46.609668 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
274
|
+
F, [2016-10-13T20:40:46.612405 #82493] FATAL -- :
|
275
|
+
F, [2016-10-13T20:40:46.612448 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
276
|
+
F, [2016-10-13T20:40:46.612473 #82493] FATAL -- :
|
277
|
+
F, [2016-10-13T20:40:46.612495 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
278
|
+
I, [2016-10-13T20:40:46.717862 #82493] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:46 +0300
|
279
|
+
I, [2016-10-13T20:40:46.718659 #82493] INFO -- : Processing by DummyController#crash as HTML
|
280
|
+
I, [2016-10-13T20:40:46.719000 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
281
|
+
F, [2016-10-13T20:40:46.727537 #82493] FATAL -- :
|
282
|
+
F, [2016-10-13T20:40:46.727570 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
283
|
+
F, [2016-10-13T20:40:46.727591 #82493] FATAL -- :
|
284
|
+
F, [2016-10-13T20:40:46.727604 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
285
|
+
I, [2016-10-13T20:40:46.729874 #82493] INFO -- : Started GET "/delayed_job" for 127.0.0.1 at 2016-10-13 20:40:46 +0300
|
286
|
+
I, [2016-10-13T20:40:46.730615 #82493] INFO -- : Processing by DummyController#delayed_job as HTML
|
287
|
+
I, [2016-10-13T20:40:46.744283 #82493] INFO -- : Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.4ms)
|
288
|
+
F, [2016-10-13T20:40:46.746960 #82493] FATAL -- :
|
289
|
+
F, [2016-10-13T20:40:46.746999 #82493] FATAL -- : AirbrakeTestError (delayed_job error):
|
290
|
+
F, [2016-10-13T20:40:46.747024 #82493] FATAL -- :
|
291
|
+
F, [2016-10-13T20:40:46.747047 #82493] FATAL -- : lib/airbrake/delayed_job/plugin.rb:11:in `block (2 levels) in <class:Airbrake>'
|
292
|
+
F, [2016-10-13T20:40:46.747069 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
293
|
+
I, [2016-10-13T20:40:50.756749 #82493] INFO -- : Started GET "/resque" for 127.0.0.1 at 2016-10-13 20:40:50 +0300
|
294
|
+
I, [2016-10-13T20:40:50.757926 #82493] INFO -- : Processing by DummyController#resque as HTML
|
295
|
+
I, [2016-10-13T20:40:50.775248 #82493] INFO -- : Rendering dummy/resque.html.erb within layouts/application
|
296
|
+
I, [2016-10-13T20:40:50.776542 #82493] INFO -- : Rendered dummy/resque.html.erb within layouts/application (1.2ms)
|
297
|
+
I, [2016-10-13T20:40:50.776982 #82493] INFO -- : Completed 200 OK in 19ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
298
|
+
I, [2016-10-13T20:40:50.781610 #82493] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:50 +0300
|
299
|
+
I, [2016-10-13T20:40:50.782730 #82493] INFO -- : Processing by DummyController#crash as HTML
|
300
|
+
I, [2016-10-13T20:40:50.782776 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
301
|
+
I, [2016-10-13T20:40:50.783110 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
302
|
+
F, [2016-10-13T20:40:50.786105 #82493] FATAL -- :
|
303
|
+
F, [2016-10-13T20:40:50.786136 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
304
|
+
F, [2016-10-13T20:40:50.786151 #82493] FATAL -- :
|
305
|
+
F, [2016-10-13T20:40:50.786164 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
306
|
+
I, [2016-10-13T20:40:50.890937 #82493] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:50 +0300
|
307
|
+
I, [2016-10-13T20:40:50.891923 #82493] INFO -- : Processing by DummyController#crash as HTML
|
308
|
+
I, [2016-10-13T20:40:50.891961 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
309
|
+
I, [2016-10-13T20:40:50.892282 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
310
|
+
F, [2016-10-13T20:40:50.900184 #82493] FATAL -- :
|
311
|
+
F, [2016-10-13T20:40:50.900221 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
312
|
+
F, [2016-10-13T20:40:50.900235 #82493] FATAL -- :
|
313
|
+
F, [2016-10-13T20:40:50.900247 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
314
|
+
I, [2016-10-13T20:40:50.902217 #82493] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:50 +0300
|
315
|
+
I, [2016-10-13T20:40:50.902951 #82493] INFO -- : Processing by DummyController#crash as HTML
|
316
|
+
I, [2016-10-13T20:40:50.902979 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
317
|
+
I, [2016-10-13T20:40:50.903226 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
318
|
+
F, [2016-10-13T20:40:50.905963 #82493] FATAL -- :
|
319
|
+
F, [2016-10-13T20:40:50.910224 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
320
|
+
F, [2016-10-13T20:40:50.910255 #82493] FATAL -- :
|
321
|
+
F, [2016-10-13T20:40:50.910270 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
322
|
+
I, [2016-10-13T20:40:50.912449 #82493] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:50 +0300
|
323
|
+
I, [2016-10-13T20:40:50.913245 #82493] INFO -- : Processing by DummyController#crash as HTML
|
324
|
+
I, [2016-10-13T20:40:50.913284 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
325
|
+
I, [2016-10-13T20:40:50.913567 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
326
|
+
F, [2016-10-13T20:40:50.916584 #82493] FATAL -- :
|
327
|
+
F, [2016-10-13T20:40:50.916624 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
328
|
+
F, [2016-10-13T20:40:50.916641 #82493] FATAL -- :
|
329
|
+
F, [2016-10-13T20:40:50.916653 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
330
|
+
I, [2016-10-13T20:40:51.024179 #82493] INFO -- : Started GET "/crash?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
331
|
+
I, [2016-10-13T20:40:51.025211 #82493] INFO -- : Processing by DummyController#crash as HTML
|
332
|
+
I, [2016-10-13T20:40:51.025268 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
333
|
+
I, [2016-10-13T20:40:51.025605 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
334
|
+
F, [2016-10-13T20:40:51.028976 #82493] FATAL -- :
|
335
|
+
F, [2016-10-13T20:40:51.029017 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
336
|
+
F, [2016-10-13T20:40:51.029037 #82493] FATAL -- :
|
337
|
+
F, [2016-10-13T20:40:51.029053 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
338
|
+
I, [2016-10-13T20:40:51.132822 #82493] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
339
|
+
I, [2016-10-13T20:40:51.133802 #82493] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
340
|
+
I, [2016-10-13T20:40:51.133843 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
341
|
+
I, [2016-10-13T20:40:51.141702 #82493] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
342
|
+
I, [2016-10-13T20:40:51.141961 #82493] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
343
|
+
I, [2016-10-13T20:40:51.142228 #82493] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
344
|
+
I, [2016-10-13T20:40:51.144631 #82493] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
345
|
+
I, [2016-10-13T20:40:51.145342 #82493] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
346
|
+
I, [2016-10-13T20:40:51.145371 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
347
|
+
I, [2016-10-13T20:40:51.152385 #82493] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
348
|
+
I, [2016-10-13T20:40:51.152642 #82493] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
349
|
+
I, [2016-10-13T20:40:51.152881 #82493] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
350
|
+
I, [2016-10-13T20:40:51.155073 #82493] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
351
|
+
I, [2016-10-13T20:40:51.155776 #82493] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
352
|
+
I, [2016-10-13T20:40:51.155806 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
353
|
+
I, [2016-10-13T20:40:51.162579 #82493] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
354
|
+
I, [2016-10-13T20:40:51.162823 #82493] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
355
|
+
I, [2016-10-13T20:40:51.163050 #82493] INFO -- : Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
356
|
+
I, [2016-10-13T20:40:51.165356 #82493] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
357
|
+
I, [2016-10-13T20:40:51.166069 #82493] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
358
|
+
I, [2016-10-13T20:40:51.166097 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
359
|
+
I, [2016-10-13T20:40:51.173560 #82493] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
360
|
+
I, [2016-10-13T20:40:51.173836 #82493] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
361
|
+
I, [2016-10-13T20:40:51.174090 #82493] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
362
|
+
I, [2016-10-13T20:40:51.176404 #82493] INFO -- : Started GET "/notify_airbrake_sync_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
363
|
+
I, [2016-10-13T20:40:51.177161 #82493] INFO -- : Processing by DummyController#notify_airbrake_sync_helper as HTML
|
364
|
+
I, [2016-10-13T20:40:51.177191 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
365
|
+
I, [2016-10-13T20:40:51.187842 #82493] INFO -- : Rendering dummy/notify_airbrake_sync_helper.html.erb within layouts/application
|
366
|
+
I, [2016-10-13T20:40:51.188121 #82493] INFO -- : Rendered dummy/notify_airbrake_sync_helper.html.erb within layouts/application (0.2ms)
|
367
|
+
I, [2016-10-13T20:40:51.188403 #82493] INFO -- : Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
368
|
+
I, [2016-10-13T20:40:51.190659 #82493] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
369
|
+
I, [2016-10-13T20:40:51.191428 #82493] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
370
|
+
I, [2016-10-13T20:40:51.191456 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
371
|
+
I, [2016-10-13T20:40:51.194352 #82493] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
372
|
+
I, [2016-10-13T20:40:51.194579 #82493] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
373
|
+
I, [2016-10-13T20:40:51.194861 #82493] INFO -- : Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
374
|
+
I, [2016-10-13T20:40:51.301718 #82493] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
375
|
+
I, [2016-10-13T20:40:51.302744 #82493] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
376
|
+
I, [2016-10-13T20:40:51.302798 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
377
|
+
I, [2016-10-13T20:40:51.311637 #82493] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
378
|
+
I, [2016-10-13T20:40:51.312002 #82493] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.3ms)
|
379
|
+
I, [2016-10-13T20:40:51.312294 #82493] INFO -- : Completed 200 OK in 9ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
380
|
+
I, [2016-10-13T20:40:51.314800 #82493] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
381
|
+
I, [2016-10-13T20:40:51.315562 #82493] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
382
|
+
I, [2016-10-13T20:40:51.315599 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
383
|
+
I, [2016-10-13T20:40:51.318808 #82493] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
384
|
+
I, [2016-10-13T20:40:51.319061 #82493] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
385
|
+
I, [2016-10-13T20:40:51.319381 #82493] INFO -- : Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
386
|
+
I, [2016-10-13T20:40:51.427059 #82493] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
387
|
+
I, [2016-10-13T20:40:51.428230 #82493] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
388
|
+
I, [2016-10-13T20:40:51.428271 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
389
|
+
I, [2016-10-13T20:40:51.435852 #82493] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
390
|
+
I, [2016-10-13T20:40:51.436131 #82493] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
391
|
+
I, [2016-10-13T20:40:51.436405 #82493] INFO -- : Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
392
|
+
I, [2016-10-13T20:40:51.438696 #82493] INFO -- : Started GET "/notify_airbrake_helper?foo=bar" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
393
|
+
I, [2016-10-13T20:40:51.439395 #82493] INFO -- : Processing by DummyController#notify_airbrake_helper as HTML
|
394
|
+
I, [2016-10-13T20:40:51.439424 #82493] INFO -- : Parameters: {"foo"=>"bar"}
|
395
|
+
I, [2016-10-13T20:40:51.442482 #82493] INFO -- : Rendering dummy/notify_airbrake_helper.html.erb within layouts/application
|
396
|
+
I, [2016-10-13T20:40:51.442821 #82493] INFO -- : Rendered dummy/notify_airbrake_helper.html.erb within layouts/application (0.2ms)
|
397
|
+
I, [2016-10-13T20:40:51.443165 #82493] INFO -- : Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
398
|
+
I, [2016-10-13T20:40:51.551699 #82493] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-10-13 20:40:51 +0300
|
399
|
+
I, [2016-10-13T20:40:51.552642 #82493] INFO -- : Processing by DummyController#active_job as HTML
|
400
|
+
I, [2016-10-13T20:40:51.554693 #82493] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
401
|
+
I, [2016-10-13T20:40:51.555101 #82493] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.3ms)
|
402
|
+
I, [2016-10-13T20:40:51.555438 #82493] INFO -- : Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
403
|
+
I, [2016-10-13T20:40:53.562810 #82493] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-10-13 20:40:53 +0300
|
404
|
+
I, [2016-10-13T20:40:53.563738 #82493] INFO -- : Processing by DummyController#active_job as HTML
|
405
|
+
I, [2016-10-13T20:40:53.564894 #82493] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
406
|
+
I, [2016-10-13T20:40:53.565176 #82493] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
407
|
+
I, [2016-10-13T20:40:53.565478 #82493] INFO -- : Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
408
|
+
I, [2016-10-13T20:40:55.573608 #82493] INFO -- : Started GET "/active_job" for 127.0.0.1 at 2016-10-13 20:40:55 +0300
|
409
|
+
I, [2016-10-13T20:40:55.574408 #82493] INFO -- : Processing by DummyController#active_job as HTML
|
410
|
+
I, [2016-10-13T20:40:55.575612 #82493] INFO -- : Rendering dummy/active_job.html.erb within layouts/application
|
411
|
+
I, [2016-10-13T20:40:55.575921 #82493] INFO -- : Rendered dummy/active_job.html.erb within layouts/application (0.2ms)
|
412
|
+
I, [2016-10-13T20:40:55.576219 #82493] INFO -- : Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
413
|
+
I, [2016-10-13T20:40:57.585211 #82493] INFO -- : Started GET "/active_record_after_rollback" for 127.0.0.1 at 2016-10-13 20:40:57 +0300
|
414
|
+
I, [2016-10-13T20:40:57.586030 #82493] INFO -- : Processing by DummyController#active_record_after_rollback as HTML
|
415
|
+
D, [2016-10-13T20:40:57.586339 #82493] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
416
|
+
D, [2016-10-13T20:40:57.589983 #82493] DEBUG -- : [1m[35mSQL (0.1ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bango"]]
|
417
|
+
D, [2016-10-13T20:40:57.590229 #82493] DEBUG -- : [1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
418
|
+
I, [2016-10-13T20:40:57.590543 #82493] INFO -- : Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.5ms)
|
419
|
+
F, [2016-10-13T20:40:57.595244 #82493] FATAL -- :
|
420
|
+
F, [2016-10-13T20:40:57.595286 #82493] FATAL -- : AirbrakeTestError (after_rollback):
|
421
|
+
F, [2016-10-13T20:40:57.595304 #82493] FATAL -- :
|
422
|
+
F, [2016-10-13T20:40:57.595318 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
423
|
+
I, [2016-10-13T20:40:57.703000 #82493] INFO -- : Started GET "/active_record_after_commit" for 127.0.0.1 at 2016-10-13 20:40:57 +0300
|
424
|
+
I, [2016-10-13T20:40:57.703857 #82493] INFO -- : Processing by DummyController#active_record_after_commit as HTML
|
425
|
+
D, [2016-10-13T20:40:57.704290 #82493] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
426
|
+
D, [2016-10-13T20:40:57.705329 #82493] DEBUG -- : [1m[35mSQL (0.3ms)[0m [1m[32mINSERT INTO "books" ("title") VALUES (?)[0m [["title", "Bingo"]]
|
427
|
+
D, [2016-10-13T20:40:57.705822 #82493] DEBUG -- : [1m[35m (0.1ms)[0m [1m[36mcommit transaction[0m
|
428
|
+
I, [2016-10-13T20:40:57.706562 #82493] INFO -- : Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.4ms)
|
429
|
+
F, [2016-10-13T20:40:57.714475 #82493] FATAL -- :
|
430
|
+
F, [2016-10-13T20:40:57.714504 #82493] FATAL -- : AirbrakeTestError (after_commit):
|
431
|
+
F, [2016-10-13T20:40:57.714517 #82493] FATAL -- :
|
432
|
+
F, [2016-10-13T20:40:57.714528 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
433
|
+
I, [2016-10-13T20:40:57.716386 #82493] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:57 +0300
|
434
|
+
I, [2016-10-13T20:40:57.716922 #82493] INFO -- : Processing by DummyController#crash as HTML
|
435
|
+
I, [2016-10-13T20:40:57.717135 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
436
|
+
F, [2016-10-13T20:40:57.719528 #82493] FATAL -- :
|
437
|
+
F, [2016-10-13T20:40:57.719555 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
438
|
+
F, [2016-10-13T20:40:57.719569 #82493] FATAL -- :
|
439
|
+
F, [2016-10-13T20:40:57.719581 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
440
|
+
I, [2016-10-13T20:40:57.824978 #82493] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:57 +0300
|
441
|
+
I, [2016-10-13T20:40:57.825677 #82493] INFO -- : Processing by DummyController#crash as HTML
|
442
|
+
I, [2016-10-13T20:40:57.825974 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
443
|
+
F, [2016-10-13T20:40:57.828883 #82493] FATAL -- :
|
444
|
+
F, [2016-10-13T20:40:57.828914 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
445
|
+
F, [2016-10-13T20:40:57.832922 #82493] FATAL -- :
|
446
|
+
F, [2016-10-13T20:40:57.832939 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
447
|
+
I, [2016-10-13T20:40:57.834666 #82493] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:57 +0300
|
448
|
+
I, [2016-10-13T20:40:57.835109 #82493] INFO -- : Processing by DummyController#crash as HTML
|
449
|
+
I, [2016-10-13T20:40:57.835353 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
450
|
+
F, [2016-10-13T20:40:57.838147 #82493] FATAL -- :
|
451
|
+
F, [2016-10-13T20:40:57.838176 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
452
|
+
F, [2016-10-13T20:40:57.838298 #82493] FATAL -- :
|
453
|
+
F, [2016-10-13T20:40:57.846537 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
454
|
+
I, [2016-10-13T20:40:57.848478 #82493] INFO -- : Started GET "/crash" for 127.0.0.1 at 2016-10-13 20:40:57 +0300
|
455
|
+
I, [2016-10-13T20:40:57.849075 #82493] INFO -- : Processing by DummyController#crash as HTML
|
456
|
+
I, [2016-10-13T20:40:57.849318 #82493] INFO -- : Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
457
|
+
F, [2016-10-13T20:40:57.851812 #82493] FATAL -- :
|
458
|
+
F, [2016-10-13T20:40:57.851843 #82493] FATAL -- : AirbrakeTestError (AirbrakeTestError):
|
459
|
+
F, [2016-10-13T20:40:57.851858 #82493] FATAL -- :
|
460
|
+
F, [2016-10-13T20:40:57.851870 #82493] FATAL -- : lib/airbrake/rack/middleware.rb:22:in `call'
|
461
|
+
I, [2016-10-13T20:40:57.958152 #82493] INFO -- : Started GET "/" for 127.0.0.1 at 2016-10-13 20:40:57 +0300
|
462
|
+
I, [2016-10-13T20:40:57.958805 #82493] INFO -- : Processing by DummyController#index as HTML
|
463
|
+
I, [2016-10-13T20:40:57.959821 #82493] INFO -- : Rendering dummy/index.html.erb within layouts/application
|
464
|
+
I, [2016-10-13T20:40:57.960153 #82493] INFO -- : Rendered dummy/index.html.erb within layouts/application (0.2ms)
|
465
|
+
I, [2016-10-13T20:40:57.960526 #82493] INFO -- : Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|