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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- Zjc5NmRhZDU4Nzg0NDc1NDYxMTYyZTk2Yzg0MzRmZDI5ODEyMGNhYQ==
4
+ ODYzOTQ5MDRkNTZiMGQxZjc5NjBiNmVhYjhlNzZjMjZmNGJkZDJlYw==
5
5
  data.tar.gz: !binary |-
6
- ZDdiNTU0OTM1YTYzZDQ0NDlhYmE0ZTNhZWVlMjk3ZWIxNDdkY2MyZQ==
7
- !binary "U0hBNTEy":
6
+ ZmYxMjZjOWMyYmIxMDhlOGI1NDBjMWY5Njg1NTM4ZjkxNzI5MDg0Mg==
7
+ SHA512:
8
8
  metadata.gz: !binary |-
9
- ODQzZDBjNmUwMzc2ZmQ3YThlNDY0ODk4NTZmYjJjOWYwNWYwMDNiOTZkOWI1
10
- MWY4ZjZkNmJhN2I4MjEwOWY3ZTExMTc4YTBhMGZmMTNmY2E2ZTI4ZWI0MTJm
11
- NDk4NjkwOTRlMWQwODcxNTg0MzY3MjdiNGQ4NzgxN2U3NjdmYTk=
9
+ ZWUwN2ZjNmM1NmM4YTg0ZThhYzI1ZTBhYjBiNWQ1Njk5YzY2YzQ0MmUzYWNh
10
+ YzExNDgzYjBhNjQxNGU5OGViNTI4YWE2NGNiMzkxMTVhZTM3ZWFiMTMxYmRh
11
+ Mjc5ZTJkMDRmMmQ5NDNmMTc2MGEzODkyMjFlNWIzZTgxYTkzYWY=
12
12
  data.tar.gz: !binary |-
13
- NmExZTJkNzVhMWQ5ODMwMjUzYjcxMzgzMWJmNmI0Mzc2NzNkM2UxYzZjZTky
14
- NjJhOTFhOWM4Yzg0Y2YzNmI1N2M1MjM5YjIxNTA0N2M3NmRiZDZiNWNlMjdi
15
- NGY4M2I4N2MwODIwYjYyYWJlNTc4ZDBjMmYwZTgzY2Q1YmVlYzg=
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. Only allow one provider at a time similar to fog's config (necessary for gem publication)
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.development_environments = settings[:development_environments] if settings[:development_environments]
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.person_username_method = settings[:person_username_method] if settings[:person_username_method].present?
9
- c.person_email_method = settings[:person_email_method] if settings[:person_email_method].present?
10
- c.project_gems = settings[:project_gems] if settings[:project_gems]
11
- c.use_async = !!settings[:use_async]
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
@@ -1,3 +1,3 @@
1
1
  module SmokeDetector
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -8,7 +8,7 @@ module SmokeDetector
8
8
  provider: :rollbar,
9
9
  api_key: 'fake_rollbar',
10
10
  settings: {
11
- async: true
11
+ use_async: true
12
12
  }
13
13
  },
14
14
  {
@@ -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
   (0.0ms) rollback transaction
11307
+ Connecting to database specified by database.yml
11308
+  (0.3ms) begin transaction
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
+  (0.1ms) rollback transaction
11314
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11323
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11332
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11337
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11343
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11355
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11367
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11374
+  (0.0ms) begin transaction
11375
+  (0.0ms) rollback transaction
11376
+  (0.0ms) begin transaction
11377
+  (0.0ms) rollback transaction
11378
+  (0.0ms) begin transaction
11379
+  (0.0ms) rollback transaction
11380
+  (0.0ms) begin transaction
11381
+  (0.0ms) rollback transaction
11382
+  (0.0ms) begin transaction
11383
+  (0.0ms) rollback transaction
11384
+  (0.0ms) begin transaction
11385
+  (0.0ms) rollback transaction
11386
+  (0.0ms) begin transaction
11387
+  (0.0ms) rollback transaction
11388
+  (0.0ms) begin transaction
11389
+  (0.0ms) rollback transaction
11390
+  (0.0ms) begin transaction
11391
+  (0.0ms) rollback transaction
11392
+  (0.0ms) begin transaction
11393
+  (0.0ms) rollback transaction
11394
+  (0.0ms) begin transaction
11395
+  (0.0ms) rollback transaction
11396
+  (0.0ms) begin transaction
11397
+  (0.0ms) rollback transaction
11398
+  (0.0ms) begin transaction
11399
+  (0.0ms) rollback transaction
11400
+  (0.0ms) begin transaction
11401
+  (0.0ms) rollback transaction
11402
+  (0.0ms) begin transaction
11403
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=00baa8b4-a2ed-4784-8576-158011bc1ef1
11404
+  (0.0ms) rollback transaction
11405
+  (0.0ms) begin transaction
11406
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=448b1a86-023e-455f-a863-e90c3225b6db
11407
+  (0.0ms) rollback transaction
11408
+  (0.0ms) begin transaction
11409
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11410
+  (0.0ms) rollback transaction
11411
+  (0.0ms) begin transaction
11412
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11413
+  (0.0ms) rollback transaction
11414
+  (0.0ms) begin transaction
11415
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11416
+  (0.0ms) rollback transaction
11417
+  (0.0ms) begin transaction
11418
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11419
+  (0.0ms) rollback transaction
11420
+  (0.0ms) begin transaction
11421
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11422
+  (0.0ms) rollback transaction
11423
+  (0.0ms) begin transaction
11424
+  (0.0ms) rollback transaction
11425
+  (0.0ms) begin transaction
11426
+  (0.0ms) rollback transaction
11427
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11433
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11443
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11453
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11459
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11466
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11478
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11490
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11497
+  (0.0ms) begin transaction
11498
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11499
+  (0.0ms) rollback transaction
11500
+  (0.0ms) begin transaction
11501
+  (0.0ms) rollback transaction
11502
+ Connecting to database specified by database.yml
11503
+  (0.2ms) begin transaction
11504
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11505
+  (0.0ms) rollback transaction
11506
+  (0.0ms) begin transaction
11507
+  (0.0ms) rollback transaction
11508
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11518
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11524
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11534
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11540
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11552
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11559
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11571
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11578
+  (0.0ms) begin transaction
11579
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=15c92caf-8c98-45bd-9391-338b495ae490 (only available if report was successful)
11580
+  (0.0ms) rollback transaction
11581
+  (0.0ms) begin transaction
11582
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11583
+  (0.0ms) rollback transaction
11584
+  (0.0ms) begin transaction
11585
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11586
+  (0.0ms) rollback transaction
11587
+  (0.0ms) begin transaction
11588
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11589
+  (0.0ms) rollback transaction
11590
+  (0.0ms) begin transaction
11591
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11592
+  (0.0ms) rollback transaction
11593
+  (0.0ms) begin transaction
11594
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11595
+  (0.0ms) rollback transaction
11596
+  (0.0ms) begin transaction
11597
+  (0.0ms) rollback transaction
11598
+  (0.0ms) begin transaction
11599
+  (0.0ms) rollback transaction
11600
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11609
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11614
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11623
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11628
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11640
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11647
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11659
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11665
+  (0.0ms) begin transaction
11666
+  (0.0ms) rollback transaction
11667
+  (0.0ms) begin transaction
11668
+  (0.0ms) rollback transaction
11669
+  (0.0ms) begin transaction
11670
+  (0.0ms) rollback transaction
11671
+  (0.0ms) begin transaction
11672
+  (0.0ms) rollback transaction
11673
+  (0.0ms) begin transaction
11674
+  (0.0ms) rollback transaction
11675
+  (0.0ms) begin transaction
11676
+  (0.0ms) rollback transaction
11677
+  (0.0ms) begin transaction
11678
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=4310c2b9-b738-4724-a6eb-b454bf2e85dd (only available if report was successful)
11679
+  (0.0ms) rollback transaction
11680
+  (0.0ms) begin transaction
11681
+  (0.0ms) rollback transaction
11682
+  (0.0ms) begin transaction
11683
+  (0.0ms) rollback transaction
11684
+  (0.0ms) begin transaction
11685
+  (0.0ms) rollback transaction
11686
+  (0.0ms) begin transaction
11687
+  (0.0ms) rollback transaction
11688
+  (0.0ms) begin transaction
11689
+  (0.0ms) rollback transaction
11690
+  (0.0ms) begin transaction
11691
+  (0.0ms) rollback transaction
11692
+  (0.0ms) begin transaction
11693
+  (0.0ms) rollback transaction
11694
+  (0.0ms) begin transaction
11695
+  (0.0ms) rollback transaction
11696
+ Connecting to database specified by database.yml
11697
+  (0.2ms) begin transaction
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
+  (0.0ms) rollback transaction
11703
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11712
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11721
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11726
+  (0.0ms) begin transaction
11727
+  (0.0ms) rollback transaction
11728
+  (0.0ms) begin transaction
11729
+  (0.0ms) rollback transaction
11730
+  (0.0ms) begin transaction
11731
+  (0.0ms) rollback transaction
11732
+  (0.0ms) begin transaction
11733
+  (0.0ms) rollback transaction
11734
+  (0.0ms) begin transaction
11735
+  (0.0ms) rollback transaction
11736
+  (0.0ms) begin transaction
11737
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=dcf9b643-6f1c-450f-ac1e-27ec9a0354d1 (only available if report was successful)
11738
+  (0.0ms) rollback transaction
11739
+  (0.0ms) begin transaction
11740
+  (0.0ms) rollback transaction
11741
+  (0.0ms) begin transaction
11742
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11743
+  (0.0ms) rollback transaction
11744
+  (0.0ms) begin transaction
11745
+  (0.0ms) rollback transaction
11746
+  (0.0ms) begin transaction
11747
+  (0.0ms) rollback transaction
11748
+  (0.0ms) begin transaction
11749
+  (0.0ms) rollback transaction
11750
+  (0.0ms) begin transaction
11751
+  (0.0ms) rollback transaction
11752
+  (0.0ms) begin transaction
11753
+  (0.0ms) rollback transaction
11754
+  (0.0ms) begin transaction
11755
+  (0.0ms) rollback transaction
11756
+  (0.0ms) begin transaction
11757
+  (0.0ms) rollback transaction
11758
+  (0.0ms) begin transaction
11759
+  (0.0ms) rollback transaction
11760
+  (0.0ms) begin transaction
11761
+  (0.0ms) rollback transaction
11762
+  (0.0ms) begin transaction
11763
+  (0.0ms) rollback transaction
11764
+  (0.0ms) begin transaction
11765
+  (0.0ms) rollback transaction
11766
+  (0.0ms) begin transaction
11767
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11768
+  (0.0ms) rollback transaction
11769
+  (0.0ms) begin transaction
11770
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11771
+  (0.0ms) rollback transaction
11772
+  (0.0ms) begin transaction
11773
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11774
+  (0.0ms) rollback transaction
11775
+  (0.0ms) begin transaction
11776
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11777
+  (0.0ms) rollback transaction
11778
+  (0.0ms) begin transaction
11779
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11780
+  (0.0ms) rollback transaction
11781
+  (0.0ms) begin transaction
11782
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=98604aee-07a2-408a-8859-4e1bc08e95ed (only available if report was successful)
11783
+  (0.0ms) rollback transaction
11784
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11790
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11800
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11810
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11816
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11823
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11835
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11847
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11854
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11861
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11873
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11885
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11891
+ Connecting to database specified by database.yml
11892
+  (0.2ms) begin transaction
11893
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11894
+  (0.0ms) rollback transaction
11895
+  (0.0ms) begin transaction
11896
+  (0.0ms) rollback transaction
11897
+  (0.0ms) begin transaction
11898
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11899
+  (0.0ms) rollback transaction
11900
+  (0.0ms) begin transaction
11901
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11902
+  (0.0ms) rollback transaction
11903
+  (0.0ms) begin transaction
11904
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11905
+  (0.0ms) rollback transaction
11906
+  (0.0ms) begin transaction
11907
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=5b8be71e-6448-434a-ac0e-1a538be9a54d (only available if report was successful)
11908
+  (0.0ms) rollback transaction
11909
+  (0.0ms) begin transaction
11910
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11911
+  (0.0ms) rollback transaction
11912
+  (0.0ms) begin transaction
11913
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
11914
+  (0.0ms) rollback transaction
11915
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
11927
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11933
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11940
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11952
+  (0.0ms) begin transaction
11953
+  (0.0ms) rollback transaction
11954
+  (0.0ms) begin transaction
11955
+  (0.0ms) rollback transaction
11956
+  (0.0ms) begin transaction
11957
+  (0.0ms) rollback transaction
11958
+  (0.0ms) begin transaction
11959
+  (0.0ms) rollback transaction
11960
+  (0.0ms) begin transaction
11961
+  (0.0ms) rollback transaction
11962
+  (0.0ms) begin transaction
11963
+  (0.0ms) rollback transaction
11964
+  (0.0ms) begin transaction
11965
+  (0.0ms) rollback transaction
11966
+  (0.0ms) begin transaction
11967
+  (0.0ms) rollback transaction
11968
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11978
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
11984
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
11990
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12000
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12012
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12019
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12026
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12038
+  (0.0ms) begin transaction
12039
+  (0.0ms) rollback transaction
12040
+  (0.0ms) begin transaction
12041
+  (0.0ms) rollback transaction
12042
+  (0.0ms) begin transaction
12043
+  (0.0ms) rollback transaction
12044
+  (0.0ms) begin transaction
12045
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=011b7a35-b09d-48c5-8bee-3b9e3d73af45 (only available if report was successful)
12046
+  (0.0ms) rollback transaction
12047
+  (0.0ms) begin transaction
12048
+  (0.0ms) rollback transaction
12049
+  (0.0ms) begin transaction
12050
+  (0.0ms) rollback transaction
12051
+  (0.0ms) begin transaction
12052
+  (0.0ms) rollback transaction
12053
+  (0.0ms) begin transaction
12054
+  (0.0ms) rollback transaction
12055
+  (0.0ms) begin transaction
12056
+  (0.0ms) rollback transaction
12057
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12066
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12071
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12076
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12085
+ Connecting to database specified by database.yml
12086
+  (0.3ms) begin transaction
12087
+  (0.0ms) rollback transaction
12088
+  (0.0ms) begin transaction
12089
+  (0.0ms) rollback transaction
12090
+  (0.0ms) begin transaction
12091
+  (0.0ms) rollback transaction
12092
+  (0.0ms) begin transaction
12093
+  (0.0ms) rollback transaction
12094
+  (0.0ms) begin transaction
12095
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12096
+  (0.0ms) rollback transaction
12097
+  (0.0ms) begin transaction
12098
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12099
+  (0.0ms) rollback transaction
12100
+  (0.0ms) begin transaction
12101
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12102
+  (0.0ms) rollback transaction
12103
+  (0.0ms) begin transaction
12104
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12105
+  (0.0ms) rollback transaction
12106
+  (0.0ms) begin transaction
12107
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12108
+  (0.0ms) rollback transaction
12109
+  (0.0ms) begin transaction
12110
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=fb5fc801-9009-4238-bbdb-d5967445386b (only available if report was successful)
12111
+  (0.0ms) rollback transaction
12112
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12118
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12127
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12136
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12141
+  (0.0ms) begin transaction
12142
+  (0.0ms) rollback transaction
12143
+  (0.0ms) begin transaction
12144
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12145
+  (0.0ms) rollback transaction
12146
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12153
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12165
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12177
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12184
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12190
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12200
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12210
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12216
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12223
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12235
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12247
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12253
+  (0.0ms) begin transaction
12254
+  (0.0ms) rollback transaction
12255
+  (0.0ms) begin transaction
12256
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=e8683129-2dc4-4ed8-9638-2d8d3a37ecbf (only available if report was successful)
12257
+  (0.0ms) rollback transaction
12258
+  (0.0ms) begin transaction
12259
+  (0.0ms) rollback transaction
12260
+  (0.0ms) begin transaction
12261
+  (0.0ms) rollback transaction
12262
+  (0.0ms) begin transaction
12263
+  (0.0ms) rollback transaction
12264
+  (0.0ms) begin transaction
12265
+  (0.0ms) rollback transaction
12266
+  (0.0ms) begin transaction
12267
+  (0.0ms) rollback transaction
12268
+  (0.0ms) begin transaction
12269
+  (0.0ms) rollback transaction
12270
+  (0.0ms) begin transaction
12271
+  (0.0ms) rollback transaction
12272
+  (0.0ms) begin transaction
12273
+  (0.0ms) rollback transaction
12274
+  (0.0ms) begin transaction
12275
+  (0.0ms) rollback transaction
12276
+  (0.0ms) begin transaction
12277
+  (0.0ms) rollback transaction
12278
+  (0.0ms) begin transaction
12279
+  (0.0ms) rollback transaction
12280
+  (0.0ms) begin transaction
12281
+  (0.0ms) rollback transaction
12282
+  (0.0ms) begin transaction
12283
+  (0.0ms) rollback transaction
12284
+ Connecting to database specified by database.yml
12285
+  (0.2ms) begin transaction
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
+  (0.0ms) rollback transaction
12295
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12305
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12311
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12317
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12329
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12341
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12348
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12355
+  (0.0ms) begin transaction
12356
+  (0.0ms) rollback transaction
12357
+  (0.0ms) begin transaction
12358
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=66a03ca2-861e-4ea2-8d07-6c6f522bebd6 (only available if report was successful)
12359
+  (0.0ms) rollback transaction
12360
+  (0.0ms) begin transaction
12361
+  (0.0ms) rollback transaction
12362
+  (0.0ms) begin transaction
12363
+  (0.0ms) rollback transaction
12364
+  (0.0ms) begin transaction
12365
+  (0.0ms) rollback transaction
12366
+  (0.0ms) begin transaction
12367
+  (0.0ms) rollback transaction
12368
+  (0.0ms) begin transaction
12369
+  (0.0ms) rollback transaction
12370
+  (0.0ms) begin transaction
12371
+  (0.0ms) rollback transaction
12372
+  (0.0ms) begin transaction
12373
+  (0.0ms) rollback transaction
12374
+  (0.0ms) begin transaction
12375
+  (0.1ms) rollback transaction
12376
+  (0.0ms) begin transaction
12377
+  (0.0ms) rollback transaction
12378
+  (0.0ms) begin transaction
12379
+  (0.0ms) rollback transaction
12380
+  (0.0ms) begin transaction
12381
+  (0.0ms) rollback transaction
12382
+  (0.0ms) begin transaction
12383
+  (0.0ms) rollback transaction
12384
+  (0.0ms) begin transaction
12385
+  (0.0ms) rollback transaction
12386
+  (0.0ms) begin transaction
12387
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12388
+  (0.0ms) rollback transaction
12389
+  (0.0ms) begin transaction
12390
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12391
+  (0.0ms) rollback transaction
12392
+  (0.0ms) begin transaction
12393
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12394
+  (0.0ms) rollback transaction
12395
+  (0.0ms) begin transaction
12396
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12397
+  (0.0ms) rollback transaction
12398
+  (0.0ms) begin transaction
12399
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12400
+  (0.0ms) rollback transaction
12401
+  (0.0ms) begin transaction
12402
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=1778ee50-2c26-411f-ad5a-1d7f71255c12 (only available if report was successful)
12403
+  (0.0ms) rollback transaction
12404
+  (0.0ms) begin transaction
12405
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12406
+  (0.0ms) rollback transaction
12407
+  (0.0ms) begin transaction
12408
+  (0.0ms) rollback transaction
12409
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12418
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12427
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12432
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
12437
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12449
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12461
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12468
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12474
+  (0.0ms) begin transaction
12475
+  (0.0ms) rollback transaction
12476
+  (0.0ms) begin transaction
12477
+  (0.0ms) rollback transaction
12478
+  (0.0ms) begin transaction
12479
+  (0.1ms) rollback transaction
12480
+  (0.0ms) begin transaction
12481
+  (0.0ms) rollback transaction
12482
+ Connecting to database specified by database.yml
12483
+  (0.2ms) begin transaction
12484
+  (0.0ms) rollback transaction
12485
+  (0.0ms) begin transaction
12486
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12487
+  (0.0ms) rollback transaction
12488
+  (0.0ms) begin transaction
12489
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=72f76fdd-09c0-4d1d-921b-172a4184caff (only available if report was successful)
12490
+  (0.0ms) rollback transaction
12491
+  (0.0ms) begin transaction
12492
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12493
+  (0.0ms) rollback transaction
12494
+  (0.1ms) begin transaction
12495
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12496
+  (0.0ms) rollback transaction
12497
+  (0.0ms) begin transaction
12498
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12499
+  (0.0ms) rollback transaction
12500
+  (0.0ms) begin transaction
12501
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12502
+  (0.0ms) rollback transaction
12503
+  (0.0ms) begin transaction
12504
+ ** [Airbrake] Notifier 3.1.8 ready to catch errors
12505
+  (0.0ms) rollback transaction
12506
+  (0.0ms) begin transaction
12507
+  (0.0ms) rollback transaction
12508
+  (0.0ms) begin transaction
12509
+  (0.0ms) rollback transaction
12510
+  (0.0ms) begin transaction
12511
+  (0.0ms) rollback transaction
12512
+  (0.0ms) begin transaction
12513
+  (0.0ms) rollback transaction
12514
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12526
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12533
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12545
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12552
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12562
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12568
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12578
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12584
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12596
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12603
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12615
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12621
+  (0.0ms) begin transaction
12622
+  (0.0ms) rollback transaction
12623
+  (0.0ms) begin transaction
12624
+  (0.0ms) rollback transaction
12625
+  (0.0ms) begin transaction
12626
+ [Rollbar] Details: https://rollbar.com/instance/uuid?uuid=51f4c3f0-58d7-4c92-8b1d-4b7793d8e669 (only available if report was successful)
12627
+  (0.0ms) rollback transaction
12628
+  (0.0ms) begin transaction
12629
+  (0.0ms) rollback transaction
12630
+  (0.0ms) begin transaction
12631
+  (0.0ms) rollback transaction
12632
+  (0.0ms) begin transaction
12633
+  (0.0ms) rollback transaction
12634
+  (0.0ms) begin transaction
12635
+  (0.0ms) rollback transaction
12636
+  (0.0ms) begin transaction
12637
+  (0.0ms) rollback transaction
12638
+  (0.0ms) begin transaction
12639
+  (0.0ms) rollback transaction
12640
+  (0.0ms) begin transaction
12641
+  (0.0ms) rollback transaction
12642
+  (0.0ms) begin transaction
12643
+  (0.0ms) rollback transaction
12644
+  (0.0ms) begin transaction
12645
+  (0.0ms) rollback transaction
12646
+  (0.0ms) begin transaction
12647
+  (0.0ms) rollback transaction
12648
+  (0.0ms) begin transaction
12649
+  (0.0ms) rollback transaction
12650
+  (0.0ms) begin transaction
12651
+  (0.0ms) rollback transaction
12652
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12661
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12666
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
12675
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction