smoke_detector 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +9 -9
- data/README.md +1 -2
- data/lib/smoke_detector/providers/airbrake.rb +1 -1
- data/lib/smoke_detector/providers/provider.rb +9 -0
- data/lib/smoke_detector/providers/rollbar.rb +8 -5
- data/lib/smoke_detector/version.rb +1 -1
- data/spec/dummy/config/initializers/{watch_tower.rb → smoke_detector.rb} +1 -1
- data/spec/dummy/log/test.log +1373 -0
- data/spec/models/providers/provider_spec.rb +23 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ODYzOTQ5MDRkNTZiMGQxZjc5NjBiNmVhYjhlNzZjMjZmNGJkZDJlYw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
7
|
-
|
6
|
+
ZmYxMjZjOWMyYmIxMDhlOGI1NDBjMWY5Njg1NTM4ZjkxNzI5MDg0Mg==
|
7
|
+
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZWUwN2ZjNmM1NmM4YTg0ZThhYzI1ZTBhYjBiNWQ1Njk5YzY2YzQ0MmUzYWNh
|
10
|
+
YzExNDgzYjBhNjQxNGU5OGViNTI4YWE2NGNiMzkxMTVhZTM3ZWFiMTMxYmRh
|
11
|
+
Mjc5ZTJkMDRmMmQ5NDNmMTc2MGEzODkyMjFlNWIzZTgxYTkzYWY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NDRmYmM3ZDNiZmEwOTA1ZGFmNDIwMTA0NzVhZTNkMzgzM2MyOTNjNDdiODdl
|
14
|
+
NWU4ODIzZDg1YTVhMGE1NzVjODYwZjUzNDc5M2E3NzQwZjNmMzAxMGY4Y2Q1
|
15
|
+
ZTljZDk0MDgwM2RjYTlhOGY2YWM2NWUyOWJhMDM5NmNkZWI4N2I=
|
data/README.md
CHANGED
@@ -39,7 +39,6 @@ module SmokeDetector
|
|
39
39
|
end
|
40
40
|
end
|
41
41
|
```
|
42
|
-
Note: Only a subset of configuration parameters are currently available.
|
43
42
|
|
44
43
|
|
45
44
|
TODO
|
@@ -47,4 +46,4 @@ TODO
|
|
47
46
|
|
48
47
|
1. Add support for JS reporting snippets
|
49
48
|
2. Add support for all configuration settings
|
50
|
-
3.
|
49
|
+
3. Add support for capistrano deploy announcements
|
@@ -4,7 +4,7 @@ module SmokeDetector::Providers
|
|
4
4
|
def initialize(api_key, settings = {})
|
5
5
|
::Airbrake.configure do |c|
|
6
6
|
c.api_key = api_key
|
7
|
-
c
|
7
|
+
apply_configuration_settings(c, settings)
|
8
8
|
end
|
9
9
|
end
|
10
10
|
|
@@ -10,6 +10,15 @@ module SmokeDetector::Providers
|
|
10
10
|
def message(message, options = {})
|
11
11
|
raise NotImplementedError
|
12
12
|
end
|
13
|
+
|
14
|
+
private
|
15
|
+
|
16
|
+
def apply_configuration_settings(configuration, settings)
|
17
|
+
settings.each do |setting, value|
|
18
|
+
raise(ArgumentError, "#{setting} is not a valid #{self.class.name} configuration setting") unless configuration.respond_to?("#{setting}=")
|
19
|
+
configuration.send("#{setting}=", value)
|
20
|
+
end
|
21
|
+
end
|
13
22
|
end
|
14
23
|
|
15
24
|
end
|
@@ -5,14 +5,17 @@ module SmokeDetector::Providers
|
|
5
5
|
def initialize(api_key, settings = {})
|
6
6
|
::Rollbar.configure do |c|
|
7
7
|
c.access_token = api_key
|
8
|
-
c
|
9
|
-
|
10
|
-
|
11
|
-
c.
|
8
|
+
apply_configuration_settings(c, settings)
|
9
|
+
|
10
|
+
# set Rollbar defaults
|
11
|
+
c.logger ||= ::Rails.logger
|
12
|
+
c.environment ||= ::Rails.env
|
13
|
+
c.root ||= ::Rails.root
|
14
|
+
c.framework = "Rails: #{::Rails::VERSION::STRING}"
|
15
|
+
c.filepath ||= ::Rails.application.class.parent_name + '.rollbar'
|
12
16
|
end
|
13
17
|
end
|
14
18
|
|
15
|
-
|
16
19
|
def alert(exception, options = {})
|
17
20
|
if data = options.delete(:data)
|
18
21
|
exception.message << data.to_s
|
data/spec/dummy/log/test.log
CHANGED
@@ -11304,3 +11304,1376 @@ Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-04-17 12:12:57 -0700
|
|
11304
11304
|
Processing by WidgetsController#deep_catch as HTML
|
11305
11305
|
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
11306
11306
|
[1m[35m (0.0ms)[0m rollback transaction
|
11307
|
+
Connecting to database specified by database.yml
|
11308
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
11309
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11310
|
+
Processing by WidgetsController#deep_catch as HTML
|
11311
|
+
Rendered widgets/index.html.erb within layouts/application (22.3ms)
|
11312
|
+
Completed 200 OK in 34ms (Views: 33.6ms | ActiveRecord: 0.0ms)
|
11313
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11314
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11315
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11316
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11317
|
+
Completed 500 Internal Server Error in 0ms
|
11318
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11319
|
+
[Rollbar] Exception uuid saved in env:
|
11320
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11321
|
+
[Rollbar] Exception uuid saved in env:
|
11322
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11323
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11324
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11325
|
+
Processing by WidgetsController#bubble_up as HTML
|
11326
|
+
Completed 500 Internal Server Error in 0ms
|
11327
|
+
[Rollbar] Reporting exception: bubble_up
|
11328
|
+
[Rollbar] Exception uuid saved in env:
|
11329
|
+
[Rollbar] Reporting exception: bubble_up
|
11330
|
+
[Rollbar] Exception uuid saved in env:
|
11331
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11332
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11333
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11334
|
+
Processing by WidgetsController#catch as HTML
|
11335
|
+
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11336
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11337
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11338
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11339
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11340
|
+
Processing by WidgetsController#deep_catch as HTML
|
11341
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11342
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11343
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11344
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11345
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11346
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11347
|
+
Completed 500 Internal Server Error in 0ms
|
11348
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11349
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=76c7e6a0-cfef-4492-9c9b-1671e01bb36b
|
11350
|
+
[Rollbar] Exception uuid saved in env: 76c7e6a0-cfef-4492-9c9b-1671e01bb36b
|
11351
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11352
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=05f98a62-6377-441e-b188-e374428a1ffc
|
11353
|
+
[Rollbar] Exception uuid saved in env: 05f98a62-6377-441e-b188-e374428a1ffc
|
11354
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11355
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11356
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11357
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11358
|
+
Processing by WidgetsController#bubble_up as HTML
|
11359
|
+
Completed 500 Internal Server Error in 0ms
|
11360
|
+
[Rollbar] Reporting exception: bubble_up
|
11361
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=406a0bf8-7bd1-4836-a31c-5643b8a3cb1f
|
11362
|
+
[Rollbar] Exception uuid saved in env: 406a0bf8-7bd1-4836-a31c-5643b8a3cb1f
|
11363
|
+
[Rollbar] Reporting exception: bubble_up
|
11364
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=168f7dde-9f7d-4ed9-8c01-489c2aa5ade4
|
11365
|
+
[Rollbar] Exception uuid saved in env: 168f7dde-9f7d-4ed9-8c01-489c2aa5ade4
|
11366
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11367
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11368
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11369
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11370
|
+
Processing by WidgetsController#catch as HTML
|
11371
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=941731cc-e476-40da-9b63-9519a9f30d44
|
11372
|
+
Completed 200 OK in 38ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11373
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11374
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11375
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11376
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11377
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11378
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11379
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11380
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11381
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11382
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11383
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11384
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11385
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11386
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11387
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11388
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11389
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11390
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11391
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11392
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11393
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11394
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11395
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11396
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11397
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11398
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11399
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11400
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11401
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11402
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11403
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=00baa8b4-a2ed-4784-8576-158011bc1ef1
|
11404
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11405
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11406
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=448b1a86-023e-455f-a863-e90c3225b6db
|
11407
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11408
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11409
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11410
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11411
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11412
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11413
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11414
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11415
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11416
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11417
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11418
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11419
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11420
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11421
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11422
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11423
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11424
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11425
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11426
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11427
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11428
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11429
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11430
|
+
Processing by WidgetsController#deep_catch as HTML
|
11431
|
+
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11432
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11433
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11434
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11435
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11436
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11437
|
+
Completed 500 Internal Server Error in 0ms
|
11438
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11439
|
+
[Rollbar] Exception uuid saved in env:
|
11440
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11441
|
+
[Rollbar] Exception uuid saved in env:
|
11442
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11443
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11444
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11445
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11446
|
+
Processing by WidgetsController#bubble_up as HTML
|
11447
|
+
Completed 500 Internal Server Error in 0ms
|
11448
|
+
[Rollbar] Reporting exception: bubble_up
|
11449
|
+
[Rollbar] Exception uuid saved in env:
|
11450
|
+
[Rollbar] Reporting exception: bubble_up
|
11451
|
+
[Rollbar] Exception uuid saved in env:
|
11452
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11453
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11454
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11455
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11456
|
+
Processing by WidgetsController#catch as HTML
|
11457
|
+
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11458
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11459
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11460
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11461
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11462
|
+
Processing by WidgetsController#deep_catch as HTML
|
11463
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=b1e183db-7c1d-420c-a429-1d5df18b7e5d
|
11464
|
+
Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11465
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11466
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11467
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11468
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11469
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11470
|
+
Completed 500 Internal Server Error in 0ms
|
11471
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11472
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=a300d5c0-ff15-4280-bb1f-f08b9889a4e1
|
11473
|
+
[Rollbar] Exception uuid saved in env: a300d5c0-ff15-4280-bb1f-f08b9889a4e1
|
11474
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11475
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=d0d7931d-1a90-47ea-91dd-b475e5c7f2b3
|
11476
|
+
[Rollbar] Exception uuid saved in env: d0d7931d-1a90-47ea-91dd-b475e5c7f2b3
|
11477
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11478
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11479
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11480
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11481
|
+
Processing by WidgetsController#bubble_up as HTML
|
11482
|
+
Completed 500 Internal Server Error in 0ms
|
11483
|
+
[Rollbar] Reporting exception: bubble_up
|
11484
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=9bf2cf05-270c-43cf-a552-1b1cdcf5b002
|
11485
|
+
[Rollbar] Exception uuid saved in env: 9bf2cf05-270c-43cf-a552-1b1cdcf5b002
|
11486
|
+
[Rollbar] Reporting exception: bubble_up
|
11487
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=7a15cea3-8837-41ee-b83b-6964b30b79b6
|
11488
|
+
[Rollbar] Exception uuid saved in env: 7a15cea3-8837-41ee-b83b-6964b30b79b6
|
11489
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11490
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11491
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11492
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:31:17 -0700
|
11493
|
+
Processing by WidgetsController#catch as HTML
|
11494
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=ed82da0c-d96a-4c8c-8ac6-e07b70cf518e
|
11495
|
+
Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11496
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11497
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11498
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11499
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11500
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11501
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11502
|
+
Connecting to database specified by database.yml
|
11503
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
11504
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11505
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11506
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11507
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11508
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11509
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11510
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:45:43 -0700
|
11511
|
+
Processing by WidgetsController#bubble_up as HTML
|
11512
|
+
Completed 500 Internal Server Error in 0ms
|
11513
|
+
[Rollbar] Reporting exception: bubble_up
|
11514
|
+
[Rollbar] Exception uuid saved in env:
|
11515
|
+
[Rollbar] Reporting exception: bubble_up
|
11516
|
+
[Rollbar] Exception uuid saved in env:
|
11517
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11518
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11519
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11520
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:45:43 -0700
|
11521
|
+
Processing by WidgetsController#catch as HTML
|
11522
|
+
Completed 200 OK in 33ms (Views: 32.5ms | ActiveRecord: 0.0ms)
|
11523
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11524
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11525
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11526
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:45:43 -0700
|
11527
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11528
|
+
Completed 500 Internal Server Error in 0ms
|
11529
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11530
|
+
[Rollbar] Exception uuid saved in env:
|
11531
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11532
|
+
[Rollbar] Exception uuid saved in env:
|
11533
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11534
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11535
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11536
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:45:43 -0700
|
11537
|
+
Processing by WidgetsController#deep_catch as HTML
|
11538
|
+
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11539
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11540
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11541
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11542
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:45:43 -0700
|
11543
|
+
Processing by WidgetsController#bubble_up as HTML
|
11544
|
+
Completed 500 Internal Server Error in 0ms
|
11545
|
+
[Rollbar] Reporting exception: bubble_up
|
11546
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=1bc86d3d-3255-4f8c-8750-31a8819f3a86 (only available if report was successful)
|
11547
|
+
[Rollbar] Exception uuid saved in env: 1bc86d3d-3255-4f8c-8750-31a8819f3a86
|
11548
|
+
[Rollbar] Reporting exception: bubble_up
|
11549
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=e7570468-61c6-4a9d-aa15-dae944866daa (only available if report was successful)
|
11550
|
+
[Rollbar] Exception uuid saved in env: e7570468-61c6-4a9d-aa15-dae944866daa
|
11551
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11552
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11553
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11554
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:45:43 -0700
|
11555
|
+
Processing by WidgetsController#catch as HTML
|
11556
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=6d4fd01f-66cd-4607-b0a3-361a20113ed2 (only available if report was successful)
|
11557
|
+
Completed 200 OK in 37ms (Views: 25.2ms | ActiveRecord: 0.0ms)
|
11558
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11559
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11560
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11561
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:45:44 -0700
|
11562
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11563
|
+
Completed 500 Internal Server Error in 0ms
|
11564
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11565
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=104cf565-6de2-4a1b-8d15-4a5e461c6035 (only available if report was successful)
|
11566
|
+
[Rollbar] Exception uuid saved in env: 104cf565-6de2-4a1b-8d15-4a5e461c6035
|
11567
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11568
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=bc8fab35-486e-4f18-ad67-136fff9143df (only available if report was successful)
|
11569
|
+
[Rollbar] Exception uuid saved in env: bc8fab35-486e-4f18-ad67-136fff9143df
|
11570
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11571
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11572
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11573
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:45:44 -0700
|
11574
|
+
Processing by WidgetsController#deep_catch as HTML
|
11575
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=1bfb9122-b64a-4e83-8b4a-50117a056bb0 (only available if report was successful)
|
11576
|
+
Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11577
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11578
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11579
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=15c92caf-8c98-45bd-9391-338b495ae490 (only available if report was successful)
|
11580
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11581
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11582
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11583
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11584
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11585
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11586
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11587
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11588
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11589
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11590
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11591
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11592
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11593
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11594
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11595
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11596
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11597
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11598
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11599
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11600
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11601
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:45:44 -0700
|
11602
|
+
Processing by WidgetsController#bubble_up as HTML
|
11603
|
+
Completed 500 Internal Server Error in 0ms
|
11604
|
+
[Rollbar] Reporting exception: bubble_up
|
11605
|
+
[Rollbar] Exception uuid saved in env:
|
11606
|
+
[Rollbar] Reporting exception: bubble_up
|
11607
|
+
[Rollbar] Exception uuid saved in env:
|
11608
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11609
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11610
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:45:44 -0700
|
11611
|
+
Processing by WidgetsController#catch as HTML
|
11612
|
+
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11613
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11614
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11615
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:45:44 -0700
|
11616
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11617
|
+
Completed 500 Internal Server Error in 0ms
|
11618
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11619
|
+
[Rollbar] Exception uuid saved in env:
|
11620
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11621
|
+
[Rollbar] Exception uuid saved in env:
|
11622
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11623
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11624
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:45:44 -0700
|
11625
|
+
Processing by WidgetsController#deep_catch as HTML
|
11626
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11627
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11628
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11629
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11630
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:45:44 -0700
|
11631
|
+
Processing by WidgetsController#bubble_up as HTML
|
11632
|
+
Completed 500 Internal Server Error in 0ms
|
11633
|
+
[Rollbar] Reporting exception: bubble_up
|
11634
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=725e8d2f-45b0-4256-a788-088849407fa7 (only available if report was successful)
|
11635
|
+
[Rollbar] Exception uuid saved in env: 725e8d2f-45b0-4256-a788-088849407fa7
|
11636
|
+
[Rollbar] Reporting exception: bubble_up
|
11637
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=264b178e-d4d2-4385-a1c2-ba2bae9d6db1 (only available if report was successful)
|
11638
|
+
[Rollbar] Exception uuid saved in env: 264b178e-d4d2-4385-a1c2-ba2bae9d6db1
|
11639
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11640
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11641
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11642
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:45:44 -0700
|
11643
|
+
Processing by WidgetsController#catch as HTML
|
11644
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=0dbfae4d-a9d4-4b22-b31f-357f1e32965d (only available if report was successful)
|
11645
|
+
Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11646
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11647
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11648
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11649
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:45:44 -0700
|
11650
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11651
|
+
Completed 500 Internal Server Error in 0ms
|
11652
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11653
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=2e731087-17e3-47bd-8dfc-3d77d2d1579c (only available if report was successful)
|
11654
|
+
[Rollbar] Exception uuid saved in env: 2e731087-17e3-47bd-8dfc-3d77d2d1579c
|
11655
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11656
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=eaceecf8-8627-494c-93b4-e59eecca58dc (only available if report was successful)
|
11657
|
+
[Rollbar] Exception uuid saved in env: eaceecf8-8627-494c-93b4-e59eecca58dc
|
11658
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11659
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11660
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11661
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:45:44 -0700
|
11662
|
+
Processing by WidgetsController#deep_catch as HTML
|
11663
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11664
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11665
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11666
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11667
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11668
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11669
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11670
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11671
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11672
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11673
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11674
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11675
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11676
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11677
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11678
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=4310c2b9-b738-4724-a6eb-b454bf2e85dd (only available if report was successful)
|
11679
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11680
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11681
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11682
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11683
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11684
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11685
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11686
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11687
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11688
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11689
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11690
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11691
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11692
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11693
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11694
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11695
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11696
|
+
Connecting to database specified by database.yml
|
11697
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
11698
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11699
|
+
Processing by WidgetsController#catch as HTML
|
11700
|
+
Rendered widgets/index.html.erb within layouts/application (1.9ms)
|
11701
|
+
Completed 200 OK in 32ms (Views: 30.8ms | ActiveRecord: 0.0ms)
|
11702
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11703
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11704
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11705
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11706
|
+
Completed 500 Internal Server Error in 0ms
|
11707
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11708
|
+
[Rollbar] Exception uuid saved in env:
|
11709
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11710
|
+
[Rollbar] Exception uuid saved in env:
|
11711
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11712
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11713
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11714
|
+
Processing by WidgetsController#bubble_up as HTML
|
11715
|
+
Completed 500 Internal Server Error in 0ms
|
11716
|
+
[Rollbar] Reporting exception: bubble_up
|
11717
|
+
[Rollbar] Exception uuid saved in env:
|
11718
|
+
[Rollbar] Reporting exception: bubble_up
|
11719
|
+
[Rollbar] Exception uuid saved in env:
|
11720
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11721
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11722
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11723
|
+
Processing by WidgetsController#deep_catch as HTML
|
11724
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11725
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11726
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11727
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11728
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11729
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11730
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11731
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11732
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11733
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11734
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11735
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11736
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11737
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=dcf9b643-6f1c-450f-ac1e-27ec9a0354d1 (only available if report was successful)
|
11738
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11739
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11740
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11741
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11742
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11743
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11744
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11745
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11746
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11747
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11748
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11749
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11750
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11751
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11752
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11753
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11754
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11755
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11756
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11757
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11758
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11759
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11760
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11761
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11762
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11763
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11764
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11765
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11766
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11767
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11768
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11769
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11770
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11771
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11772
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11773
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11774
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11775
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11776
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11777
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11778
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11779
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11780
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11781
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11782
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=98604aee-07a2-408a-8859-4e1bc08e95ed (only available if report was successful)
|
11783
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11784
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11785
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11786
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11787
|
+
Processing by WidgetsController#catch as HTML
|
11788
|
+
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11789
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11790
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11791
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11792
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11793
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11794
|
+
Completed 500 Internal Server Error in 0ms
|
11795
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11796
|
+
[Rollbar] Exception uuid saved in env:
|
11797
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11798
|
+
[Rollbar] Exception uuid saved in env:
|
11799
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11800
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11801
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11802
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11803
|
+
Processing by WidgetsController#bubble_up as HTML
|
11804
|
+
Completed 500 Internal Server Error in 0ms
|
11805
|
+
[Rollbar] Reporting exception: bubble_up
|
11806
|
+
[Rollbar] Exception uuid saved in env:
|
11807
|
+
[Rollbar] Reporting exception: bubble_up
|
11808
|
+
[Rollbar] Exception uuid saved in env:
|
11809
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11810
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11811
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11812
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11813
|
+
Processing by WidgetsController#deep_catch as HTML
|
11814
|
+
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11815
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11816
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11817
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11818
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11819
|
+
Processing by WidgetsController#catch as HTML
|
11820
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=a3c3fa47-6776-4729-b9f1-c5ab223572ce (only available if report was successful)
|
11821
|
+
Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11822
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11823
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11824
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11825
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11826
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11827
|
+
Completed 500 Internal Server Error in 0ms
|
11828
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11829
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=e628b4ce-d5c4-431f-9c74-b1bbb2196dd3 (only available if report was successful)
|
11830
|
+
[Rollbar] Exception uuid saved in env: e628b4ce-d5c4-431f-9c74-b1bbb2196dd3
|
11831
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11832
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=97b826d0-3f90-4a21-a234-48a32ca0e611 (only available if report was successful)
|
11833
|
+
[Rollbar] Exception uuid saved in env: 97b826d0-3f90-4a21-a234-48a32ca0e611
|
11834
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11835
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11836
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11837
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11838
|
+
Processing by WidgetsController#bubble_up as HTML
|
11839
|
+
Completed 500 Internal Server Error in 0ms
|
11840
|
+
[Rollbar] Reporting exception: bubble_up
|
11841
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=5cfd0a28-aad1-4509-ab68-f84d405bb222 (only available if report was successful)
|
11842
|
+
[Rollbar] Exception uuid saved in env: 5cfd0a28-aad1-4509-ab68-f84d405bb222
|
11843
|
+
[Rollbar] Reporting exception: bubble_up
|
11844
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=2b8bd291-a8fe-4111-bd0b-3d49eb3e0290 (only available if report was successful)
|
11845
|
+
[Rollbar] Exception uuid saved in env: 2b8bd291-a8fe-4111-bd0b-3d49eb3e0290
|
11846
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11847
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11848
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11849
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11850
|
+
Processing by WidgetsController#deep_catch as HTML
|
11851
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=e2432fa6-67f1-4418-abd0-d0b2bd8cf148 (only available if report was successful)
|
11852
|
+
Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11853
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11854
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11855
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11856
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11857
|
+
Processing by WidgetsController#catch as HTML
|
11858
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=21dcdada-b767-48bb-bcba-f8a676b0d5a3 (only available if report was successful)
|
11859
|
+
Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11860
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11861
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11862
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11863
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11864
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11865
|
+
Completed 500 Internal Server Error in 0ms
|
11866
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11867
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=14016a55-4844-4523-a05e-aea0e66550a5 (only available if report was successful)
|
11868
|
+
[Rollbar] Exception uuid saved in env: 14016a55-4844-4523-a05e-aea0e66550a5
|
11869
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11870
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=27c799e6-dcce-4957-bac9-4eac7e5c93a4 (only available if report was successful)
|
11871
|
+
[Rollbar] Exception uuid saved in env: 27c799e6-dcce-4957-bac9-4eac7e5c93a4
|
11872
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11873
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11874
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11875
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11876
|
+
Processing by WidgetsController#bubble_up as HTML
|
11877
|
+
Completed 500 Internal Server Error in 0ms
|
11878
|
+
[Rollbar] Reporting exception: bubble_up
|
11879
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=a587c81b-65f1-4e68-9b78-15260e104999 (only available if report was successful)
|
11880
|
+
[Rollbar] Exception uuid saved in env: a587c81b-65f1-4e68-9b78-15260e104999
|
11881
|
+
[Rollbar] Reporting exception: bubble_up
|
11882
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=9015e703-b083-4900-abc6-8859326ddfdb (only available if report was successful)
|
11883
|
+
[Rollbar] Exception uuid saved in env: 9015e703-b083-4900-abc6-8859326ddfdb
|
11884
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11885
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11886
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11887
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:46:03 -0700
|
11888
|
+
Processing by WidgetsController#deep_catch as HTML
|
11889
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11890
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11891
|
+
Connecting to database specified by database.yml
|
11892
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
11893
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11894
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11895
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11896
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11897
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11898
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11899
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11900
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11901
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11902
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11903
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11904
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11905
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11906
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11907
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=5b8be71e-6448-434a-ac0e-1a538be9a54d (only available if report was successful)
|
11908
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11909
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11910
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11911
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11912
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11913
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11914
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11915
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11916
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11917
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
11918
|
+
Processing by WidgetsController#bubble_up as HTML
|
11919
|
+
Completed 500 Internal Server Error in 0ms
|
11920
|
+
[Rollbar] Reporting exception: bubble_up
|
11921
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=c7a68dfc-ebb6-43f6-bf77-3400f8c0bb63 (only available if report was successful)
|
11922
|
+
[Rollbar] Exception uuid saved in env: c7a68dfc-ebb6-43f6-bf77-3400f8c0bb63
|
11923
|
+
[Rollbar] Reporting exception: bubble_up
|
11924
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=93a170cc-1586-48d9-bfe7-6d776285211e (only available if report was successful)
|
11925
|
+
[Rollbar] Exception uuid saved in env: 93a170cc-1586-48d9-bfe7-6d776285211e
|
11926
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
11927
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11928
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11929
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
11930
|
+
Processing by WidgetsController#deep_catch as HTML
|
11931
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
11932
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11933
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11934
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11935
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
11936
|
+
Processing by WidgetsController#catch as HTML
|
11937
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=5fd7088e-fcfe-4b6f-ac2a-87422d04001f (only available if report was successful)
|
11938
|
+
Completed 200 OK in 34ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11939
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11940
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11941
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11942
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
11943
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11944
|
+
Completed 500 Internal Server Error in 0ms
|
11945
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11946
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=33e1f281-69a6-4274-9c7c-ad516482956a (only available if report was successful)
|
11947
|
+
[Rollbar] Exception uuid saved in env: 33e1f281-69a6-4274-9c7c-ad516482956a
|
11948
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11949
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=542d95af-cbd8-40b1-8adc-f5bee475eeb0 (only available if report was successful)
|
11950
|
+
[Rollbar] Exception uuid saved in env: 542d95af-cbd8-40b1-8adc-f5bee475eeb0
|
11951
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11952
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11953
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11954
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11955
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11956
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11957
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11958
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11959
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11960
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11961
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11962
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11963
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11964
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11965
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11966
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11967
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11968
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11969
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11970
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
11971
|
+
Processing by WidgetsController#bubble_up as HTML
|
11972
|
+
Completed 500 Internal Server Error in 0ms
|
11973
|
+
[Rollbar] Reporting exception: bubble_up
|
11974
|
+
[Rollbar] Exception uuid saved in env:
|
11975
|
+
[Rollbar] Reporting exception: bubble_up
|
11976
|
+
[Rollbar] Exception uuid saved in env:
|
11977
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11978
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11979
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11980
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
11981
|
+
Processing by WidgetsController#deep_catch as HTML
|
11982
|
+
Completed 200 OK in 6ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
11983
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11984
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
11985
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11986
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
11987
|
+
Processing by WidgetsController#catch as HTML
|
11988
|
+
Completed 200 OK in 2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
11989
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11990
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
11991
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
11992
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
11993
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
11994
|
+
Completed 500 Internal Server Error in 0ms
|
11995
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11996
|
+
[Rollbar] Exception uuid saved in env:
|
11997
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
11998
|
+
[Rollbar] Exception uuid saved in env:
|
11999
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12000
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12001
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12002
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
12003
|
+
Processing by WidgetsController#bubble_up as HTML
|
12004
|
+
Completed 500 Internal Server Error in 0ms
|
12005
|
+
[Rollbar] Reporting exception: bubble_up
|
12006
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=c3842228-ac42-4046-af6b-ae833910eb2c (only available if report was successful)
|
12007
|
+
[Rollbar] Exception uuid saved in env: c3842228-ac42-4046-af6b-ae833910eb2c
|
12008
|
+
[Rollbar] Reporting exception: bubble_up
|
12009
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=a2db704a-efad-496a-9003-aa74d7a2f2ab (only available if report was successful)
|
12010
|
+
[Rollbar] Exception uuid saved in env: a2db704a-efad-496a-9003-aa74d7a2f2ab
|
12011
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12012
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12013
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12014
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
12015
|
+
Processing by WidgetsController#deep_catch as HTML
|
12016
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=16862f9e-140d-4753-8379-991aac0a6379 (only available if report was successful)
|
12017
|
+
Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
12018
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12019
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12020
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12021
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
12022
|
+
Processing by WidgetsController#catch as HTML
|
12023
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=529a8615-384f-4ebe-b3a1-53ed4be1ad85 (only available if report was successful)
|
12024
|
+
Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12025
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12026
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12027
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12028
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:58:23 -0700
|
12029
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12030
|
+
Completed 500 Internal Server Error in 0ms
|
12031
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12032
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=e7c538e5-b047-4b31-a215-85af662f5cc8 (only available if report was successful)
|
12033
|
+
[Rollbar] Exception uuid saved in env: e7c538e5-b047-4b31-a215-85af662f5cc8
|
12034
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12035
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=50d5ba2e-ce4b-4a0b-8693-1d10fa1843f8 (only available if report was successful)
|
12036
|
+
[Rollbar] Exception uuid saved in env: 50d5ba2e-ce4b-4a0b-8693-1d10fa1843f8
|
12037
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12038
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12039
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12040
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12041
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12042
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12043
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12044
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12045
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=011b7a35-b09d-48c5-8bee-3b9e3d73af45 (only available if report was successful)
|
12046
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12047
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12048
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12049
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12050
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12051
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12052
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12053
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12054
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12055
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12056
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12057
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12058
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-13 14:58:24 -0700
|
12059
|
+
Processing by WidgetsController#bubble_up as HTML
|
12060
|
+
Completed 500 Internal Server Error in 0ms
|
12061
|
+
[Rollbar] Reporting exception: bubble_up
|
12062
|
+
[Rollbar] Exception uuid saved in env:
|
12063
|
+
[Rollbar] Reporting exception: bubble_up
|
12064
|
+
[Rollbar] Exception uuid saved in env:
|
12065
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12066
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12067
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-13 14:58:24 -0700
|
12068
|
+
Processing by WidgetsController#deep_catch as HTML
|
12069
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12070
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12071
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12072
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-13 14:58:24 -0700
|
12073
|
+
Processing by WidgetsController#catch as HTML
|
12074
|
+
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12075
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12076
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12077
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-13 14:58:24 -0700
|
12078
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12079
|
+
Completed 500 Internal Server Error in 0ms
|
12080
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12081
|
+
[Rollbar] Exception uuid saved in env:
|
12082
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12083
|
+
[Rollbar] Exception uuid saved in env:
|
12084
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12085
|
+
Connecting to database specified by database.yml
|
12086
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
12087
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12088
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12089
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12090
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12091
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12092
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12093
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12094
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12095
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12096
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12097
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12098
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12099
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12100
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12101
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12102
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12103
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12104
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12105
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12106
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12107
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12108
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12109
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12110
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=fb5fc801-9009-4238-bbdb-d5967445386b (only available if report was successful)
|
12111
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12112
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12113
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12114
|
+
Processing by WidgetsController#catch as HTML
|
12115
|
+
Rendered widgets/index.html.erb within layouts/application (2.3ms)
|
12116
|
+
Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms)
|
12117
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12118
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12119
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12120
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12121
|
+
Completed 500 Internal Server Error in 0ms
|
12122
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12123
|
+
[Rollbar] Exception uuid saved in env:
|
12124
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12125
|
+
[Rollbar] Exception uuid saved in env:
|
12126
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12127
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12128
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12129
|
+
Processing by WidgetsController#bubble_up as HTML
|
12130
|
+
Completed 500 Internal Server Error in 0ms
|
12131
|
+
[Rollbar] Reporting exception: bubble_up
|
12132
|
+
[Rollbar] Exception uuid saved in env:
|
12133
|
+
[Rollbar] Reporting exception: bubble_up
|
12134
|
+
[Rollbar] Exception uuid saved in env:
|
12135
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12136
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12137
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12138
|
+
Processing by WidgetsController#deep_catch as HTML
|
12139
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12140
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12141
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12142
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12143
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12144
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12145
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12146
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12147
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12148
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12149
|
+
Processing by WidgetsController#catch as HTML
|
12150
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=65f0c16b-a086-4b53-ac3b-92843dd834ea (only available if report was successful)
|
12151
|
+
Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12152
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12153
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12154
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12155
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12156
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12157
|
+
Completed 500 Internal Server Error in 0ms
|
12158
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12159
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=d89af069-1e05-4886-82f5-280c240619f9 (only available if report was successful)
|
12160
|
+
[Rollbar] Exception uuid saved in env: d89af069-1e05-4886-82f5-280c240619f9
|
12161
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12162
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=5310c89e-a4b0-41e6-9292-642a64200291 (only available if report was successful)
|
12163
|
+
[Rollbar] Exception uuid saved in env: 5310c89e-a4b0-41e6-9292-642a64200291
|
12164
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12165
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12166
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12167
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12168
|
+
Processing by WidgetsController#bubble_up as HTML
|
12169
|
+
Completed 500 Internal Server Error in 0ms
|
12170
|
+
[Rollbar] Reporting exception: bubble_up
|
12171
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=c51e63be-8ad3-4189-bec9-22cd8c44ed0f (only available if report was successful)
|
12172
|
+
[Rollbar] Exception uuid saved in env: c51e63be-8ad3-4189-bec9-22cd8c44ed0f
|
12173
|
+
[Rollbar] Reporting exception: bubble_up
|
12174
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=742729ab-a9fb-4e18-a9a6-862519f183ab (only available if report was successful)
|
12175
|
+
[Rollbar] Exception uuid saved in env: 742729ab-a9fb-4e18-a9a6-862519f183ab
|
12176
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12177
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12178
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12179
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12180
|
+
Processing by WidgetsController#deep_catch as HTML
|
12181
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=bd126419-84f0-4aa4-b949-3f6a23a235d8 (only available if report was successful)
|
12182
|
+
Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12183
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12184
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12185
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12186
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12187
|
+
Processing by WidgetsController#catch as HTML
|
12188
|
+
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12189
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12190
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12191
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12192
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12193
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12194
|
+
Completed 500 Internal Server Error in 0ms
|
12195
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12196
|
+
[Rollbar] Exception uuid saved in env:
|
12197
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12198
|
+
[Rollbar] Exception uuid saved in env:
|
12199
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12200
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12201
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12202
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12203
|
+
Processing by WidgetsController#bubble_up as HTML
|
12204
|
+
Completed 500 Internal Server Error in 0ms
|
12205
|
+
[Rollbar] Reporting exception: bubble_up
|
12206
|
+
[Rollbar] Exception uuid saved in env:
|
12207
|
+
[Rollbar] Reporting exception: bubble_up
|
12208
|
+
[Rollbar] Exception uuid saved in env:
|
12209
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12210
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12211
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12212
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12213
|
+
Processing by WidgetsController#deep_catch as HTML
|
12214
|
+
Completed 200 OK in 6ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12215
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12216
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12217
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12218
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12219
|
+
Processing by WidgetsController#catch as HTML
|
12220
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=1f516109-220a-4ece-a2fb-2847650f1940 (only available if report was successful)
|
12221
|
+
Completed 200 OK in 38ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12222
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12223
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12224
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12225
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12226
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12227
|
+
Completed 500 Internal Server Error in 0ms
|
12228
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12229
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=9eddb3d1-3cc7-42db-97e0-723aecd61c74 (only available if report was successful)
|
12230
|
+
[Rollbar] Exception uuid saved in env: 9eddb3d1-3cc7-42db-97e0-723aecd61c74
|
12231
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12232
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=00c7ecb9-d664-46f8-9aa8-10a632dab0fb (only available if report was successful)
|
12233
|
+
[Rollbar] Exception uuid saved in env: 00c7ecb9-d664-46f8-9aa8-10a632dab0fb
|
12234
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12235
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12236
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12237
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12238
|
+
Processing by WidgetsController#bubble_up as HTML
|
12239
|
+
Completed 500 Internal Server Error in 0ms
|
12240
|
+
[Rollbar] Reporting exception: bubble_up
|
12241
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=b6c80db2-5bf2-41cb-83be-86c579920600 (only available if report was successful)
|
12242
|
+
[Rollbar] Exception uuid saved in env: b6c80db2-5bf2-41cb-83be-86c579920600
|
12243
|
+
[Rollbar] Reporting exception: bubble_up
|
12244
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=ea9b2f11-ab66-4e79-95ff-8c19d53ec8e1 (only available if report was successful)
|
12245
|
+
[Rollbar] Exception uuid saved in env: ea9b2f11-ab66-4e79-95ff-8c19d53ec8e1
|
12246
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12247
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12248
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12249
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:53:11 -0700
|
12250
|
+
Processing by WidgetsController#deep_catch as HTML
|
12251
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12252
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12253
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12254
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12255
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12256
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=e8683129-2dc4-4ed8-9638-2d8d3a37ecbf (only available if report was successful)
|
12257
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12258
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12259
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12260
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12261
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12262
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12263
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12264
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12265
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12267
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12268
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12269
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12271
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12272
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12273
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12274
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12275
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12276
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12277
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12278
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12279
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12280
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12281
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12282
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12283
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12284
|
+
Connecting to database specified by database.yml
|
12285
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
12286
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12287
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12288
|
+
Processing by WidgetsController#bubble_up as HTML
|
12289
|
+
Completed 500 Internal Server Error in 0ms
|
12290
|
+
[Rollbar] Reporting exception: bubble_up
|
12291
|
+
[Rollbar] Exception uuid saved in env:
|
12292
|
+
[Rollbar] Reporting exception: bubble_up
|
12293
|
+
[Rollbar] Exception uuid saved in env:
|
12294
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12295
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12296
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12297
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12298
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12299
|
+
Completed 500 Internal Server Error in 0ms
|
12300
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12301
|
+
[Rollbar] Exception uuid saved in env:
|
12302
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12303
|
+
[Rollbar] Exception uuid saved in env:
|
12304
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12305
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12306
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12307
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12308
|
+
Processing by WidgetsController#catch as HTML
|
12309
|
+
Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
12310
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12311
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12312
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12313
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12314
|
+
Processing by WidgetsController#deep_catch as HTML
|
12315
|
+
Completed 200 OK in 7ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12316
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12317
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12318
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12319
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12320
|
+
Processing by WidgetsController#bubble_up as HTML
|
12321
|
+
Completed 500 Internal Server Error in 0ms
|
12322
|
+
[Rollbar] Reporting exception: bubble_up
|
12323
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=c9dbbf64-2c5e-408c-abad-d1c3141cee2f (only available if report was successful)
|
12324
|
+
[Rollbar] Exception uuid saved in env: c9dbbf64-2c5e-408c-abad-d1c3141cee2f
|
12325
|
+
[Rollbar] Reporting exception: bubble_up
|
12326
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=a092b16b-e3a0-4963-a083-76080e81ec1f (only available if report was successful)
|
12327
|
+
[Rollbar] Exception uuid saved in env: a092b16b-e3a0-4963-a083-76080e81ec1f
|
12328
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12329
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12330
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12331
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12332
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12333
|
+
Completed 500 Internal Server Error in 0ms
|
12334
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12335
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=ca9c73d3-1c01-4f38-8b6b-f4c68cf3e1d1 (only available if report was successful)
|
12336
|
+
[Rollbar] Exception uuid saved in env: ca9c73d3-1c01-4f38-8b6b-f4c68cf3e1d1
|
12337
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12338
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=fa0df58e-6dba-4723-ab0e-991d27ede614 (only available if report was successful)
|
12339
|
+
[Rollbar] Exception uuid saved in env: fa0df58e-6dba-4723-ab0e-991d27ede614
|
12340
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12341
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12342
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12343
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12344
|
+
Processing by WidgetsController#catch as HTML
|
12345
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=b52d7862-3076-4f0a-8004-1637377f4715 (only available if report was successful)
|
12346
|
+
Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12347
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12348
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12349
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12350
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12351
|
+
Processing by WidgetsController#deep_catch as HTML
|
12352
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=3c2037f9-68a3-4536-b512-0efe4545e905 (only available if report was successful)
|
12353
|
+
Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12354
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12355
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12356
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12357
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12358
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=66a03ca2-861e-4ea2-8d07-6c6f522bebd6 (only available if report was successful)
|
12359
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12360
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12361
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12362
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12363
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12364
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12365
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12366
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12367
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12368
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12369
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12370
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12371
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12372
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12373
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12374
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12375
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12376
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12377
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12378
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12379
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12380
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12381
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12382
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12383
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12384
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12385
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12386
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12387
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12388
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12389
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12390
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12391
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12392
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12393
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12394
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12395
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12396
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12397
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12398
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12399
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12400
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12401
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12402
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=1778ee50-2c26-411f-ad5a-1d7f71255c12 (only available if report was successful)
|
12403
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12404
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12405
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12406
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12407
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12408
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12409
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12410
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12411
|
+
Processing by WidgetsController#bubble_up as HTML
|
12412
|
+
Completed 500 Internal Server Error in 0ms
|
12413
|
+
[Rollbar] Reporting exception: bubble_up
|
12414
|
+
[Rollbar] Exception uuid saved in env:
|
12415
|
+
[Rollbar] Reporting exception: bubble_up
|
12416
|
+
[Rollbar] Exception uuid saved in env:
|
12417
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12418
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12419
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12420
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12421
|
+
Completed 500 Internal Server Error in 0ms
|
12422
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12423
|
+
[Rollbar] Exception uuid saved in env:
|
12424
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12425
|
+
[Rollbar] Exception uuid saved in env:
|
12426
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12427
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12428
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12429
|
+
Processing by WidgetsController#catch as HTML
|
12430
|
+
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12431
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12432
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12433
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12434
|
+
Processing by WidgetsController#deep_catch as HTML
|
12435
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12436
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12437
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12438
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12439
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12440
|
+
Processing by WidgetsController#bubble_up as HTML
|
12441
|
+
Completed 500 Internal Server Error in 0ms
|
12442
|
+
[Rollbar] Reporting exception: bubble_up
|
12443
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=98221ccd-6407-489b-b44f-d2fd5b828c62 (only available if report was successful)
|
12444
|
+
[Rollbar] Exception uuid saved in env: 98221ccd-6407-489b-b44f-d2fd5b828c62
|
12445
|
+
[Rollbar] Reporting exception: bubble_up
|
12446
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=5998fbd5-7102-4951-952b-1b492e00c792 (only available if report was successful)
|
12447
|
+
[Rollbar] Exception uuid saved in env: 5998fbd5-7102-4951-952b-1b492e00c792
|
12448
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12449
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12450
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12451
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12452
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12453
|
+
Completed 500 Internal Server Error in 0ms
|
12454
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12455
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=354bad04-e1d7-4d08-ab11-3d6b634bd139 (only available if report was successful)
|
12456
|
+
[Rollbar] Exception uuid saved in env: 354bad04-e1d7-4d08-ab11-3d6b634bd139
|
12457
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12458
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=e0a01fd6-93fc-465e-9fed-38380588d41c (only available if report was successful)
|
12459
|
+
[Rollbar] Exception uuid saved in env: e0a01fd6-93fc-465e-9fed-38380588d41c
|
12460
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12461
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12462
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12463
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12464
|
+
Processing by WidgetsController#catch as HTML
|
12465
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=5529f172-b352-42db-9295-5a9aa0533700 (only available if report was successful)
|
12466
|
+
Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12467
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12468
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12469
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12470
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:54:28 -0700
|
12471
|
+
Processing by WidgetsController#deep_catch as HTML
|
12472
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12473
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12474
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12475
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12476
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12477
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12478
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12479
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12480
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12481
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12482
|
+
Connecting to database specified by database.yml
|
12483
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
12484
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12485
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12486
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12487
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12488
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12489
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=72f76fdd-09c0-4d1d-921b-172a4184caff (only available if report was successful)
|
12490
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12491
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12492
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12493
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12494
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12495
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12496
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12497
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12498
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12499
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12500
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12501
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12502
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12503
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12504
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12505
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12506
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12507
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12508
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12509
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12510
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12511
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12512
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12513
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12514
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12515
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12516
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:55:02 -0700
|
12517
|
+
Processing by WidgetsController#bubble_up as HTML
|
12518
|
+
Completed 500 Internal Server Error in 0ms
|
12519
|
+
[Rollbar] Reporting exception: bubble_up
|
12520
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=848b4725-f666-45aa-8286-97f1d3f04691 (only available if report was successful)
|
12521
|
+
[Rollbar] Exception uuid saved in env: 848b4725-f666-45aa-8286-97f1d3f04691
|
12522
|
+
[Rollbar] Reporting exception: bubble_up
|
12523
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=796982cd-7b6a-45b3-9bf7-47e2ef350bbf (only available if report was successful)
|
12524
|
+
[Rollbar] Exception uuid saved in env: 796982cd-7b6a-45b3-9bf7-47e2ef350bbf
|
12525
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12526
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12527
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12528
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:55:02 -0700
|
12529
|
+
Processing by WidgetsController#catch as HTML
|
12530
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=70951a19-5fe2-426f-affc-7f05cbe94d94 (only available if report was successful)
|
12531
|
+
Completed 200 OK in 22ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
12532
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12533
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12534
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12535
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:55:02 -0700
|
12536
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12537
|
+
Completed 500 Internal Server Error in 0ms
|
12538
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12539
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=1dcbfb92-eed9-484b-88ab-5740ed12c050 (only available if report was successful)
|
12540
|
+
[Rollbar] Exception uuid saved in env: 1dcbfb92-eed9-484b-88ab-5740ed12c050
|
12541
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12542
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=1ce7e501-a539-46ef-b2b0-7d39a14111be (only available if report was successful)
|
12543
|
+
[Rollbar] Exception uuid saved in env: 1ce7e501-a539-46ef-b2b0-7d39a14111be
|
12544
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12545
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12546
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12547
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12548
|
+
Processing by WidgetsController#deep_catch as HTML
|
12549
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=b7afdcfb-e837-4e24-8d1d-926b976cbcb4 (only available if report was successful)
|
12550
|
+
Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12551
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12552
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12553
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12554
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12555
|
+
Processing by WidgetsController#bubble_up as HTML
|
12556
|
+
Completed 500 Internal Server Error in 0ms
|
12557
|
+
[Rollbar] Reporting exception: bubble_up
|
12558
|
+
[Rollbar] Exception uuid saved in env:
|
12559
|
+
[Rollbar] Reporting exception: bubble_up
|
12560
|
+
[Rollbar] Exception uuid saved in env:
|
12561
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12562
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12563
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12564
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12565
|
+
Processing by WidgetsController#catch as HTML
|
12566
|
+
Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12567
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12568
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12569
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12570
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12571
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12572
|
+
Completed 500 Internal Server Error in 0ms
|
12573
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12574
|
+
[Rollbar] Exception uuid saved in env:
|
12575
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12576
|
+
[Rollbar] Exception uuid saved in env:
|
12577
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12578
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12579
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12580
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12581
|
+
Processing by WidgetsController#deep_catch as HTML
|
12582
|
+
Completed 200 OK in 6ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12583
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12584
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12585
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12586
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12587
|
+
Processing by WidgetsController#bubble_up as HTML
|
12588
|
+
Completed 500 Internal Server Error in 0ms
|
12589
|
+
[Rollbar] Reporting exception: bubble_up
|
12590
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=e1ff638e-4e15-496e-9cb7-0b46f18e535c (only available if report was successful)
|
12591
|
+
[Rollbar] Exception uuid saved in env: e1ff638e-4e15-496e-9cb7-0b46f18e535c
|
12592
|
+
[Rollbar] Reporting exception: bubble_up
|
12593
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=4f3401c2-774a-4500-9d37-082b8ed5ebeb (only available if report was successful)
|
12594
|
+
[Rollbar] Exception uuid saved in env: 4f3401c2-774a-4500-9d37-082b8ed5ebeb
|
12595
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12596
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12597
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12598
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12599
|
+
Processing by WidgetsController#catch as HTML
|
12600
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=02ca9417-ae1a-4cdd-9d61-c4de8735787e (only available if report was successful)
|
12601
|
+
Completed 200 OK in 40ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
12602
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12603
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12604
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12605
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12606
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12607
|
+
Completed 500 Internal Server Error in 0ms
|
12608
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12609
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=7fb55c1d-57e9-46cf-a4dc-86c108fff5a8 (only available if report was successful)
|
12610
|
+
[Rollbar] Exception uuid saved in env: 7fb55c1d-57e9-46cf-a4dc-86c108fff5a8
|
12611
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12612
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=51511515-a834-4272-bf52-0c3e7c19a94a (only available if report was successful)
|
12613
|
+
[Rollbar] Exception uuid saved in env: 51511515-a834-4272-bf52-0c3e7c19a94a
|
12614
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12615
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12616
|
+
** [Airbrake] Notifier 3.1.8 ready to catch errors
|
12617
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12618
|
+
Processing by WidgetsController#deep_catch as HTML
|
12619
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12620
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12621
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12622
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12623
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12624
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12625
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12626
|
+
[Rollbar] Details: https://rollbar.com/instance/uuid?uuid=51f4c3f0-58d7-4c92-8b1d-4b7793d8e669 (only available if report was successful)
|
12627
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12628
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12629
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12630
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12631
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12632
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12633
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12634
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12635
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12636
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12637
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12638
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12639
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12640
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12641
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12642
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12643
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12644
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12645
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12646
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12647
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12648
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12649
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12650
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12651
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12652
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12653
|
+
Started GET "/widgets/bubble_up" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12654
|
+
Processing by WidgetsController#bubble_up as HTML
|
12655
|
+
Completed 500 Internal Server Error in 0ms
|
12656
|
+
[Rollbar] Reporting exception: bubble_up
|
12657
|
+
[Rollbar] Exception uuid saved in env:
|
12658
|
+
[Rollbar] Reporting exception: bubble_up
|
12659
|
+
[Rollbar] Exception uuid saved in env:
|
12660
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12661
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12662
|
+
Started GET "/widgets/catch" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12663
|
+
Processing by WidgetsController#catch as HTML
|
12664
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12665
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12666
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12667
|
+
Started GET "/widgets/deep_bubble_up" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12668
|
+
Processing by WidgetsController#deep_bubble_up as HTML
|
12669
|
+
Completed 500 Internal Server Error in 0ms
|
12670
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12671
|
+
[Rollbar] Exception uuid saved in env:
|
12672
|
+
[Rollbar] Reporting exception: deep_bubble_up
|
12673
|
+
[Rollbar] Exception uuid saved in env:
|
12674
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12675
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12676
|
+
Started GET "/widgets/deep_catch" for 127.0.0.1 at 2013-09-19 15:55:03 -0700
|
12677
|
+
Processing by WidgetsController#deep_catch as HTML
|
12678
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
12679
|
+
[1m[35m (0.0ms)[0m rollback transaction
|