sitepress-rails 0.1.26 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 6ef11daeb9671a2da502b1c03b22c1a9e95ea46e
4
- data.tar.gz: 592f51b568adf7f17b2e3d4213d70573b8a5403d
2
+ SHA256:
3
+ metadata.gz: '017964a6b834e56e38daccc09e5fd0c1b348e992cdcc364a4171878f14d5f2ff'
4
+ data.tar.gz: 2661db0afdd1e579aa8553af8e698971aac74b1ec0133cf10bab646378fa7e42
5
5
  SHA512:
6
- metadata.gz: e3653dd3eafa0b3bc4d4521880fd86089aad5131c7f8461e92396274426e1714ad545f79bcaa10a8dbc93d3758f98b4c7a698f669d3dbfb28f9d5b469aeab364
7
- data.tar.gz: a0b3f0bacc8979d698fde6a4c40a9c09985b1923a20a349d218202c9ee1aaf138bf2d762bbb3da65760cea1ae064c56186c6f6976986cfd8010d09d432a94084
6
+ metadata.gz: 4301aca15a042853bbe39a53f9530119e82fcb096284c35855fe3d657c4cd04243ee2b4e715532174464a60636481c1d67d7a27f99e3e31c8359547b8e140338
7
+ data.tar.gz: e7cb83e9ad10139e84c2fb1fad36f237f37a953021044ebb476c03d4b7cc44e39bf6ca827478bd8e10b4789f68aaaa71c8037fe15fb12c4b31a04e6247cfa661
data/README.md CHANGED
@@ -22,10 +22,16 @@ Then mount the engine into your `config/routes.rb` file:
22
22
  mount Sitepress::Engine => "/"
23
23
  ```
24
24
 
25
- Then add pages to the `app/views/pages` directory:
25
+ Create the `app/content/pages` in your rails project:
26
26
 
27
27
  ```bash
28
- $ echo "<h1>Hello</h1><p>It is <%= Time.now %> o'clock</p>" > app/views/pages/hello.html.erb
28
+ $ mkdir -p app/content/pages
29
+ ```
30
+
31
+ Then add pages to the `app/content/pages` directory:
32
+
33
+ ```bash
34
+ $ echo "<h1>Hello</h1><p>It is <%= Time.now %> o'clock</p>" > app/content/pages/hello.html.erb
29
35
  ```
30
36
 
31
37
  Point your browser to `http://127.0.0.1:3000/hello` and if all went well you should see the page you just created.
@@ -3,6 +3,10 @@ module Sitepress
3
3
  # Sitepress::SiteController, but may be included into other controllers for static
4
4
  # page behavior.
5
5
  module SitePages
6
+ # Rails 5 requires a format to be given to the private layout method
7
+ # to return the path to the layout.
8
+ DEFAULT_PAGE_RAILS_FORMATS = [:html].freeze
9
+
6
10
  extend ActiveSupport::Concern
7
11
 
8
12
  included do
@@ -12,13 +16,19 @@ module Sitepress
12
16
  end
13
17
 
14
18
  def show
15
- render inline: current_page.body,
16
- type: current_page.asset.template_extensions.last,
17
- layout: current_page.data.fetch("layout", controller_layout),
18
- content_type: current_page.mime_type.to_s
19
+ render_page current_page
19
20
  end
20
21
 
21
22
  protected
23
+ def render_page(page)
24
+ with_sitepress_render_cache do
25
+ render inline: page.body,
26
+ type: page.asset.template_extensions.last,
27
+ layout: page.data.fetch("layout", controller_layout),
28
+ content_type: page.mime_type.to_s
29
+ end
30
+ end
31
+
22
32
  def current_page
23
33
  @_current_page ||= find_resource
24
34
  end
@@ -50,14 +60,53 @@ module Sitepress
50
60
  get params[:resource_path]
51
61
  end
52
62
 
53
- # Returns the current layout for the inline Sitepress renderer.
63
+ # When development environments disable the cache, we still want to turn it
64
+ # on during rendering so that view doesn't rebuild the site on each call.
65
+ def with_sitepress_render_cache(&block)
66
+ cache_resources = site.cache_resources
67
+ begin
68
+ site.cache_resources = true
69
+ yield
70
+ ensure
71
+ site.cache_resources = cache_resources
72
+ site.clear_resources_cache unless site.cache_resources
73
+ end
74
+ end
75
+
76
+ # Returns the current layout for the inline Sitepress renderer. This is
77
+ # exposed via some really convoluted private methods inside of the various
78
+ # versions of Rails, so I try my best to hack out the path to the layout below.
54
79
  def controller_layout
55
- layout = self.send(:_layout)
56
- if layout.instance_of? String
80
+ private_layout_method = self.method(:_layout)
81
+ layout =
82
+ if Rails.version >= "6"
83
+ private_layout_method.call lookup_context, current_page_rails_formats
84
+ elsif Rails.version >= "5"
85
+ private_layout_method.call current_page_rails_formats
86
+ else
87
+ private_layout_method.call
88
+ end
89
+
90
+ if layout.instance_of? String # Rails 4 and 5 return a string from above.
57
91
  layout
58
- else
92
+ else # Rails 3 and older return an object that gives us a file name
59
93
  File.basename(layout.identifier).split('.').first
60
94
  end
61
95
  end
96
+
97
+ # Rails 5 requires an extension, like `:html`, to resolve a template. This
98
+ # method returns the intersection of the formats Rails supports from Mime::Types
99
+ # and the current page's node formats. If nothing intersects, HTML is returned
100
+ # as a default.
101
+ def current_page_rails_formats
102
+ extensions = current_page.node.formats.extensions
103
+ supported_extensions = extensions & Mime::EXTENSION_LOOKUP.keys
104
+
105
+ if supported_extensions.empty?
106
+ DEFAULT_PAGE_RAILS_FORMATS
107
+ else
108
+ supported_extensions.map?(&:to_sym)
109
+ end
110
+ end
62
111
  end
63
112
  end
@@ -6,12 +6,6 @@ module Sitepress
6
6
  app.paths["app/assets"].push config.site.root_path.join("assets")
7
7
  app.paths["app/views"].push config.site.root_path
8
8
  end
9
-
10
- # Setup concerns paths for Rails 4 (doesn't automatically populate)
11
- concerns_path = "app/controllers/concerns"
12
- unless app.paths.keys.include?(concerns_path)
13
- app.paths.add(concerns_path)
14
- end
15
9
  end
16
10
 
17
11
  initializer "sitepress.configure" do |app|
@@ -20,9 +14,5 @@ module Sitepress
20
14
  config.cache_resources = app.config.cache_classes
21
15
  end
22
16
  end
23
-
24
- initializer "sitepress.middleware" do |app|
25
- app.middleware.use Sitepress::Middleware::RequestCache, site: Sitepress.site
26
- end
27
17
  end
28
18
  end
@@ -6,7 +6,8 @@ module Sitepress
6
6
  # Store in ./app/content by default.
7
7
  DEFAULT_SITE_ROOT = "app/content".freeze
8
8
 
9
- attr_accessor :site, :parent_engine, :routes, :cache_resources
9
+ attr_accessor :routes
10
+ attr_writer :site, :parent_engine
10
11
 
11
12
  # Delegates configuration points into the Sitepress site.
12
13
  extend Forwardable
@@ -0,0 +1,41 @@
1
+ require "forwardable"
2
+
3
+ module Sitepress
4
+ # Configuration object for rails application.
5
+ class RailsConfiguration
6
+ # Store in ./app/content by default.
7
+ DEFAULT_SITE_ROOT = "app/content".freeze
8
+
9
+ <<<<<<< HEAD
10
+ attr_accessor :routes, :cache_resources
11
+ =======
12
+ attr_accessor :routes
13
+ attr_writer :site, :parent_engine
14
+ >>>>>>> Remove redudant method definitions
15
+
16
+ # Delegates configuration points into the Sitepress site.
17
+ extend Forwardable
18
+ def_delegators :site, :cache_resources, :cache_resources=, :cache_resources?
19
+
20
+ # Set defaults.
21
+ def initialize
22
+ self.routes = true
23
+ end
24
+
25
+ def parent_engine
26
+ @parent_engine ||= Rails.application
27
+ end
28
+
29
+ def site
30
+ @site ||= Site.new(root_path: default_root).tap do |site|
31
+ site.resources_pipeline << Extensions::PartialsRemover.new
32
+ site.resources_pipeline << Extensions::RailsRequestPaths.new
33
+ end
34
+ end
35
+
36
+ private
37
+ def default_root
38
+ Rails.root.join(DEFAULT_SITE_ROOT)
39
+ end
40
+ end
41
+ end
@@ -1,6 +1,8 @@
1
1
  require_relative 'boot'
2
2
 
3
- require 'rails/all'
3
+ require "action_controller/railtie"
4
+ require "action_mailer/railtie"
5
+ require "sprockets/railtie"
4
6
 
5
7
  Bundler.require(*Rails.groups)
6
8
  require "sitepress-rails"
@@ -19,7 +19,7 @@ Rails.application.configure do
19
19
  config.active_support.deprecation = :log
20
20
 
21
21
  # Raise an error on page load if there are pending migrations.
22
- config.active_record.migration_error = :page_load
22
+ # config.active_record.migration_error = :page_load
23
23
 
24
24
  # Debug mode disables concatenation and preprocessing of assets.
25
25
  # This option may cause significant delays in view rendering with a large
@@ -74,5 +74,5 @@ Rails.application.configure do
74
74
  end
75
75
 
76
76
  # Do not dump schema after migrations.
77
- config.active_record.dump_schema_after_migration = false
77
+ # config.active_record.dump_schema_after_migration = false
78
78
  end
@@ -390,3 +390,1039 @@ I, [2016-11-04T14:26:51.740173 #33176] INFO -- : Processing by Sitepress::SiteC
390
390
  I, [2016-11-04T14:26:51.740236 #33176] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
391
391
  I, [2016-11-04T14:27:02.514913 #33176] INFO -- : Rendered inline template within layouts/application (8493.2ms)
392
392
  I, [2016-11-04T14:27:02.515947 #33176] INFO -- : Completed 200 OK in 10776ms (Views: 8494.3ms | ActiveRecord: 0.0ms)
393
+ I, [2017-03-08T21:26:42.038660 #8168] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 21:26:42 -0800
394
+ I, [2017-03-08T21:26:42.058367 #8168] INFO -- : Processing by BaselineController#show as HTML
395
+ I, [2017-03-08T21:26:42.066647 #8168] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
396
+ I, [2017-03-08T21:26:42.074361 #8168] INFO -- : Completed 200 OK in 15ms (Views: 15.3ms | ActiveRecord: 0.0ms)
397
+ I, [2017-03-08T21:26:42.076634 #8168] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 21:26:42 -0800
398
+ I, [2017-03-08T21:26:42.077381 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
399
+ I, [2017-03-08T21:26:42.077440 #8168] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
400
+ I, [2017-03-08T21:26:43.391775 #8168] INFO -- : Rendered inline template within layouts/application (1309.0ms)
401
+ I, [2017-03-08T21:26:43.395576 #8168] INFO -- : Completed 200 OK in 1318ms (Views: 1314.6ms | ActiveRecord: 0.0ms)
402
+ I, [2017-03-08T21:26:43.399057 #8168] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 21:26:43 -0800
403
+ I, [2017-03-08T21:26:43.399540 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
404
+ I, [2017-03-08T21:26:43.399568 #8168] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
405
+ I, [2017-03-08T21:26:43.605272 #8168] INFO -- : Rendered inline template within layouts/application (205.2ms)
406
+ I, [2017-03-08T21:26:43.607470 #8168] INFO -- : Completed 200 OK in 208ms (Views: 207.5ms | ActiveRecord: 0.0ms)
407
+ I, [2017-03-08T21:26:43.769832 #8168] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 21:26:43 -0800
408
+ I, [2017-03-08T21:26:43.770561 #8168] INFO -- : Processing by BaselineController#show as HTML
409
+ I, [2017-03-08T21:26:43.771063 #8168] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
410
+ I, [2017-03-08T21:26:43.772226 #8168] INFO -- : Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
411
+ I, [2017-03-08T21:26:43.842965 #8168] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 21:26:43 -0800
412
+ I, [2017-03-08T21:26:43.843533 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
413
+ I, [2017-03-08T21:26:43.843575 #8168] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
414
+ I, [2017-03-08T21:26:44.015414 #8168] INFO -- : Rendered inline template within layouts/application (171.3ms)
415
+ I, [2017-03-08T21:26:44.016602 #8168] INFO -- : Completed 200 OK in 173ms (Views: 172.7ms | ActiveRecord: 0.0ms)
416
+ I, [2017-03-08T21:26:44.079338 #8168] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 21:26:44 -0800
417
+ I, [2017-03-08T21:26:44.079835 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
418
+ I, [2017-03-08T21:26:44.079866 #8168] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
419
+ I, [2017-03-08T21:26:44.216008 #8168] INFO -- : Rendered inline template within layouts/application (135.8ms)
420
+ I, [2017-03-08T21:26:44.217761 #8168] INFO -- : Completed 200 OK in 138ms (Views: 137.6ms | ActiveRecord: 0.0ms)
421
+ I, [2017-03-08T21:26:47.059366 #8168] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 21:26:47 -0800
422
+ I, [2017-03-08T21:26:47.059896 #8168] INFO -- : Processing by BaselineController#show as HTML
423
+ I, [2017-03-08T21:26:47.060719 #8168] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.5ms)
424
+ I, [2017-03-08T21:26:47.061149 #8168] INFO -- : Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
425
+ I, [2017-03-08T21:26:47.063290 #8168] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 21:26:47 -0800
426
+ I, [2017-03-08T21:26:48.774180 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
427
+ I, [2017-03-08T21:26:48.774282 #8168] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
428
+ I, [2017-03-08T21:26:50.269667 #8168] INFO -- : Rendered inline template within layouts/application (1494.5ms)
429
+ I, [2017-03-08T21:26:50.271597 #8168] INFO -- : Completed 200 OK in 1497ms (Views: 1496.5ms | ActiveRecord: 0.0ms)
430
+ I, [2017-03-08T21:26:50.274870 #8168] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 21:26:50 -0800
431
+ I, [2017-03-08T21:26:51.743544 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
432
+ I, [2017-03-08T21:26:51.743610 #8168] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
433
+ I, [2017-03-08T21:26:53.277802 #8168] INFO -- : Rendered inline template within layouts/application (1533.5ms)
434
+ I, [2017-03-08T21:26:53.279723 #8168] INFO -- : Completed 200 OK in 1536ms (Views: 1535.6ms | ActiveRecord: 0.0ms)
435
+ I, [2017-03-08T21:26:56.642325 #8168] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 21:26:56 -0800
436
+ I, [2017-03-08T21:26:56.643001 #8168] INFO -- : Processing by BaselineController#show as HTML
437
+ I, [2017-03-08T21:26:56.643427 #8168] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
438
+ I, [2017-03-08T21:26:56.643882 #8168] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
439
+ I, [2017-03-08T21:26:56.765558 #8168] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 21:26:56 -0800
440
+ I, [2017-03-08T21:26:57.988911 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
441
+ I, [2017-03-08T21:26:57.988969 #8168] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
442
+ I, [2017-03-08T21:26:59.335620 #8168] INFO -- : Rendered inline template within layouts/application (1345.8ms)
443
+ I, [2017-03-08T21:26:59.338925 #8168] INFO -- : Completed 200 OK in 1350ms (Views: 1349.3ms | ActiveRecord: 0.0ms)
444
+ I, [2017-03-08T21:26:59.494039 #8168] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 21:26:59 -0800
445
+ I, [2017-03-08T21:27:00.902077 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
446
+ I, [2017-03-08T21:27:00.902152 #8168] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
447
+ I, [2017-03-08T21:27:02.248228 #8168] INFO -- : Rendered inline template within layouts/application (1345.4ms)
448
+ I, [2017-03-08T21:27:02.249696 #8168] INFO -- : Completed 200 OK in 1347ms (Views: 1346.9ms | ActiveRecord: 0.0ms)
449
+ I, [2017-03-08T22:47:55.604794 #12879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 22:47:55 -0800
450
+ I, [2017-03-08T22:47:55.627359 #12879] INFO -- : Processing by BaselineController#show as HTML
451
+ I, [2017-03-08T22:47:55.636452 #12879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
452
+ I, [2017-03-08T22:47:55.645366 #12879] INFO -- : Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms)
453
+ I, [2017-03-08T22:47:55.647562 #12879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 22:47:55 -0800
454
+ I, [2017-03-08T22:47:55.648393 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
455
+ I, [2017-03-08T22:47:55.648430 #12879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
456
+ I, [2017-03-08T22:47:56.969401 #12879] INFO -- : Rendered inline template within layouts/application (1315.5ms)
457
+ I, [2017-03-08T22:47:56.971830 #12879] INFO -- : Completed 200 OK in 1323ms (Views: 1320.1ms | ActiveRecord: 0.0ms)
458
+ I, [2017-03-08T22:47:56.975085 #12879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 22:47:56 -0800
459
+ I, [2017-03-08T22:47:56.975522 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
460
+ I, [2017-03-08T22:47:56.975551 #12879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
461
+ I, [2017-03-08T22:47:57.213552 #12879] INFO -- : Rendered inline template within layouts/application (237.5ms)
462
+ I, [2017-03-08T22:47:57.216279 #12879] INFO -- : Completed 200 OK in 241ms (Views: 240.4ms | ActiveRecord: 0.0ms)
463
+ I, [2017-03-08T22:47:57.413044 #12879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 22:47:57 -0800
464
+ I, [2017-03-08T22:47:57.413647 #12879] INFO -- : Processing by BaselineController#show as HTML
465
+ I, [2017-03-08T22:47:57.414041 #12879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
466
+ I, [2017-03-08T22:47:57.414479 #12879] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
467
+ I, [2017-03-08T22:47:57.490869 #12879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 22:47:57 -0800
468
+ I, [2017-03-08T22:47:57.492158 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
469
+ I, [2017-03-08T22:47:57.492212 #12879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
470
+ I, [2017-03-08T22:47:57.671113 #12879] INFO -- : Rendered inline template within layouts/application (178.4ms)
471
+ I, [2017-03-08T22:47:57.672356 #12879] INFO -- : Completed 200 OK in 180ms (Views: 179.8ms | ActiveRecord: 0.0ms)
472
+ I, [2017-03-08T22:47:57.741005 #12879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 22:47:57 -0800
473
+ I, [2017-03-08T22:47:57.741595 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
474
+ I, [2017-03-08T22:47:57.741638 #12879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
475
+ I, [2017-03-08T22:47:57.905622 #12879] INFO -- : Rendered inline template within layouts/application (163.5ms)
476
+ I, [2017-03-08T22:47:57.907333 #12879] INFO -- : Completed 200 OK in 166ms (Views: 165.4ms | ActiveRecord: 0.0ms)
477
+ I, [2017-03-08T22:48:00.907282 #12879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 22:48:00 -0800
478
+ I, [2017-03-08T22:48:00.907978 #12879] INFO -- : Processing by BaselineController#show as HTML
479
+ I, [2017-03-08T22:48:00.908348 #12879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
480
+ I, [2017-03-08T22:48:00.908805 #12879] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
481
+ I, [2017-03-08T22:48:00.909637 #12879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 22:48:00 -0800
482
+ I, [2017-03-08T22:48:02.466430 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
483
+ I, [2017-03-08T22:48:02.466518 #12879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
484
+ I, [2017-03-08T22:48:03.804547 #12879] INFO -- : Rendered inline template within layouts/application (1337.1ms)
485
+ I, [2017-03-08T22:48:03.805936 #12879] INFO -- : Completed 200 OK in 1339ms (Views: 1338.7ms | ActiveRecord: 0.0ms)
486
+ I, [2017-03-08T22:48:03.809881 #12879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 22:48:03 -0800
487
+ I, [2017-03-08T22:48:05.415922 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
488
+ I, [2017-03-08T22:48:05.415984 #12879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
489
+ I, [2017-03-08T22:48:06.844113 #12879] INFO -- : Rendered inline template within layouts/application (1427.4ms)
490
+ I, [2017-03-08T22:48:06.848130 #12879] INFO -- : Completed 200 OK in 1432ms (Views: 1431.5ms | ActiveRecord: 0.0ms)
491
+ I, [2017-03-08T22:48:10.211759 #12879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 22:48:10 -0800
492
+ I, [2017-03-08T22:48:10.214223 #12879] INFO -- : Processing by BaselineController#show as HTML
493
+ I, [2017-03-08T22:48:10.214707 #12879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
494
+ I, [2017-03-08T22:48:10.215191 #12879] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
495
+ I, [2017-03-08T22:48:10.344813 #12879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 22:48:10 -0800
496
+ I, [2017-03-08T22:48:11.586890 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
497
+ I, [2017-03-08T22:48:11.586961 #12879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
498
+ I, [2017-03-08T22:48:12.946246 #12879] INFO -- : Rendered inline template within layouts/application (1358.5ms)
499
+ I, [2017-03-08T22:48:12.947624 #12879] INFO -- : Completed 200 OK in 1361ms (Views: 1360.0ms | ActiveRecord: 0.0ms)
500
+ I, [2017-03-08T22:48:13.171778 #12879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 22:48:13 -0800
501
+ I, [2017-03-08T22:48:14.430945 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
502
+ I, [2017-03-08T22:48:14.431052 #12879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
503
+ I, [2017-03-08T22:48:15.613526 #12879] INFO -- : Rendered inline template within layouts/application (1181.9ms)
504
+ I, [2017-03-08T22:48:15.615307 #12879] INFO -- : Completed 200 OK in 1184ms (Views: 1183.7ms | ActiveRecord: 0.0ms)
505
+ I, [2017-03-10T13:23:42.014551 #16174] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 13:23:42 -0800
506
+ I, [2017-03-10T13:23:42.037505 #16174] INFO -- : Processing by BaselineController#show as HTML
507
+ I, [2017-03-10T13:23:42.046640 #16174] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
508
+ I, [2017-03-10T13:23:42.054611 #16174] INFO -- : Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms)
509
+ I, [2017-03-10T13:23:42.055856 #16174] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 13:23:42 -0800
510
+ I, [2017-03-10T13:23:42.056808 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
511
+ I, [2017-03-10T13:23:42.056867 #16174] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
512
+ I, [2017-03-10T13:23:43.543505 #16174] INFO -- : Rendered inline template within layouts/application (1480.9ms)
513
+ I, [2017-03-10T13:23:43.546669 #16174] INFO -- : Completed 200 OK in 1490ms (Views: 1486.0ms | ActiveRecord: 0.0ms)
514
+ I, [2017-03-10T13:23:43.550769 #16174] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 13:23:43 -0800
515
+ I, [2017-03-10T13:23:43.551620 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
516
+ I, [2017-03-10T13:23:43.551665 #16174] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
517
+ I, [2017-03-10T13:23:43.802305 #16174] INFO -- : Rendered inline template within layouts/application (250.0ms)
518
+ I, [2017-03-10T13:23:43.804745 #16174] INFO -- : Completed 200 OK in 253ms (Views: 252.6ms | ActiveRecord: 0.0ms)
519
+ I, [2017-03-10T13:23:44.035817 #16174] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 13:23:44 -0800
520
+ I, [2017-03-10T13:23:44.036476 #16174] INFO -- : Processing by BaselineController#show as HTML
521
+ I, [2017-03-10T13:23:44.036910 #16174] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
522
+ I, [2017-03-10T13:23:44.037390 #16174] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
523
+ I, [2017-03-10T13:23:44.112845 #16174] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 13:23:44 -0800
524
+ I, [2017-03-10T13:23:44.113725 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
525
+ I, [2017-03-10T13:23:44.113773 #16174] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
526
+ I, [2017-03-10T13:23:44.302649 #16174] INFO -- : Rendered inline template within layouts/application (188.3ms)
527
+ I, [2017-03-10T13:23:44.304034 #16174] INFO -- : Completed 200 OK in 190ms (Views: 189.9ms | ActiveRecord: 0.0ms)
528
+ I, [2017-03-10T13:23:44.378118 #16174] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 13:23:44 -0800
529
+ I, [2017-03-10T13:23:44.378820 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
530
+ I, [2017-03-10T13:23:44.378863 #16174] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
531
+ I, [2017-03-10T13:23:44.581981 #16174] INFO -- : Rendered inline template within layouts/application (202.6ms)
532
+ I, [2017-03-10T13:23:44.583938 #16174] INFO -- : Completed 200 OK in 205ms (Views: 204.7ms | ActiveRecord: 0.0ms)
533
+ I, [2017-03-10T13:23:47.787806 #16174] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 13:23:47 -0800
534
+ I, [2017-03-10T13:23:47.788761 #16174] INFO -- : Processing by BaselineController#show as HTML
535
+ I, [2017-03-10T13:23:47.789230 #16174] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
536
+ I, [2017-03-10T13:23:47.789770 #16174] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
537
+ I, [2017-03-10T13:23:47.790851 #16174] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 13:23:47 -0800
538
+ I, [2017-03-10T13:23:49.500337 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
539
+ I, [2017-03-10T13:23:49.500409 #16174] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
540
+ I, [2017-03-10T13:23:51.070477 #16174] INFO -- : Rendered inline template within layouts/application (1569.4ms)
541
+ I, [2017-03-10T13:23:51.071823 #16174] INFO -- : Completed 200 OK in 1571ms (Views: 1570.8ms | ActiveRecord: 0.0ms)
542
+ I, [2017-03-10T13:23:51.076167 #16174] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 13:23:51 -0800
543
+ I, [2017-03-10T13:23:52.654243 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
544
+ I, [2017-03-10T13:23:52.654311 #16174] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
545
+ I, [2017-03-10T13:23:54.015080 #16174] INFO -- : Rendered inline template within layouts/application (1360.1ms)
546
+ I, [2017-03-10T13:23:54.016991 #16174] INFO -- : Completed 200 OK in 1363ms (Views: 1362.1ms | ActiveRecord: 0.0ms)
547
+ I, [2017-03-10T13:23:57.458042 #16174] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 13:23:57 -0800
548
+ I, [2017-03-10T13:23:57.458688 #16174] INFO -- : Processing by BaselineController#show as HTML
549
+ I, [2017-03-10T13:23:57.459115 #16174] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
550
+ I, [2017-03-10T13:23:57.459593 #16174] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
551
+ I, [2017-03-10T13:23:57.606069 #16174] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 13:23:57 -0800
552
+ I, [2017-03-10T13:23:58.920081 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
553
+ I, [2017-03-10T13:23:58.920169 #16174] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
554
+ I, [2017-03-10T13:24:00.325984 #16174] INFO -- : Rendered inline template within layouts/application (1404.9ms)
555
+ I, [2017-03-10T13:24:00.327492 #16174] INFO -- : Completed 200 OK in 1407ms (Views: 1406.4ms | ActiveRecord: 0.0ms)
556
+ I, [2017-03-10T13:24:00.682986 #16174] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 13:24:00 -0800
557
+ I, [2017-03-10T13:24:02.170060 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
558
+ I, [2017-03-10T13:24:02.170139 #16174] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
559
+ I, [2017-03-10T13:24:03.496945 #16174] INFO -- : Rendered inline template within layouts/application (1325.8ms)
560
+ I, [2017-03-10T13:24:03.499932 #16174] INFO -- : Completed 200 OK in 1330ms (Views: 1328.9ms | ActiveRecord: 0.0ms)
561
+ I, [2017-03-10T14:49:19.553910 #18879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:49:19 -0800
562
+ I, [2017-03-10T14:49:19.577433 #18879] INFO -- : Processing by BaselineController#show as HTML
563
+ I, [2017-03-10T14:49:19.587747 #18879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
564
+ I, [2017-03-10T14:49:19.598151 #18879] INFO -- : Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
565
+ I, [2017-03-10T14:49:19.599822 #18879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:49:19 -0800
566
+ I, [2017-03-10T14:49:19.600896 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
567
+ I, [2017-03-10T14:49:19.600967 #18879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
568
+ I, [2017-03-10T14:49:20.968602 #18879] INFO -- : Rendered inline template within layouts/application (1359.8ms)
569
+ I, [2017-03-10T14:49:20.972070 #18879] INFO -- : Completed 200 OK in 1371ms (Views: 1366.1ms | ActiveRecord: 0.0ms)
570
+ I, [2017-03-10T14:49:20.975946 #18879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:49:20 -0800
571
+ I, [2017-03-10T14:49:20.976710 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
572
+ I, [2017-03-10T14:49:20.976757 #18879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
573
+ I, [2017-03-10T14:49:21.214464 #18879] INFO -- : Rendered inline template within layouts/application (236.7ms)
574
+ I, [2017-03-10T14:49:21.217344 #18879] INFO -- : Completed 200 OK in 240ms (Views: 239.7ms | ActiveRecord: 0.0ms)
575
+ I, [2017-03-10T14:49:21.424744 #18879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:49:21 -0800
576
+ I, [2017-03-10T14:49:21.425392 #18879] INFO -- : Processing by BaselineController#show as HTML
577
+ I, [2017-03-10T14:49:21.425807 #18879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
578
+ I, [2017-03-10T14:49:21.426287 #18879] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
579
+ I, [2017-03-10T14:49:21.481376 #18879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:49:21 -0800
580
+ I, [2017-03-10T14:49:21.482147 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
581
+ I, [2017-03-10T14:49:21.482209 #18879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
582
+ I, [2017-03-10T14:49:21.677494 #18879] INFO -- : Rendered inline template within layouts/application (194.6ms)
583
+ I, [2017-03-10T14:49:21.679048 #18879] INFO -- : Completed 200 OK in 197ms (Views: 196.3ms | ActiveRecord: 0.0ms)
584
+ I, [2017-03-10T14:49:21.758700 #18879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:49:21 -0800
585
+ I, [2017-03-10T14:49:21.759295 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
586
+ I, [2017-03-10T14:49:21.759334 #18879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
587
+ I, [2017-03-10T14:49:21.945048 #18879] INFO -- : Rendered inline template within layouts/application (185.3ms)
588
+ I, [2017-03-10T14:49:21.947185 #18879] INFO -- : Completed 200 OK in 188ms (Views: 187.5ms | ActiveRecord: 0.0ms)
589
+ I, [2017-03-10T14:49:25.211224 #18879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:49:25 -0800
590
+ I, [2017-03-10T14:49:25.212913 #18879] INFO -- : Processing by BaselineController#show as HTML
591
+ I, [2017-03-10T14:49:25.213797 #18879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
592
+ I, [2017-03-10T14:49:25.214435 #18879] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
593
+ I, [2017-03-10T14:49:25.215538 #18879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:49:25 -0800
594
+ I, [2017-03-10T14:49:27.081235 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
595
+ I, [2017-03-10T14:49:27.081358 #18879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
596
+ I, [2017-03-10T14:49:29.187210 #18879] INFO -- : Rendered inline template within layouts/application (2105.1ms)
597
+ I, [2017-03-10T14:49:29.188469 #18879] INFO -- : Completed 200 OK in 2107ms (Views: 2106.5ms | ActiveRecord: 0.0ms)
598
+ I, [2017-03-10T14:49:29.192475 #18879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:49:29 -0800
599
+ I, [2017-03-10T14:49:31.136015 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
600
+ I, [2017-03-10T14:49:31.136084 #18879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
601
+ I, [2017-03-10T14:49:32.690904 #18879] INFO -- : Rendered inline template within layouts/application (1553.9ms)
602
+ I, [2017-03-10T14:49:32.692608 #18879] INFO -- : Completed 200 OK in 1556ms (Views: 1555.9ms | ActiveRecord: 0.0ms)
603
+ I, [2017-03-10T14:49:36.224517 #18879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:49:36 -0800
604
+ I, [2017-03-10T14:49:36.225178 #18879] INFO -- : Processing by BaselineController#show as HTML
605
+ I, [2017-03-10T14:49:36.225592 #18879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
606
+ I, [2017-03-10T14:49:36.226061 #18879] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
607
+ I, [2017-03-10T14:49:36.373442 #18879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:49:36 -0800
608
+ I, [2017-03-10T14:49:38.065435 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
609
+ I, [2017-03-10T14:49:38.066989 #18879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
610
+ I, [2017-03-10T14:49:39.293263 #18879] INFO -- : Rendered inline template within layouts/application (1225.6ms)
611
+ I, [2017-03-10T14:49:39.294864 #18879] INFO -- : Completed 200 OK in 1228ms (Views: 1227.3ms | ActiveRecord: 0.0ms)
612
+ I, [2017-03-10T14:49:39.565919 #18879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:49:39 -0800
613
+ I, [2017-03-10T14:49:41.229677 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
614
+ I, [2017-03-10T14:49:41.229742 #18879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
615
+ I, [2017-03-10T14:49:42.748246 #18879] INFO -- : Rendered inline template within layouts/application (1517.8ms)
616
+ I, [2017-03-10T14:49:42.751011 #18879] INFO -- : Completed 200 OK in 1521ms (Views: 1520.7ms | ActiveRecord: 0.0ms)
617
+ I, [2017-03-10T14:50:09.856972 #19029] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:50:09 -0800
618
+ I, [2017-03-10T14:50:09.878670 #19029] INFO -- : Processing by BaselineController#show as HTML
619
+ I, [2017-03-10T14:50:09.886689 #19029] INFO -- : Rendering baseline/show.html.erb within layouts/application
620
+ I, [2017-03-10T14:50:09.887255 #19029] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
621
+ I, [2017-03-10T14:50:09.899322 #19029] INFO -- : Completed 200 OK in 20ms (Views: 17.6ms)
622
+ I, [2017-03-10T14:50:09.901711 #19029] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:50:09 -0800
623
+ I, [2017-03-10T14:50:09.902558 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
624
+ I, [2017-03-10T14:50:09.902596 #19029] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
625
+ I, [2017-03-10T14:50:09.907874 #19029] INFO -- : Rendering inline template within layouts/application
626
+ I, [2017-03-10T14:50:11.250926 #19029] INFO -- : Rendered inline template within layouts/application (1342.9ms)
627
+ I, [2017-03-10T14:50:11.253699 #19029] INFO -- : Completed 200 OK in 1351ms (Views: 1346.4ms)
628
+ I, [2017-03-10T14:50:11.259185 #19029] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:50:11 -0800
629
+ I, [2017-03-10T14:50:11.259793 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
630
+ I, [2017-03-10T14:50:11.259829 #19029] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
631
+ I, [2017-03-10T14:50:11.260483 #19029] INFO -- : Rendering inline template within layouts/application
632
+ I, [2017-03-10T14:50:11.498832 #19029] INFO -- : Rendered inline template within layouts/application (238.3ms)
633
+ I, [2017-03-10T14:50:11.501735 #19029] INFO -- : Completed 200 OK in 242ms (Views: 241.4ms)
634
+ I, [2017-03-10T14:50:11.730780 #19029] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:50:11 -0800
635
+ I, [2017-03-10T14:50:11.731450 #19029] INFO -- : Processing by BaselineController#show as HTML
636
+ I, [2017-03-10T14:50:11.731905 #19029] INFO -- : Rendering baseline/show.html.erb within layouts/application
637
+ I, [2017-03-10T14:50:11.732004 #19029] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
638
+ I, [2017-03-10T14:50:11.732495 #19029] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
639
+ I, [2017-03-10T14:50:11.793177 #19029] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:50:11 -0800
640
+ I, [2017-03-10T14:50:11.794013 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
641
+ I, [2017-03-10T14:50:11.794061 #19029] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
642
+ I, [2017-03-10T14:50:11.794682 #19029] INFO -- : Rendering inline template within layouts/application
643
+ I, [2017-03-10T14:50:12.050531 #19029] INFO -- : Rendered inline template within layouts/application (255.5ms)
644
+ I, [2017-03-10T14:50:12.054717 #19029] INFO -- : Completed 200 OK in 261ms (Views: 260.2ms)
645
+ I, [2017-03-10T14:50:12.200153 #19029] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:50:12 -0800
646
+ I, [2017-03-10T14:50:12.200717 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
647
+ I, [2017-03-10T14:50:12.200756 #19029] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
648
+ I, [2017-03-10T14:50:12.201335 #19029] INFO -- : Rendering inline template within layouts/application
649
+ I, [2017-03-10T14:50:12.379803 #19029] INFO -- : Rendered inline template within layouts/application (178.4ms)
650
+ I, [2017-03-10T14:50:12.382137 #19029] INFO -- : Completed 200 OK in 181ms (Views: 181.0ms)
651
+ I, [2017-03-10T14:50:16.127394 #19029] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:50:16 -0800
652
+ I, [2017-03-10T14:50:16.128142 #19029] INFO -- : Processing by BaselineController#show as HTML
653
+ I, [2017-03-10T14:50:16.128773 #19029] INFO -- : Rendering baseline/show.html.erb within layouts/application
654
+ I, [2017-03-10T14:50:16.128936 #19029] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
655
+ I, [2017-03-10T14:50:16.129548 #19029] INFO -- : Completed 200 OK in 1ms (Views: 1.1ms)
656
+ I, [2017-03-10T14:50:16.131059 #19029] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:50:16 -0800
657
+ I, [2017-03-10T14:50:17.835470 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
658
+ I, [2017-03-10T14:50:17.835541 #19029] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
659
+ I, [2017-03-10T14:50:17.836347 #19029] INFO -- : Rendering inline template within layouts/application
660
+ I, [2017-03-10T14:50:19.235505 #19029] INFO -- : Rendered inline template within layouts/application (1399.0ms)
661
+ I, [2017-03-10T14:50:19.236668 #19029] INFO -- : Completed 200 OK in 1401ms (Views: 1400.4ms)
662
+ I, [2017-03-10T14:50:19.243163 #19029] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:50:19 -0800
663
+ I, [2017-03-10T14:50:20.895013 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
664
+ I, [2017-03-10T14:50:20.895084 #19029] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
665
+ I, [2017-03-10T14:50:20.896051 #19029] INFO -- : Rendering inline template within layouts/application
666
+ I, [2017-03-10T14:50:22.306287 #19029] INFO -- : Rendered inline template within layouts/application (1410.1ms)
667
+ I, [2017-03-10T14:50:22.307272 #19029] INFO -- : Completed 200 OK in 1412ms (Views: 1411.4ms)
668
+ I, [2017-03-10T14:50:26.686768 #19029] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:50:26 -0800
669
+ I, [2017-03-10T14:50:26.687398 #19029] INFO -- : Processing by BaselineController#show as HTML
670
+ I, [2017-03-10T14:50:26.687843 #19029] INFO -- : Rendering baseline/show.html.erb within layouts/application
671
+ I, [2017-03-10T14:50:26.687937 #19029] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
672
+ I, [2017-03-10T14:50:26.688406 #19029] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
673
+ I, [2017-03-10T14:50:26.830210 #19029] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:50:26 -0800
674
+ I, [2017-03-10T14:50:28.460411 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
675
+ I, [2017-03-10T14:50:28.460487 #19029] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
676
+ I, [2017-03-10T14:50:28.461519 #19029] INFO -- : Rendering inline template within layouts/application
677
+ I, [2017-03-10T14:50:30.126452 #19029] INFO -- : Rendered inline template within layouts/application (1664.8ms)
678
+ I, [2017-03-10T14:50:30.127806 #19029] INFO -- : Completed 200 OK in 1667ms (Views: 1666.4ms)
679
+ I, [2017-03-10T14:50:30.477009 #19029] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:50:30 -0800
680
+ I, [2017-03-10T14:50:32.420000 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
681
+ I, [2017-03-10T14:50:32.420093 #19029] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
682
+ I, [2017-03-10T14:50:32.421215 #19029] INFO -- : Rendering inline template within layouts/application
683
+ I, [2017-03-10T14:50:34.437150 #19029] INFO -- : Rendered inline template within layouts/application (2015.8ms)
684
+ I, [2017-03-10T14:50:34.438563 #19029] INFO -- : Completed 200 OK in 2018ms (Views: 2017.5ms)
685
+ I, [2017-03-10T14:54:09.735213 #19264] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:54:09 -0800
686
+ I, [2017-03-10T14:54:09.755085 #19264] INFO -- : Processing by BaselineController#show as HTML
687
+ I, [2017-03-10T14:54:09.764696 #19264] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.5ms)
688
+ I, [2017-03-10T14:54:09.775560 #19264] INFO -- : Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
689
+ I, [2017-03-10T14:54:09.777044 #19264] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:54:09 -0800
690
+ I, [2017-03-10T14:54:09.778234 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
691
+ I, [2017-03-10T14:54:09.778292 #19264] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
692
+ I, [2017-03-10T14:54:11.207740 #19264] INFO -- : Rendered inline template within layouts/application (1421.3ms)
693
+ I, [2017-03-10T14:54:11.210775 #19264] INFO -- : Completed 200 OK in 1432ms (Views: 1428.3ms | ActiveRecord: 0.0ms)
694
+ I, [2017-03-10T14:54:11.214998 #19264] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:54:11 -0800
695
+ I, [2017-03-10T14:54:11.215613 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
696
+ I, [2017-03-10T14:54:11.215653 #19264] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
697
+ I, [2017-03-10T14:54:11.447910 #19264] INFO -- : Rendered inline template within layouts/application (231.6ms)
698
+ I, [2017-03-10T14:54:11.450268 #19264] INFO -- : Completed 200 OK in 235ms (Views: 234.1ms | ActiveRecord: 0.0ms)
699
+ I, [2017-03-10T14:54:11.659372 #19264] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:54:11 -0800
700
+ I, [2017-03-10T14:54:11.660046 #19264] INFO -- : Processing by BaselineController#show as HTML
701
+ I, [2017-03-10T14:54:11.660494 #19264] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
702
+ I, [2017-03-10T14:54:11.661005 #19264] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
703
+ I, [2017-03-10T14:54:11.715998 #19264] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:54:11 -0800
704
+ I, [2017-03-10T14:54:11.718338 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
705
+ I, [2017-03-10T14:54:11.718388 #19264] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
706
+ I, [2017-03-10T14:54:11.903008 #19264] INFO -- : Rendered inline template within layouts/application (184.1ms)
707
+ I, [2017-03-10T14:54:11.904427 #19264] INFO -- : Completed 200 OK in 186ms (Views: 185.7ms | ActiveRecord: 0.0ms)
708
+ I, [2017-03-10T14:54:11.975424 #19264] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:54:11 -0800
709
+ I, [2017-03-10T14:54:11.976316 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
710
+ I, [2017-03-10T14:54:11.976389 #19264] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
711
+ I, [2017-03-10T14:54:12.164611 #19264] INFO -- : Rendered inline template within layouts/application (187.3ms)
712
+ I, [2017-03-10T14:54:12.166983 #19264] INFO -- : Completed 200 OK in 190ms (Views: 190.1ms | ActiveRecord: 0.0ms)
713
+ I, [2017-03-10T14:54:15.322848 #19264] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:54:15 -0800
714
+ I, [2017-03-10T14:54:15.323478 #19264] INFO -- : Processing by BaselineController#show as HTML
715
+ I, [2017-03-10T14:54:15.323882 #19264] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
716
+ I, [2017-03-10T14:54:15.324591 #19264] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
717
+ I, [2017-03-10T14:54:15.325881 #19264] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:54:15 -0800
718
+ I, [2017-03-10T14:54:17.043024 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
719
+ I, [2017-03-10T14:54:17.043097 #19264] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
720
+ I, [2017-03-10T14:54:18.410342 #19264] INFO -- : Rendered inline template within layouts/application (1366.3ms)
721
+ I, [2017-03-10T14:54:18.411709 #19264] INFO -- : Completed 200 OK in 1369ms (Views: 1367.9ms | ActiveRecord: 0.0ms)
722
+ I, [2017-03-10T14:54:18.415692 #19264] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:54:18 -0800
723
+ I, [2017-03-10T14:54:20.251681 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
724
+ I, [2017-03-10T14:54:20.251992 #19264] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
725
+ I, [2017-03-10T14:54:22.308040 #19264] INFO -- : Rendered inline template within layouts/application (2043.3ms)
726
+ I, [2017-03-10T14:54:22.310352 #19264] INFO -- : Completed 200 OK in 2058ms (Views: 2054.6ms | ActiveRecord: 0.0ms)
727
+ I, [2017-03-10T14:54:26.327233 #19264] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:54:26 -0800
728
+ I, [2017-03-10T14:54:26.328067 #19264] INFO -- : Processing by BaselineController#show as HTML
729
+ I, [2017-03-10T14:54:26.328593 #19264] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
730
+ I, [2017-03-10T14:54:26.329243 #19264] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
731
+ I, [2017-03-10T14:54:26.478132 #19264] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:54:26 -0800
732
+ I, [2017-03-10T14:54:28.134660 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
733
+ I, [2017-03-10T14:54:28.136420 #19264] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
734
+ I, [2017-03-10T14:54:29.866308 #19264] INFO -- : Rendered inline template within layouts/application (1728.7ms)
735
+ I, [2017-03-10T14:54:29.867766 #19264] INFO -- : Completed 200 OK in 1731ms (Views: 1730.4ms | ActiveRecord: 0.0ms)
736
+ I, [2017-03-10T14:54:30.185651 #19264] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:54:30 -0800
737
+ I, [2017-03-10T14:54:31.893505 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
738
+ I, [2017-03-10T14:54:31.893564 #19264] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
739
+ I, [2017-03-10T14:54:33.919626 #19264] INFO -- : Rendered inline template within layouts/application (2025.4ms)
740
+ I, [2017-03-10T14:54:33.921839 #19264] INFO -- : Completed 200 OK in 2028ms (Views: 2027.7ms | ActiveRecord: 0.0ms)
741
+ I, [2017-03-10T14:55:01.052071 #19328] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:55:01 -0800
742
+ I, [2017-03-10T14:55:01.077601 #19328] INFO -- : Processing by BaselineController#show as HTML
743
+ I, [2017-03-10T14:55:01.086816 #19328] INFO -- : Rendering baseline/show.html.erb within layouts/application
744
+ I, [2017-03-10T14:55:01.087476 #19328] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.5ms)
745
+ I, [2017-03-10T14:55:01.098917 #19328] INFO -- : Completed 200 OK in 21ms (Views: 18.8ms)
746
+ I, [2017-03-10T14:55:01.101167 #19328] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:55:01 -0800
747
+ I, [2017-03-10T14:55:01.102220 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
748
+ I, [2017-03-10T14:55:01.102279 #19328] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
749
+ I, [2017-03-10T14:55:01.108367 #19328] INFO -- : Rendering inline template within layouts/application
750
+ I, [2017-03-10T14:55:03.596104 #19328] INFO -- : Rendered inline template within layouts/application (2487.6ms)
751
+ I, [2017-03-10T14:55:03.598852 #19328] INFO -- : Completed 200 OK in 2496ms (Views: 2490.8ms)
752
+ I, [2017-03-10T14:55:03.604630 #19328] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:55:03 -0800
753
+ I, [2017-03-10T14:55:03.605558 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
754
+ I, [2017-03-10T14:55:03.605657 #19328] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
755
+ I, [2017-03-10T14:55:03.606681 #19328] INFO -- : Rendering inline template within layouts/application
756
+ I, [2017-03-10T14:55:03.804718 #19328] INFO -- : Rendered inline template within layouts/application (197.9ms)
757
+ I, [2017-03-10T14:55:03.807287 #19328] INFO -- : Completed 200 OK in 201ms (Views: 200.7ms)
758
+ I, [2017-03-10T14:55:03.990940 #19328] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:55:03 -0800
759
+ I, [2017-03-10T14:55:03.991440 #19328] INFO -- : Processing by BaselineController#show as HTML
760
+ I, [2017-03-10T14:55:03.991793 #19328] INFO -- : Rendering baseline/show.html.erb within layouts/application
761
+ I, [2017-03-10T14:55:03.991868 #19328] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
762
+ I, [2017-03-10T14:55:03.992238 #19328] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms)
763
+ I, [2017-03-10T14:55:04.050172 #19328] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:55:04 -0800
764
+ I, [2017-03-10T14:55:04.050644 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
765
+ I, [2017-03-10T14:55:04.050673 #19328] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
766
+ I, [2017-03-10T14:55:04.051092 #19328] INFO -- : Rendering inline template within layouts/application
767
+ I, [2017-03-10T14:55:04.184242 #19328] INFO -- : Rendered inline template within layouts/application (133.1ms)
768
+ I, [2017-03-10T14:55:04.185493 #19328] INFO -- : Completed 200 OK in 135ms (Views: 134.5ms)
769
+ I, [2017-03-10T14:55:04.254298 #19328] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:55:04 -0800
770
+ I, [2017-03-10T14:55:04.254752 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
771
+ I, [2017-03-10T14:55:04.254781 #19328] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
772
+ I, [2017-03-10T14:55:04.255303 #19328] INFO -- : Rendering inline template within layouts/application
773
+ I, [2017-03-10T14:55:04.384050 #19328] INFO -- : Rendered inline template within layouts/application (128.7ms)
774
+ I, [2017-03-10T14:55:04.386451 #19328] INFO -- : Completed 200 OK in 132ms (Views: 131.3ms)
775
+ I, [2017-03-10T14:55:07.610673 #19328] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:55:07 -0800
776
+ I, [2017-03-10T14:55:07.611308 #19328] INFO -- : Processing by BaselineController#show as HTML
777
+ I, [2017-03-10T14:55:07.611773 #19328] INFO -- : Rendering baseline/show.html.erb within layouts/application
778
+ I, [2017-03-10T14:55:07.611866 #19328] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
779
+ I, [2017-03-10T14:55:07.612369 #19328] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
780
+ I, [2017-03-10T14:55:07.613427 #19328] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:55:07 -0800
781
+ I, [2017-03-10T14:55:09.829593 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
782
+ I, [2017-03-10T14:55:09.831328 #19328] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
783
+ I, [2017-03-10T14:55:09.832318 #19328] INFO -- : Rendering inline template within layouts/application
784
+ I, [2017-03-10T14:55:12.241661 #19328] INFO -- : Rendered inline template within layouts/application (2409.3ms)
785
+ I, [2017-03-10T14:55:12.242895 #19328] INFO -- : Completed 200 OK in 2411ms (Views: 2410.7ms)
786
+ I, [2017-03-10T14:55:12.247590 #19328] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:55:12 -0800
787
+ I, [2017-03-10T14:55:13.782167 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
788
+ I, [2017-03-10T14:55:13.782241 #19328] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
789
+ I, [2017-03-10T14:55:13.783110 #19328] INFO -- : Rendering inline template within layouts/application
790
+ I, [2017-03-10T14:55:15.401392 #19328] INFO -- : Rendered inline template within layouts/application (1618.2ms)
791
+ I, [2017-03-10T14:55:15.403745 #19328] INFO -- : Completed 200 OK in 1621ms (Views: 1620.7ms)
792
+ I, [2017-03-10T14:55:18.807607 #19328] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:55:18 -0800
793
+ I, [2017-03-10T14:55:18.808236 #19328] INFO -- : Processing by BaselineController#show as HTML
794
+ I, [2017-03-10T14:55:18.808773 #19328] INFO -- : Rendering baseline/show.html.erb within layouts/application
795
+ I, [2017-03-10T14:55:18.808877 #19328] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
796
+ I, [2017-03-10T14:55:18.809362 #19328] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms)
797
+ I, [2017-03-10T14:55:18.974240 #19328] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:55:18 -0800
798
+ I, [2017-03-10T14:55:20.424381 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
799
+ I, [2017-03-10T14:55:20.424447 #19328] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
800
+ I, [2017-03-10T14:55:20.425246 #19328] INFO -- : Rendering inline template within layouts/application
801
+ I, [2017-03-10T14:55:21.814826 #19328] INFO -- : Rendered inline template within layouts/application (1389.5ms)
802
+ I, [2017-03-10T14:55:21.816219 #19328] INFO -- : Completed 200 OK in 1392ms (Views: 1391.1ms)
803
+ I, [2017-03-10T14:55:22.043595 #19328] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:55:22 -0800
804
+ I, [2017-03-10T14:55:23.642865 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
805
+ I, [2017-03-10T14:55:23.642932 #19328] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
806
+ I, [2017-03-10T14:55:23.643737 #19328] INFO -- : Rendering inline template within layouts/application
807
+ I, [2017-03-10T14:55:25.137713 #19328] INFO -- : Rendered inline template within layouts/application (1493.9ms)
808
+ I, [2017-03-10T14:55:25.139526 #19328] INFO -- : Completed 200 OK in 1496ms (Views: 1495.9ms)
809
+ I, [2017-03-27T10:24:36.865108 #2809] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:24:36 -0700
810
+ I, [2017-03-27T10:24:36.884240 #2809] INFO -- : Processing by BaselineController#show as HTML
811
+ I, [2017-03-27T10:24:36.890258 #2809] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
812
+ I, [2017-03-27T10:24:36.897152 #2809] INFO -- : Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
813
+ I, [2017-03-27T10:24:36.898420 #2809] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:24:36 -0700
814
+ I, [2017-03-27T10:24:36.899405 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
815
+ I, [2017-03-27T10:24:36.899465 #2809] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
816
+ I, [2017-03-27T10:24:37.951974 #2809] INFO -- : Rendered inline template within layouts/application (1046.9ms)
817
+ I, [2017-03-27T10:24:37.954433 #2809] INFO -- : Completed 200 OK in 1055ms (Views: 1052.3ms | ActiveRecord: 0.0ms)
818
+ I, [2017-03-27T10:24:37.957800 #2809] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:24:37 -0700
819
+ I, [2017-03-27T10:24:37.958317 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
820
+ I, [2017-03-27T10:24:37.958351 #2809] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
821
+ I, [2017-03-27T10:24:38.185418 #2809] INFO -- : Rendered inline template within layouts/application (226.6ms)
822
+ I, [2017-03-27T10:24:38.187793 #2809] INFO -- : Completed 200 OK in 229ms (Views: 229.0ms | ActiveRecord: 0.0ms)
823
+ I, [2017-03-27T10:24:38.366334 #2809] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:24:38 -0700
824
+ I, [2017-03-27T10:24:38.366968 #2809] INFO -- : Processing by BaselineController#show as HTML
825
+ I, [2017-03-27T10:24:38.367393 #2809] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
826
+ I, [2017-03-27T10:24:38.367880 #2809] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
827
+ I, [2017-03-27T10:24:38.422444 #2809] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:24:38 -0700
828
+ I, [2017-03-27T10:24:38.423331 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
829
+ I, [2017-03-27T10:24:38.423381 #2809] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
830
+ I, [2017-03-27T10:24:38.590907 #2809] INFO -- : Rendered inline template within layouts/application (167.0ms)
831
+ I, [2017-03-27T10:24:38.592142 #2809] INFO -- : Completed 200 OK in 169ms (Views: 168.4ms | ActiveRecord: 0.0ms)
832
+ I, [2017-03-27T10:24:38.663419 #2809] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:24:38 -0700
833
+ I, [2017-03-27T10:24:38.663989 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
834
+ I, [2017-03-27T10:24:38.664033 #2809] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
835
+ I, [2017-03-27T10:24:38.855292 #2809] INFO -- : Rendered inline template within layouts/application (190.8ms)
836
+ I, [2017-03-27T10:24:38.857101 #2809] INFO -- : Completed 200 OK in 193ms (Views: 192.7ms | ActiveRecord: 0.0ms)
837
+ I, [2017-03-27T10:24:42.071201 #2809] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:24:42 -0700
838
+ I, [2017-03-27T10:24:42.071777 #2809] INFO -- : Processing by BaselineController#show as HTML
839
+ I, [2017-03-27T10:24:42.072164 #2809] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
840
+ I, [2017-03-27T10:24:42.072642 #2809] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
841
+ I, [2017-03-27T10:24:42.073499 #2809] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:24:42 -0700
842
+ I, [2017-03-27T10:24:43.837289 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
843
+ I, [2017-03-27T10:24:43.837354 #2809] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
844
+ I, [2017-03-27T10:24:45.458659 #2809] INFO -- : Rendered inline template within layouts/application (1620.6ms)
845
+ I, [2017-03-27T10:24:45.459783 #2809] INFO -- : Completed 200 OK in 1622ms (Views: 1621.8ms | ActiveRecord: 0.0ms)
846
+ I, [2017-03-27T10:24:45.464375 #2809] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:24:45 -0700
847
+ I, [2017-03-27T10:24:47.408698 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
848
+ I, [2017-03-27T10:24:47.408755 #2809] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
849
+ I, [2017-03-27T10:24:48.626780 #2809] INFO -- : Rendered inline template within layouts/application (1217.4ms)
850
+ I, [2017-03-27T10:24:48.627627 #2809] INFO -- : Completed 200 OK in 1219ms (Views: 1218.3ms | ActiveRecord: 0.0ms)
851
+ I, [2017-03-27T10:24:52.067527 #2809] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:24:52 -0700
852
+ I, [2017-03-27T10:24:52.068122 #2809] INFO -- : Processing by BaselineController#show as HTML
853
+ I, [2017-03-27T10:24:52.068550 #2809] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
854
+ I, [2017-03-27T10:24:52.069077 #2809] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
855
+ I, [2017-03-27T10:24:52.190386 #2809] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:24:52 -0700
856
+ I, [2017-03-27T10:24:53.491789 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
857
+ I, [2017-03-27T10:24:53.491848 #2809] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
858
+ I, [2017-03-27T10:24:54.601430 #2809] INFO -- : Rendered inline template within layouts/application (1109.0ms)
859
+ I, [2017-03-27T10:24:54.602761 #2809] INFO -- : Completed 200 OK in 1111ms (Views: 1110.4ms | ActiveRecord: 0.0ms)
860
+ I, [2017-03-27T10:24:54.861097 #2809] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:24:54 -0700
861
+ I, [2017-03-27T10:24:56.339758 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
862
+ I, [2017-03-27T10:24:56.339940 #2809] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
863
+ I, [2017-03-27T10:24:57.564984 #2809] INFO -- : Rendered inline template within layouts/application (1223.8ms)
864
+ I, [2017-03-27T10:24:57.566783 #2809] INFO -- : Completed 200 OK in 1227ms (Views: 1225.8ms | ActiveRecord: 0.0ms)
865
+ I, [2017-03-27T10:26:45.131317 #2929] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:26:45 -0700
866
+ I, [2017-03-27T10:26:45.144107 #2929] INFO -- : Processing by BaselineController#show as HTML
867
+ I, [2017-03-27T10:26:45.151704 #2929] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
868
+ I, [2017-03-27T10:26:45.159966 #2929] INFO -- : Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
869
+ I, [2017-03-27T10:26:45.161183 #2929] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:26:45 -0700
870
+ I, [2017-03-27T10:26:45.161949 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
871
+ I, [2017-03-27T10:26:45.161990 #2929] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
872
+ I, [2017-03-27T10:26:46.396012 #2929] INFO -- : Rendered inline template within layouts/application (1229.6ms)
873
+ I, [2017-03-27T10:26:46.398532 #2929] INFO -- : Completed 200 OK in 1236ms (Views: 1233.9ms | ActiveRecord: 0.0ms)
874
+ I, [2017-03-27T10:26:46.402068 #2929] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:26:46 -0700
875
+ I, [2017-03-27T10:26:46.402595 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
876
+ I, [2017-03-27T10:26:46.402628 #2929] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
877
+ I, [2017-03-27T10:26:46.643947 #2929] INFO -- : Rendered inline template within layouts/application (240.8ms)
878
+ I, [2017-03-27T10:26:46.647403 #2929] INFO -- : Completed 200 OK in 245ms (Views: 244.3ms | ActiveRecord: 0.0ms)
879
+ I, [2017-03-27T10:26:46.850468 #2929] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:26:46 -0700
880
+ I, [2017-03-27T10:26:46.851142 #2929] INFO -- : Processing by BaselineController#show as HTML
881
+ I, [2017-03-27T10:26:46.851562 #2929] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
882
+ I, [2017-03-27T10:26:46.852026 #2929] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
883
+ I, [2017-03-27T10:26:46.902820 #2929] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:26:46 -0700
884
+ I, [2017-03-27T10:26:46.903392 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
885
+ I, [2017-03-27T10:26:46.903434 #2929] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
886
+ I, [2017-03-27T10:26:47.107365 #2929] INFO -- : Rendered inline template within layouts/application (203.5ms)
887
+ I, [2017-03-27T10:26:47.108716 #2929] INFO -- : Completed 200 OK in 205ms (Views: 204.9ms | ActiveRecord: 0.0ms)
888
+ I, [2017-03-27T10:26:47.184156 #2929] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:26:47 -0700
889
+ I, [2017-03-27T10:26:47.184807 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
890
+ I, [2017-03-27T10:26:47.184851 #2929] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
891
+ I, [2017-03-27T10:26:47.392103 #2929] INFO -- : Rendered inline template within layouts/application (206.8ms)
892
+ I, [2017-03-27T10:26:47.394360 #2929] INFO -- : Completed 200 OK in 209ms (Views: 209.1ms | ActiveRecord: 0.0ms)
893
+ I, [2017-03-27T10:26:50.806451 #2929] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:26:50 -0700
894
+ I, [2017-03-27T10:26:50.807050 #2929] INFO -- : Processing by BaselineController#show as HTML
895
+ I, [2017-03-27T10:26:50.807475 #2929] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
896
+ I, [2017-03-27T10:26:50.807965 #2929] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
897
+ I, [2017-03-27T10:26:50.808941 #2929] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:26:50 -0700
898
+ I, [2017-03-27T10:26:52.336151 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
899
+ I, [2017-03-27T10:26:52.336218 #2929] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
900
+ I, [2017-03-27T10:26:53.845153 #2929] INFO -- : Rendered inline template within layouts/application (1508.2ms)
901
+ I, [2017-03-27T10:26:53.846684 #2929] INFO -- : Completed 200 OK in 1510ms (Views: 1509.9ms | ActiveRecord: 0.0ms)
902
+ I, [2017-03-27T10:26:53.850354 #2929] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:26:53 -0700
903
+ I, [2017-03-27T10:26:55.432558 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
904
+ I, [2017-03-27T10:26:55.432685 #2929] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
905
+ I, [2017-03-27T10:26:56.826206 #2929] INFO -- : Rendered inline template within layouts/application (1392.9ms)
906
+ I, [2017-03-27T10:26:56.828837 #2929] INFO -- : Completed 200 OK in 1396ms (Views: 1395.6ms | ActiveRecord: 0.0ms)
907
+ I, [2017-03-27T10:27:00.254967 #2929] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:27:00 -0700
908
+ I, [2017-03-27T10:27:00.255562 #2929] INFO -- : Processing by BaselineController#show as HTML
909
+ I, [2017-03-27T10:27:00.255968 #2929] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
910
+ I, [2017-03-27T10:27:00.256491 #2929] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
911
+ I, [2017-03-27T10:27:00.402994 #2929] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:27:00 -0700
912
+ I, [2017-03-27T10:27:01.715331 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
913
+ I, [2017-03-27T10:27:01.715395 #2929] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
914
+ I, [2017-03-27T10:27:02.962732 #2929] INFO -- : Rendered inline template within layouts/application (1246.6ms)
915
+ I, [2017-03-27T10:27:02.964086 #2929] INFO -- : Completed 200 OK in 1249ms (Views: 1248.1ms | ActiveRecord: 0.0ms)
916
+ I, [2017-03-27T10:27:03.202944 #2929] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:27:03 -0700
917
+ I, [2017-03-27T10:27:04.631999 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
918
+ I, [2017-03-27T10:27:04.632066 #2929] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
919
+ I, [2017-03-27T10:27:06.100804 #2929] INFO -- : Rendered inline template within layouts/application (1468.1ms)
920
+ I, [2017-03-27T10:27:06.102058 #2929] INFO -- : Completed 200 OK in 1470ms (Views: 1469.4ms | ActiveRecord: 0.0ms)
921
+ I, [2017-03-27T10:27:26.516218 #2989] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:27:26 -0700
922
+ I, [2017-03-27T10:27:26.528426 #2989] INFO -- : Processing by BaselineController#show as HTML
923
+ I, [2017-03-27T10:27:26.533870 #2989] INFO -- : Rendering baseline/show.html.erb within layouts/application
924
+ I, [2017-03-27T10:27:26.534397 #2989] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
925
+ I, [2017-03-27T10:27:26.545410 #2989] INFO -- : Completed 200 OK in 17ms (Views: 15.4ms)
926
+ I, [2017-03-27T10:27:26.546867 #2989] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:27:26 -0700
927
+ I, [2017-03-27T10:27:26.547747 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
928
+ I, [2017-03-27T10:27:26.547790 #2989] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
929
+ I, [2017-03-27T10:27:26.551491 #2989] INFO -- : Rendering inline template within layouts/application
930
+ I, [2017-03-27T10:27:27.904467 #2989] INFO -- : Rendered inline template within layouts/application (1352.9ms)
931
+ I, [2017-03-27T10:27:27.907950 #2989] INFO -- : Completed 200 OK in 1360ms (Views: 1356.7ms)
932
+ I, [2017-03-27T10:27:27.916349 #2989] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:27:27 -0700
933
+ I, [2017-03-27T10:27:27.917088 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
934
+ I, [2017-03-27T10:27:27.917138 #2989] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
935
+ I, [2017-03-27T10:27:27.917893 #2989] INFO -- : Rendering inline template within layouts/application
936
+ I, [2017-03-27T10:27:28.141907 #2989] INFO -- : Rendered inline template within layouts/application (223.9ms)
937
+ I, [2017-03-27T10:27:28.144671 #2989] INFO -- : Completed 200 OK in 227ms (Views: 227.0ms)
938
+ I, [2017-03-27T10:27:28.353789 #2989] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:27:28 -0700
939
+ I, [2017-03-27T10:27:28.354410 #2989] INFO -- : Processing by BaselineController#show as HTML
940
+ I, [2017-03-27T10:27:28.354921 #2989] INFO -- : Rendering baseline/show.html.erb within layouts/application
941
+ I, [2017-03-27T10:27:28.355125 #2989] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
942
+ I, [2017-03-27T10:27:28.356430 #2989] INFO -- : Completed 200 OK in 2ms (Views: 1.6ms)
943
+ I, [2017-03-27T10:27:28.424228 #2989] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:27:28 -0700
944
+ I, [2017-03-27T10:27:28.424839 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
945
+ I, [2017-03-27T10:27:28.424881 #2989] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
946
+ I, [2017-03-27T10:27:28.425406 #2989] INFO -- : Rendering inline template within layouts/application
947
+ I, [2017-03-27T10:27:28.613949 #2989] INFO -- : Rendered inline template within layouts/application (188.4ms)
948
+ I, [2017-03-27T10:27:28.615259 #2989] INFO -- : Completed 200 OK in 190ms (Views: 190.0ms)
949
+ I, [2017-03-27T10:27:28.697445 #2989] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:27:28 -0700
950
+ I, [2017-03-27T10:27:28.698000 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
951
+ I, [2017-03-27T10:27:28.698041 #2989] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
952
+ I, [2017-03-27T10:27:28.698999 #2989] INFO -- : Rendering inline template within layouts/application
953
+ I, [2017-03-27T10:27:28.863945 #2989] INFO -- : Rendered inline template within layouts/application (164.8ms)
954
+ I, [2017-03-27T10:27:28.866338 #2989] INFO -- : Completed 200 OK in 168ms (Views: 167.8ms)
955
+ I, [2017-03-27T10:27:32.157260 #2989] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:27:32 -0700
956
+ I, [2017-03-27T10:27:32.157992 #2989] INFO -- : Processing by BaselineController#show as HTML
957
+ I, [2017-03-27T10:27:32.158675 #2989] INFO -- : Rendering baseline/show.html.erb within layouts/application
958
+ I, [2017-03-27T10:27:32.158785 #2989] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
959
+ I, [2017-03-27T10:27:32.159423 #2989] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms)
960
+ I, [2017-03-27T10:27:32.160522 #2989] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:27:32 -0700
961
+ I, [2017-03-27T10:27:33.721350 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
962
+ I, [2017-03-27T10:27:33.721409 #2989] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
963
+ I, [2017-03-27T10:27:33.722085 #2989] INFO -- : Rendering inline template within layouts/application
964
+ I, [2017-03-27T10:27:35.100677 #2989] INFO -- : Rendered inline template within layouts/application (1378.5ms)
965
+ I, [2017-03-27T10:27:35.101925 #2989] INFO -- : Completed 200 OK in 1380ms (Views: 1379.9ms)
966
+ I, [2017-03-27T10:27:35.106079 #2989] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:27:35 -0700
967
+ I, [2017-03-27T10:27:36.702817 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
968
+ I, [2017-03-27T10:27:36.702893 #2989] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
969
+ I, [2017-03-27T10:27:36.703458 #2989] INFO -- : Rendering inline template within layouts/application
970
+ I, [2017-03-27T10:27:38.155454 #2989] INFO -- : Rendered inline template within layouts/application (1451.9ms)
971
+ I, [2017-03-27T10:27:38.156688 #2989] INFO -- : Completed 200 OK in 1454ms (Views: 1453.3ms)
972
+ I, [2017-03-27T10:27:41.884284 #2989] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:27:41 -0700
973
+ I, [2017-03-27T10:27:41.884914 #2989] INFO -- : Processing by BaselineController#show as HTML
974
+ I, [2017-03-27T10:27:41.885358 #2989] INFO -- : Rendering baseline/show.html.erb within layouts/application
975
+ I, [2017-03-27T10:27:41.885455 #2989] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
976
+ I, [2017-03-27T10:27:41.885949 #2989] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
977
+ I, [2017-03-27T10:27:42.021421 #2989] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:27:42 -0700
978
+ I, [2017-03-27T10:27:43.724904 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
979
+ I, [2017-03-27T10:27:43.724979 #2989] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
980
+ I, [2017-03-27T10:27:43.725732 #2989] INFO -- : Rendering inline template within layouts/application
981
+ I, [2017-03-27T10:27:45.099378 #2989] INFO -- : Rendered inline template within layouts/application (1373.6ms)
982
+ I, [2017-03-27T10:27:45.100507 #2989] INFO -- : Completed 200 OK in 1375ms (Views: 1374.9ms)
983
+ I, [2017-03-27T10:27:45.290278 #2989] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:27:45 -0700
984
+ I, [2017-03-27T10:27:46.951671 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
985
+ I, [2017-03-27T10:27:46.951758 #2989] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
986
+ I, [2017-03-27T10:27:46.952450 #2989] INFO -- : Rendering inline template within layouts/application
987
+ I, [2017-03-27T10:27:48.283095 #2989] INFO -- : Rendered inline template within layouts/application (1330.6ms)
988
+ I, [2017-03-27T10:27:48.284834 #2989] INFO -- : Completed 200 OK in 1333ms (Views: 1332.5ms)
989
+ I, [2017-03-27T10:37:16.306128 #7476] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:16 -0700
990
+ I, [2017-03-27T10:37:16.320858 #7476] INFO -- : Processing by BaselineController#show as HTML
991
+ I, [2017-03-27T10:37:16.330065 #7476] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.8ms)
992
+ I, [2017-03-27T10:37:16.339293 #7476] INFO -- : Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
993
+ I, [2017-03-27T10:37:16.340520 #7476] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:16 -0700
994
+ I, [2017-03-27T10:37:16.341899 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
995
+ I, [2017-03-27T10:37:16.341951 #7476] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
996
+ I, [2017-03-27T10:37:17.488795 #7476] INFO -- : Rendered inline template within layouts/application (1141.9ms)
997
+ I, [2017-03-27T10:37:17.491441 #7476] INFO -- : Completed 200 OK in 1149ms (Views: 1146.8ms | ActiveRecord: 0.0ms)
998
+ I, [2017-03-27T10:37:17.494877 #7476] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:17 -0700
999
+ I, [2017-03-27T10:37:17.495407 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
1000
+ I, [2017-03-27T10:37:17.495442 #7476] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1001
+ I, [2017-03-27T10:37:17.723226 #7476] INFO -- : Rendered inline template within layouts/application (227.0ms)
1002
+ I, [2017-03-27T10:37:17.725737 #7476] INFO -- : Completed 200 OK in 230ms (Views: 229.7ms | ActiveRecord: 0.0ms)
1003
+ I, [2017-03-27T10:37:17.911239 #7476] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:17 -0700
1004
+ I, [2017-03-27T10:37:17.911890 #7476] INFO -- : Processing by BaselineController#show as HTML
1005
+ I, [2017-03-27T10:37:17.912348 #7476] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1006
+ I, [2017-03-27T10:37:17.912876 #7476] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1007
+ I, [2017-03-27T10:37:17.960616 #7476] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:17 -0700
1008
+ I, [2017-03-27T10:37:17.961183 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
1009
+ I, [2017-03-27T10:37:17.961227 #7476] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1010
+ I, [2017-03-27T10:37:18.135901 #7476] INFO -- : Rendered inline template within layouts/application (174.2ms)
1011
+ I, [2017-03-27T10:37:18.137178 #7476] INFO -- : Completed 200 OK in 176ms (Views: 175.6ms | ActiveRecord: 0.0ms)
1012
+ I, [2017-03-27T10:37:18.200884 #7476] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:18 -0700
1013
+ I, [2017-03-27T10:37:18.201392 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
1014
+ I, [2017-03-27T10:37:18.201432 #7476] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1015
+ I, [2017-03-27T10:37:18.378362 #7476] INFO -- : Rendered inline template within layouts/application (176.5ms)
1016
+ I, [2017-03-27T10:37:18.380416 #7476] INFO -- : Completed 200 OK in 179ms (Views: 178.7ms | ActiveRecord: 0.0ms)
1017
+ I, [2017-03-27T10:37:21.151569 #7476] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:21 -0700
1018
+ I, [2017-03-27T10:37:21.152134 #7476] INFO -- : Processing by BaselineController#show as HTML
1019
+ I, [2017-03-27T10:37:21.152506 #7476] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1020
+ I, [2017-03-27T10:37:21.152980 #7476] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1021
+ I, [2017-03-27T10:37:21.153853 #7476] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:21 -0700
1022
+ I, [2017-03-27T10:37:22.606238 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
1023
+ I, [2017-03-27T10:37:22.606295 #7476] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1024
+ I, [2017-03-27T10:37:23.738795 #7476] INFO -- : Rendered inline template within layouts/application (1131.8ms)
1025
+ I, [2017-03-27T10:37:23.739951 #7476] INFO -- : Completed 200 OK in 1134ms (Views: 1133.1ms | ActiveRecord: 0.0ms)
1026
+ I, [2017-03-27T10:37:23.743357 #7476] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:23 -0700
1027
+ I, [2017-03-27T10:37:25.238777 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
1028
+ I, [2017-03-27T10:37:25.238870 #7476] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1029
+ I, [2017-03-27T10:37:26.549285 #7476] INFO -- : Rendered inline template within layouts/application (1309.7ms)
1030
+ I, [2017-03-27T10:37:26.551363 #7476] INFO -- : Completed 200 OK in 1312ms (Views: 1311.9ms | ActiveRecord: 0.0ms)
1031
+ I, [2017-03-27T10:37:29.504056 #7476] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:29 -0700
1032
+ I, [2017-03-27T10:37:29.504666 #7476] INFO -- : Processing by BaselineController#show as HTML
1033
+ I, [2017-03-27T10:37:29.505118 #7476] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1034
+ I, [2017-03-27T10:37:29.505670 #7476] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1035
+ I, [2017-03-27T10:37:29.630557 #7476] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:29 -0700
1036
+ I, [2017-03-27T10:37:30.809512 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
1037
+ I, [2017-03-27T10:37:30.809563 #7476] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1038
+ I, [2017-03-27T10:37:32.130306 #7476] INFO -- : Rendered inline template within layouts/application (1320.1ms)
1039
+ I, [2017-03-27T10:37:32.132376 #7476] INFO -- : Completed 200 OK in 1323ms (Views: 1322.3ms | ActiveRecord: 0.0ms)
1040
+ I, [2017-03-27T10:37:32.399989 #7476] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:32 -0700
1041
+ I, [2017-03-27T10:37:33.782682 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
1042
+ I, [2017-03-27T10:37:33.782758 #7476] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1043
+ I, [2017-03-27T10:37:35.032888 #7476] INFO -- : Rendered inline template within layouts/application (1249.4ms)
1044
+ I, [2017-03-27T10:37:35.034033 #7476] INFO -- : Completed 200 OK in 1251ms (Views: 1250.7ms | ActiveRecord: 0.0ms)
1045
+ I, [2017-03-27T10:37:55.201027 #7744] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:55 -0700
1046
+ I, [2017-03-27T10:37:55.215059 #7744] INFO -- : Processing by BaselineController#show as HTML
1047
+ I, [2017-03-27T10:37:55.220562 #7744] INFO -- : Rendering baseline/show.html.erb within layouts/application
1048
+ I, [2017-03-27T10:37:55.221087 #7744] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
1049
+ I, [2017-03-27T10:37:55.234524 #7744] INFO -- : Completed 200 OK in 19ms (Views: 17.5ms)
1050
+ I, [2017-03-27T10:37:55.237764 #7744] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:55 -0700
1051
+ I, [2017-03-27T10:37:55.239514 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
1052
+ I, [2017-03-27T10:37:55.239564 #7744] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1053
+ I, [2017-03-27T10:37:55.243872 #7744] INFO -- : Rendering inline template within layouts/application
1054
+ I, [2017-03-27T10:37:56.490593 #7744] INFO -- : Rendered inline template within layouts/application (1246.6ms)
1055
+ I, [2017-03-27T10:37:56.493814 #7744] INFO -- : Completed 200 OK in 1254ms (Views: 1250.2ms)
1056
+ I, [2017-03-27T10:37:56.501023 #7744] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:56 -0700
1057
+ I, [2017-03-27T10:37:56.502231 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
1058
+ I, [2017-03-27T10:37:56.502336 #7744] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1059
+ I, [2017-03-27T10:37:56.503193 #7744] INFO -- : Rendering inline template within layouts/application
1060
+ I, [2017-03-27T10:37:56.754155 #7744] INFO -- : Rendered inline template within layouts/application (250.9ms)
1061
+ I, [2017-03-27T10:37:56.756726 #7744] INFO -- : Completed 200 OK in 254ms (Views: 253.7ms)
1062
+ I, [2017-03-27T10:37:56.957376 #7744] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:56 -0700
1063
+ I, [2017-03-27T10:37:56.958028 #7744] INFO -- : Processing by BaselineController#show as HTML
1064
+ I, [2017-03-27T10:37:56.958532 #7744] INFO -- : Rendering baseline/show.html.erb within layouts/application
1065
+ I, [2017-03-27T10:37:56.958644 #7744] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1066
+ I, [2017-03-27T10:37:56.959167 #7744] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
1067
+ I, [2017-03-27T10:37:57.020446 #7744] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:57 -0700
1068
+ I, [2017-03-27T10:37:57.020990 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
1069
+ I, [2017-03-27T10:37:57.021033 #7744] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1070
+ I, [2017-03-27T10:37:57.021615 #7744] INFO -- : Rendering inline template within layouts/application
1071
+ I, [2017-03-27T10:37:57.166640 #7744] INFO -- : Rendered inline template within layouts/application (144.9ms)
1072
+ I, [2017-03-27T10:37:57.167899 #7744] INFO -- : Completed 200 OK in 147ms (Views: 146.5ms)
1073
+ I, [2017-03-27T10:37:57.239509 #7744] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:57 -0700
1074
+ I, [2017-03-27T10:37:57.240169 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
1075
+ I, [2017-03-27T10:37:57.240216 #7744] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1076
+ I, [2017-03-27T10:37:57.240849 #7744] INFO -- : Rendering inline template within layouts/application
1077
+ I, [2017-03-27T10:37:57.378381 #7744] INFO -- : Rendered inline template within layouts/application (137.4ms)
1078
+ I, [2017-03-27T10:37:57.380070 #7744] INFO -- : Completed 200 OK in 140ms (Views: 139.4ms)
1079
+ I, [2017-03-27T10:38:00.139255 #7744] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:38:00 -0700
1080
+ I, [2017-03-27T10:38:00.140082 #7744] INFO -- : Processing by BaselineController#show as HTML
1081
+ I, [2017-03-27T10:38:00.140514 #7744] INFO -- : Rendering baseline/show.html.erb within layouts/application
1082
+ I, [2017-03-27T10:38:00.140627 #7744] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1083
+ I, [2017-03-27T10:38:00.141058 #7744] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms)
1084
+ I, [2017-03-27T10:38:00.142027 #7744] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:38:00 -0700
1085
+ I, [2017-03-27T10:38:01.569994 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
1086
+ I, [2017-03-27T10:38:01.570063 #7744] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1087
+ I, [2017-03-27T10:38:01.570820 #7744] INFO -- : Rendering inline template within layouts/application
1088
+ I, [2017-03-27T10:38:02.716214 #7744] INFO -- : Rendered inline template within layouts/application (1145.3ms)
1089
+ I, [2017-03-27T10:38:02.717268 #7744] INFO -- : Completed 200 OK in 1147ms (Views: 1146.6ms)
1090
+ I, [2017-03-27T10:38:02.721468 #7744] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:38:02 -0700
1091
+ I, [2017-03-27T10:38:04.129450 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
1092
+ I, [2017-03-27T10:38:04.129504 #7744] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1093
+ I, [2017-03-27T10:38:04.130092 #7744] INFO -- : Rendering inline template within layouts/application
1094
+ I, [2017-03-27T10:38:05.208886 #7744] INFO -- : Rendered inline template within layouts/application (1078.7ms)
1095
+ I, [2017-03-27T10:38:05.209788 #7744] INFO -- : Completed 200 OK in 1080ms (Views: 1079.7ms)
1096
+ I, [2017-03-27T10:38:08.270469 #7744] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:38:08 -0700
1097
+ I, [2017-03-27T10:38:08.271051 #7744] INFO -- : Processing by BaselineController#show as HTML
1098
+ I, [2017-03-27T10:38:08.271470 #7744] INFO -- : Rendering baseline/show.html.erb within layouts/application
1099
+ I, [2017-03-27T10:38:08.271566 #7744] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1100
+ I, [2017-03-27T10:38:08.272037 #7744] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms)
1101
+ I, [2017-03-27T10:38:08.389421 #7744] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:38:08 -0700
1102
+ I, [2017-03-27T10:38:09.590535 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
1103
+ I, [2017-03-27T10:38:09.590602 #7744] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1104
+ I, [2017-03-27T10:38:09.591252 #7744] INFO -- : Rendering inline template within layouts/application
1105
+ I, [2017-03-27T10:38:10.717132 #7744] INFO -- : Rendered inline template within layouts/application (1125.8ms)
1106
+ I, [2017-03-27T10:38:10.718060 #7744] INFO -- : Completed 200 OK in 1127ms (Views: 1126.9ms)
1107
+ I, [2017-03-27T10:38:10.901708 #7744] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:38:10 -0700
1108
+ I, [2017-03-27T10:38:12.196753 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
1109
+ I, [2017-03-27T10:38:12.196809 #7744] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1110
+ I, [2017-03-27T10:38:12.197525 #7744] INFO -- : Rendering inline template within layouts/application
1111
+ I, [2017-03-27T10:38:13.364023 #7744] INFO -- : Rendered inline template within layouts/application (1166.4ms)
1112
+ I, [2017-03-27T10:38:13.366268 #7744] INFO -- : Completed 200 OK in 1169ms (Views: 1168.8ms)
1113
+ I, [2017-03-27T22:42:09.791250 #2639] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:09 -0700
1114
+ I, [2017-03-27T22:42:09.807927 #2639] INFO -- : Processing by BaselineController#show as HTML
1115
+ I, [2017-03-27T22:42:09.814934 #2639] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
1116
+ I, [2017-03-27T22:42:09.821634 #2639] INFO -- : Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
1117
+ I, [2017-03-27T22:42:09.822739 #2639] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:09 -0700
1118
+ I, [2017-03-27T22:42:09.823422 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
1119
+ I, [2017-03-27T22:42:09.823453 #2639] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1120
+ I, [2017-03-27T22:42:10.968733 #2639] INFO -- : Rendered inline template within layouts/application (1137.4ms)
1121
+ I, [2017-03-27T22:42:10.971492 #2639] INFO -- : Completed 200 OK in 1148ms (Views: 1144.7ms | ActiveRecord: 0.0ms)
1122
+ I, [2017-03-27T22:42:10.974769 #2639] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:10 -0700
1123
+ I, [2017-03-27T22:42:10.975386 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
1124
+ I, [2017-03-27T22:42:10.975426 #2639] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1125
+ I, [2017-03-27T22:42:11.204020 #2639] INFO -- : Rendered inline template within layouts/application (228.0ms)
1126
+ I, [2017-03-27T22:42:11.206554 #2639] INFO -- : Completed 200 OK in 231ms (Views: 230.7ms | ActiveRecord: 0.0ms)
1127
+ I, [2017-03-27T22:42:11.373013 #2639] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:11 -0700
1128
+ I, [2017-03-27T22:42:11.373635 #2639] INFO -- : Processing by BaselineController#show as HTML
1129
+ I, [2017-03-27T22:42:11.374066 #2639] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1130
+ I, [2017-03-27T22:42:11.374543 #2639] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1131
+ I, [2017-03-27T22:42:11.433589 #2639] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:11 -0700
1132
+ I, [2017-03-27T22:42:11.434277 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
1133
+ I, [2017-03-27T22:42:11.434327 #2639] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1134
+ I, [2017-03-27T22:42:11.620980 #2639] INFO -- : Rendered inline template within layouts/application (186.2ms)
1135
+ I, [2017-03-27T22:42:11.622339 #2639] INFO -- : Completed 200 OK in 188ms (Views: 187.6ms | ActiveRecord: 0.0ms)
1136
+ I, [2017-03-27T22:42:11.687162 #2639] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:11 -0700
1137
+ I, [2017-03-27T22:42:11.687705 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
1138
+ I, [2017-03-27T22:42:11.687744 #2639] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1139
+ I, [2017-03-27T22:42:11.877486 #2639] INFO -- : Rendered inline template within layouts/application (189.1ms)
1140
+ I, [2017-03-27T22:42:11.878235 #2639] INFO -- : Completed 200 OK in 190ms (Views: 190.1ms | ActiveRecord: 0.0ms)
1141
+ I, [2017-03-27T22:42:14.834008 #2639] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:14 -0700
1142
+ I, [2017-03-27T22:42:14.834547 #2639] INFO -- : Processing by BaselineController#show as HTML
1143
+ I, [2017-03-27T22:42:14.834899 #2639] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1144
+ I, [2017-03-27T22:42:14.835281 #2639] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1145
+ I, [2017-03-27T22:42:14.836111 #2639] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:14 -0700
1146
+ I, [2017-03-27T22:42:16.307672 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
1147
+ I, [2017-03-27T22:42:16.307783 #2639] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1148
+ I, [2017-03-27T22:42:17.641491 #2639] INFO -- : Rendered inline template within layouts/application (1333.0ms)
1149
+ I, [2017-03-27T22:42:17.642598 #2639] INFO -- : Completed 200 OK in 1335ms (Views: 1334.2ms | ActiveRecord: 0.0ms)
1150
+ I, [2017-03-27T22:42:17.645961 #2639] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:17 -0700
1151
+ I, [2017-03-27T22:42:19.058698 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
1152
+ I, [2017-03-27T22:42:19.058761 #2639] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1153
+ I, [2017-03-27T22:42:20.492937 #2639] INFO -- : Rendered inline template within layouts/application (1433.6ms)
1154
+ I, [2017-03-27T22:42:20.494795 #2639] INFO -- : Completed 200 OK in 1436ms (Views: 1435.5ms | ActiveRecord: 0.0ms)
1155
+ I, [2017-03-27T22:42:23.910793 #2639] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:23 -0700
1156
+ I, [2017-03-27T22:42:23.911395 #2639] INFO -- : Processing by BaselineController#show as HTML
1157
+ I, [2017-03-27T22:42:23.911809 #2639] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1158
+ I, [2017-03-27T22:42:23.912294 #2639] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1159
+ I, [2017-03-27T22:42:24.034800 #2639] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:24 -0700
1160
+ I, [2017-03-27T22:42:25.309397 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
1161
+ I, [2017-03-27T22:42:25.309451 #2639] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1162
+ I, [2017-03-27T22:42:26.647261 #2639] INFO -- : Rendered inline template within layouts/application (1337.1ms)
1163
+ I, [2017-03-27T22:42:26.648469 #2639] INFO -- : Completed 200 OK in 1339ms (Views: 1338.4ms | ActiveRecord: 0.0ms)
1164
+ I, [2017-03-27T22:42:26.831030 #2639] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:26 -0700
1165
+ I, [2017-03-27T22:42:28.270964 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
1166
+ I, [2017-03-27T22:42:28.271019 #2639] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1167
+ I, [2017-03-27T22:42:29.439345 #2639] INFO -- : Rendered inline template within layouts/application (1167.6ms)
1168
+ I, [2017-03-27T22:42:29.440410 #2639] INFO -- : Completed 200 OK in 1169ms (Views: 1168.8ms | ActiveRecord: 0.0ms)
1169
+ I, [2017-03-27T22:42:52.512951 #2706] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:52 -0700
1170
+ I, [2017-03-27T22:42:52.536249 #2706] INFO -- : Processing by BaselineController#show as HTML
1171
+ I, [2017-03-27T22:42:52.544629 #2706] INFO -- : Rendering baseline/show.html.erb within layouts/application
1172
+ I, [2017-03-27T22:42:52.545392 #2706] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.5ms)
1173
+ I, [2017-03-27T22:42:52.561903 #2706] INFO -- : Completed 200 OK in 25ms (Views: 23.1ms)
1174
+ I, [2017-03-27T22:42:52.564075 #2706] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:52 -0700
1175
+ I, [2017-03-27T22:42:52.565253 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
1176
+ I, [2017-03-27T22:42:52.565314 #2706] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1177
+ I, [2017-03-27T22:42:52.570274 #2706] INFO -- : Rendering inline template within layouts/application
1178
+ I, [2017-03-27T22:42:54.022051 #2706] INFO -- : Rendered inline template within layouts/application (1451.6ms)
1179
+ I, [2017-03-27T22:42:54.025063 #2706] INFO -- : Completed 200 OK in 1460ms (Views: 1455.2ms)
1180
+ I, [2017-03-27T22:42:54.030882 #2706] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:54 -0700
1181
+ I, [2017-03-27T22:42:54.031466 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
1182
+ I, [2017-03-27T22:42:54.031504 #2706] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1183
+ I, [2017-03-27T22:42:54.032126 #2706] INFO -- : Rendering inline template within layouts/application
1184
+ I, [2017-03-27T22:42:54.271927 #2706] INFO -- : Rendered inline template within layouts/application (239.7ms)
1185
+ I, [2017-03-27T22:42:54.274709 #2706] INFO -- : Completed 200 OK in 243ms (Views: 242.7ms)
1186
+ I, [2017-03-27T22:42:54.490587 #2706] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:54 -0700
1187
+ I, [2017-03-27T22:42:54.491195 #2706] INFO -- : Processing by BaselineController#show as HTML
1188
+ I, [2017-03-27T22:42:54.491656 #2706] INFO -- : Rendering baseline/show.html.erb within layouts/application
1189
+ I, [2017-03-27T22:42:54.491767 #2706] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1190
+ I, [2017-03-27T22:42:54.492262 #2706] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
1191
+ I, [2017-03-27T22:42:54.557274 #2706] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:54 -0700
1192
+ I, [2017-03-27T22:42:54.557824 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
1193
+ I, [2017-03-27T22:42:54.557863 #2706] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1194
+ I, [2017-03-27T22:42:54.558390 #2706] INFO -- : Rendering inline template within layouts/application
1195
+ I, [2017-03-27T22:42:54.731592 #2706] INFO -- : Rendered inline template within layouts/application (173.1ms)
1196
+ I, [2017-03-27T22:42:54.733129 #2706] INFO -- : Completed 200 OK in 175ms (Views: 174.9ms)
1197
+ I, [2017-03-27T22:42:54.821314 #2706] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:54 -0700
1198
+ I, [2017-03-27T22:42:54.821871 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
1199
+ I, [2017-03-27T22:42:54.821912 #2706] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1200
+ I, [2017-03-27T22:42:54.822468 #2706] INFO -- : Rendering inline template within layouts/application
1201
+ I, [2017-03-27T22:42:55.014139 #2706] INFO -- : Rendered inline template within layouts/application (191.6ms)
1202
+ I, [2017-03-27T22:42:55.016267 #2706] INFO -- : Completed 200 OK in 194ms (Views: 193.9ms)
1203
+ I, [2017-03-27T22:42:58.080084 #2706] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:58 -0700
1204
+ I, [2017-03-27T22:42:58.080633 #2706] INFO -- : Processing by BaselineController#show as HTML
1205
+ I, [2017-03-27T22:42:58.081273 #2706] INFO -- : Rendering baseline/show.html.erb within layouts/application
1206
+ I, [2017-03-27T22:42:58.081374 #2706] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1207
+ I, [2017-03-27T22:42:58.081886 #2706] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms)
1208
+ I, [2017-03-27T22:42:58.082907 #2706] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:58 -0700
1209
+ I, [2017-03-27T22:42:59.602871 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
1210
+ I, [2017-03-27T22:42:59.602940 #2706] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1211
+ I, [2017-03-27T22:42:59.603660 #2706] INFO -- : Rendering inline template within layouts/application
1212
+ I, [2017-03-27T22:43:00.931029 #2706] INFO -- : Rendered inline template within layouts/application (1327.3ms)
1213
+ I, [2017-03-27T22:43:00.932278 #2706] INFO -- : Completed 200 OK in 1329ms (Views: 1328.7ms)
1214
+ I, [2017-03-27T22:43:00.937516 #2706] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:43:00 -0700
1215
+ I, [2017-03-27T22:43:02.611062 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
1216
+ I, [2017-03-27T22:43:02.611126 #2706] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1217
+ I, [2017-03-27T22:43:02.611907 #2706] INFO -- : Rendering inline template within layouts/application
1218
+ I, [2017-03-27T22:43:04.035979 #2706] INFO -- : Rendered inline template within layouts/application (1424.0ms)
1219
+ I, [2017-03-27T22:43:04.037100 #2706] INFO -- : Completed 200 OK in 1426ms (Views: 1425.3ms)
1220
+ I, [2017-03-27T22:43:07.356011 #2706] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:43:07 -0700
1221
+ I, [2017-03-27T22:43:07.356602 #2706] INFO -- : Processing by BaselineController#show as HTML
1222
+ I, [2017-03-27T22:43:07.357047 #2706] INFO -- : Rendering baseline/show.html.erb within layouts/application
1223
+ I, [2017-03-27T22:43:07.357142 #2706] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1224
+ I, [2017-03-27T22:43:07.357607 #2706] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms)
1225
+ I, [2017-03-27T22:43:07.494442 #2706] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:43:07 -0700
1226
+ I, [2017-03-27T22:43:08.806130 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
1227
+ I, [2017-03-27T22:43:08.806187 #2706] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1228
+ I, [2017-03-27T22:43:08.806862 #2706] INFO -- : Rendering inline template within layouts/application
1229
+ I, [2017-03-27T22:43:10.046467 #2706] INFO -- : Rendered inline template within layouts/application (1239.5ms)
1230
+ I, [2017-03-27T22:43:10.047512 #2706] INFO -- : Completed 200 OK in 1241ms (Views: 1240.6ms)
1231
+ I, [2017-03-27T22:43:10.247129 #2706] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:43:10 -0700
1232
+ I, [2017-03-27T22:43:11.614914 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
1233
+ I, [2017-03-27T22:43:11.615006 #2706] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1234
+ I, [2017-03-27T22:43:11.615793 #2706] INFO -- : Rendering inline template within layouts/application
1235
+ I, [2017-03-27T22:43:12.843084 #2706] INFO -- : Rendered inline template within layouts/application (1227.2ms)
1236
+ I, [2017-03-27T22:43:12.844210 #2706] INFO -- : Completed 200 OK in 1229ms (Views: 1228.5ms)
1237
+ I, [2017-03-27T22:49:48.674252 #3420] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:49:48 -0700
1238
+ I, [2017-03-27T22:49:48.687566 #3420] INFO -- : Processing by BaselineController#show as HTML
1239
+ I, [2017-03-27T22:49:48.694005 #3420] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
1240
+ I, [2017-03-27T22:49:48.701313 #3420] INFO -- : Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
1241
+ I, [2017-03-27T22:49:48.702391 #3420] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:49:48 -0700
1242
+ I, [2017-03-27T22:49:48.703126 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
1243
+ I, [2017-03-27T22:49:48.703156 #3420] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1244
+ I, [2017-03-27T22:49:49.767054 #3420] INFO -- : Rendered inline template within layouts/application (1059.0ms)
1245
+ I, [2017-03-27T22:49:49.769620 #3420] INFO -- : Completed 200 OK in 1066ms (Views: 1064.0ms | ActiveRecord: 0.0ms)
1246
+ I, [2017-03-27T22:49:49.773136 #3420] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:49:49 -0700
1247
+ I, [2017-03-27T22:49:49.773680 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
1248
+ I, [2017-03-27T22:49:49.773712 #3420] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1249
+ I, [2017-03-27T22:49:50.002326 #3420] INFO -- : Rendered inline template within layouts/application (228.0ms)
1250
+ I, [2017-03-27T22:49:50.004992 #3420] INFO -- : Completed 200 OK in 231ms (Views: 230.9ms | ActiveRecord: 0.0ms)
1251
+ I, [2017-03-27T22:49:50.184223 #3420] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:49:50 -0700
1252
+ I, [2017-03-27T22:49:50.184873 #3420] INFO -- : Processing by BaselineController#show as HTML
1253
+ I, [2017-03-27T22:49:50.185319 #3420] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1254
+ I, [2017-03-27T22:49:50.185818 #3420] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1255
+ I, [2017-03-27T22:49:50.240680 #3420] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:49:50 -0700
1256
+ I, [2017-03-27T22:49:50.241346 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
1257
+ I, [2017-03-27T22:49:50.241397 #3420] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1258
+ I, [2017-03-27T22:49:50.420363 #3420] INFO -- : Rendered inline template within layouts/application (178.4ms)
1259
+ I, [2017-03-27T22:49:50.421627 #3420] INFO -- : Completed 200 OK in 180ms (Views: 179.8ms | ActiveRecord: 0.0ms)
1260
+ I, [2017-03-27T22:49:50.489919 #3420] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:49:50 -0700
1261
+ I, [2017-03-27T22:49:50.490464 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
1262
+ I, [2017-03-27T22:49:50.490504 #3420] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1263
+ I, [2017-03-27T22:49:50.667482 #3420] INFO -- : Rendered inline template within layouts/application (176.5ms)
1264
+ I, [2017-03-27T22:49:50.669881 #3420] INFO -- : Completed 200 OK in 179ms (Views: 179.0ms | ActiveRecord: 0.0ms)
1265
+ I, [2017-03-27T22:49:53.550963 #3420] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:49:53 -0700
1266
+ I, [2017-03-27T22:49:53.551582 #3420] INFO -- : Processing by BaselineController#show as HTML
1267
+ I, [2017-03-27T22:49:53.552008 #3420] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1268
+ I, [2017-03-27T22:49:53.552488 #3420] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1269
+ I, [2017-03-27T22:49:53.553654 #3420] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:49:53 -0700
1270
+ I, [2017-03-27T22:49:55.006229 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
1271
+ I, [2017-03-27T22:49:55.006311 #3420] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1272
+ I, [2017-03-27T22:49:56.187405 #3420] INFO -- : Rendered inline template within layouts/application (1180.4ms)
1273
+ I, [2017-03-27T22:49:56.188520 #3420] INFO -- : Completed 200 OK in 1182ms (Views: 1181.6ms | ActiveRecord: 0.0ms)
1274
+ I, [2017-03-27T22:49:56.191850 #3420] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:49:56 -0700
1275
+ I, [2017-03-27T22:49:57.675324 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
1276
+ I, [2017-03-27T22:49:57.675392 #3420] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1277
+ I, [2017-03-27T22:49:58.975610 #3420] INFO -- : Rendered inline template within layouts/application (1299.6ms)
1278
+ I, [2017-03-27T22:49:58.977489 #3420] INFO -- : Completed 200 OK in 1302ms (Views: 1301.6ms | ActiveRecord: 0.0ms)
1279
+ I, [2017-03-27T22:50:02.015925 #3420] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:50:02 -0700
1280
+ I, [2017-03-27T22:50:02.016538 #3420] INFO -- : Processing by BaselineController#show as HTML
1281
+ I, [2017-03-27T22:50:02.016959 #3420] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1282
+ I, [2017-03-27T22:50:02.017448 #3420] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1283
+ I, [2017-03-27T22:50:02.138751 #3420] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:50:02 -0700
1284
+ I, [2017-03-27T22:50:03.279308 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
1285
+ I, [2017-03-27T22:50:03.279373 #3420] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1286
+ I, [2017-03-27T22:50:04.449048 #3420] INFO -- : Rendered inline template within layouts/application (1169.0ms)
1287
+ I, [2017-03-27T22:50:04.450527 #3420] INFO -- : Completed 200 OK in 1171ms (Views: 1170.6ms | ActiveRecord: 0.0ms)
1288
+ I, [2017-03-27T22:50:04.662667 #3420] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:50:04 -0700
1289
+ I, [2017-03-27T22:50:05.848321 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
1290
+ I, [2017-03-27T22:50:05.848391 #3420] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1291
+ I, [2017-03-27T22:50:06.946062 #3420] INFO -- : Rendered inline template within layouts/application (1097.0ms)
1292
+ I, [2017-03-27T22:50:06.946962 #3420] INFO -- : Completed 200 OK in 1099ms (Views: 1098.0ms | ActiveRecord: 0.0ms)
1293
+ I, [2017-03-27T22:50:25.212253 #3842] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:50:25 -0700
1294
+ I, [2017-03-27T22:50:25.226189 #3842] INFO -- : Processing by BaselineController#show as HTML
1295
+ I, [2017-03-27T22:50:25.231477 #3842] INFO -- : Rendering baseline/show.html.erb within layouts/application
1296
+ I, [2017-03-27T22:50:25.231959 #3842] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
1297
+ I, [2017-03-27T22:50:25.242524 #3842] INFO -- : Completed 200 OK in 16ms (Views: 14.7ms)
1298
+ I, [2017-03-27T22:50:25.244445 #3842] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:50:25 -0700
1299
+ I, [2017-03-27T22:50:25.245433 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
1300
+ I, [2017-03-27T22:50:25.245786 #3842] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1301
+ I, [2017-03-27T22:50:25.250954 #3842] INFO -- : Rendering inline template within layouts/application
1302
+ I, [2017-03-27T22:50:26.455520 #3842] INFO -- : Rendered inline template within layouts/application (1204.5ms)
1303
+ I, [2017-03-27T22:50:26.457907 #3842] INFO -- : Completed 200 OK in 1212ms (Views: 1207.3ms)
1304
+ I, [2017-03-27T22:50:26.463583 #3842] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:50:26 -0700
1305
+ I, [2017-03-27T22:50:26.464254 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
1306
+ I, [2017-03-27T22:50:26.464288 #3842] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1307
+ I, [2017-03-27T22:50:26.464811 #3842] INFO -- : Rendering inline template within layouts/application
1308
+ I, [2017-03-27T22:50:26.660028 #3842] INFO -- : Rendered inline template within layouts/application (195.1ms)
1309
+ I, [2017-03-27T22:50:26.662064 #3842] INFO -- : Completed 200 OK in 198ms (Views: 197.3ms)
1310
+ I, [2017-03-27T22:50:26.855572 #3842] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:50:26 -0700
1311
+ I, [2017-03-27T22:50:26.856208 #3842] INFO -- : Processing by BaselineController#show as HTML
1312
+ I, [2017-03-27T22:50:26.856729 #3842] INFO -- : Rendering baseline/show.html.erb within layouts/application
1313
+ I, [2017-03-27T22:50:26.856865 #3842] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1314
+ I, [2017-03-27T22:50:26.857519 #3842] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms)
1315
+ I, [2017-03-27T22:50:26.920779 #3842] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:50:26 -0700
1316
+ I, [2017-03-27T22:50:26.921378 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
1317
+ I, [2017-03-27T22:50:26.921422 #3842] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1318
+ I, [2017-03-27T22:50:26.921972 #3842] INFO -- : Rendering inline template within layouts/application
1319
+ I, [2017-03-27T22:50:27.081037 #3842] INFO -- : Rendered inline template within layouts/application (159.0ms)
1320
+ I, [2017-03-27T22:50:27.082475 #3842] INFO -- : Completed 200 OK in 161ms (Views: 160.6ms)
1321
+ I, [2017-03-27T22:50:27.160979 #3842] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:50:27 -0700
1322
+ I, [2017-03-27T22:50:27.162711 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
1323
+ I, [2017-03-27T22:50:27.162875 #3842] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1324
+ I, [2017-03-27T22:50:27.164055 #3842] INFO -- : Rendering inline template within layouts/application
1325
+ I, [2017-03-27T22:50:27.318070 #3842] INFO -- : Rendered inline template within layouts/application (153.9ms)
1326
+ I, [2017-03-27T22:50:27.320026 #3842] INFO -- : Completed 200 OK in 157ms (Views: 156.3ms)
1327
+ I, [2017-03-27T22:50:30.055408 #3842] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:50:30 -0700
1328
+ I, [2017-03-27T22:50:30.055922 #3842] INFO -- : Processing by BaselineController#show as HTML
1329
+ I, [2017-03-27T22:50:30.056309 #3842] INFO -- : Rendering baseline/show.html.erb within layouts/application
1330
+ I, [2017-03-27T22:50:30.056391 #3842] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
1331
+ I, [2017-03-27T22:50:30.056842 #3842] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms)
1332
+ I, [2017-03-27T22:50:30.057687 #3842] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:50:30 -0700
1333
+ I, [2017-03-27T22:50:31.437521 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
1334
+ I, [2017-03-27T22:50:31.437589 #3842] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1335
+ I, [2017-03-27T22:50:31.438290 #3842] INFO -- : Rendering inline template within layouts/application
1336
+ I, [2017-03-27T22:50:32.768421 #3842] INFO -- : Rendered inline template within layouts/application (1330.0ms)
1337
+ I, [2017-03-27T22:50:32.769833 #3842] INFO -- : Completed 200 OK in 1332ms (Views: 1331.6ms)
1338
+ I, [2017-03-27T22:50:32.777052 #3842] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:50:32 -0700
1339
+ I, [2017-03-27T22:50:34.428890 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
1340
+ I, [2017-03-27T22:50:34.428969 #3842] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1341
+ I, [2017-03-27T22:50:34.429731 #3842] INFO -- : Rendering inline template within layouts/application
1342
+ I, [2017-03-27T22:50:35.807059 #3842] INFO -- : Rendered inline template within layouts/application (1377.2ms)
1343
+ I, [2017-03-27T22:50:35.809925 #3842] INFO -- : Completed 200 OK in 1381ms (Views: 1380.3ms)
1344
+ I, [2017-03-27T22:50:39.668611 #3842] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:50:39 -0700
1345
+ I, [2017-03-27T22:50:39.669251 #3842] INFO -- : Processing by BaselineController#show as HTML
1346
+ I, [2017-03-27T22:50:39.669970 #3842] INFO -- : Rendering baseline/show.html.erb within layouts/application
1347
+ I, [2017-03-27T22:50:39.670210 #3842] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
1348
+ I, [2017-03-27T22:50:39.670786 #3842] INFO -- : Completed 200 OK in 1ms (Views: 1.2ms)
1349
+ I, [2017-03-27T22:50:39.820919 #3842] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:50:39 -0700
1350
+ I, [2017-03-27T22:50:41.153163 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
1351
+ I, [2017-03-27T22:50:41.153232 #3842] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
1352
+ I, [2017-03-27T22:50:41.154037 #3842] INFO -- : Rendering inline template within layouts/application
1353
+ I, [2017-03-27T22:50:42.708633 #3842] INFO -- : Rendered inline template within layouts/application (1554.5ms)
1354
+ I, [2017-03-27T22:50:42.710331 #3842] INFO -- : Completed 200 OK in 1557ms (Views: 1556.3ms)
1355
+ I, [2017-03-27T22:50:43.052710 #3842] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:50:43 -0700
1356
+ I, [2017-03-27T22:50:44.329997 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
1357
+ I, [2017-03-27T22:50:44.330065 #3842] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
1358
+ I, [2017-03-27T22:50:44.330715 #3842] INFO -- : Rendering inline template within layouts/application
1359
+ I, [2017-03-27T22:50:45.741182 #3842] INFO -- : Rendered inline template within layouts/application (1410.4ms)
1360
+ I, [2017-03-27T22:50:45.744287 #3842] INFO -- : Completed 200 OK in 1414ms (Views: 1413.6ms)
1361
+ I, [2020-08-03T19:07:47.027613 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:07:47 -0400
1362
+ I, [2020-08-03T19:07:47.032564 #2784] INFO -- : Processing by BaselineController#show as HTML
1363
+ I, [2020-08-03T19:07:47.035679 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
1364
+ I, [2020-08-03T19:07:47.036369 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.5ms | Allocations: 98)
1365
+ I, [2020-08-03T19:07:47.042921 #2784] INFO -- : Completed 200 OK in 10ms (Views: 9.3ms | Allocations: 1312)
1366
+ I, [2020-08-03T19:07:47.045545 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:07:47 -0400
1367
+ I, [2020-08-03T19:07:47.046593 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
1368
+ I, [2020-08-03T19:07:47.046679 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
1369
+ I, [2020-08-03T19:07:47.049977 #2784] INFO -- : Rendering inline template within layouts/application
1370
+ I, [2020-08-03T19:07:48.823461 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1773.3ms | Allocations: 710139)
1371
+ I, [2020-08-03T19:07:48.825531 #2784] INFO -- : Completed 200 OK in 1779ms (Views: 1776.1ms | Allocations: 711252)
1372
+ I, [2020-08-03T19:07:48.833396 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:07:48 -0400
1373
+ I, [2020-08-03T19:07:48.834259 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
1374
+ I, [2020-08-03T19:07:48.834332 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
1375
+ I, [2020-08-03T19:07:48.835105 #2784] INFO -- : Rendering inline template within layouts/application
1376
+ I, [2020-08-03T19:07:49.035577 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 200.4ms | Allocations: 300170)
1377
+ I, [2020-08-03T19:07:49.037131 #2784] INFO -- : Completed 200 OK in 203ms (Views: 202.2ms | Allocations: 300789)
1378
+ I, [2020-08-03T19:07:49.280763 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:07:49 -0400
1379
+ I, [2020-08-03T19:07:49.281572 #2784] INFO -- : Processing by BaselineController#show as HTML
1380
+ I, [2020-08-03T19:07:49.282134 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
1381
+ I, [2020-08-03T19:07:49.282286 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1382
+ I, [2020-08-03T19:07:49.283218 #2784] INFO -- : Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 524)
1383
+ I, [2020-08-03T19:07:49.368231 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:07:49 -0400
1384
+ I, [2020-08-03T19:07:49.369249 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
1385
+ I, [2020-08-03T19:07:49.369409 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
1386
+ I, [2020-08-03T19:07:49.370076 #2784] INFO -- : Rendering inline template within layouts/application
1387
+ I, [2020-08-03T19:07:49.560516 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 190.3ms | Allocations: 300178)
1388
+ I, [2020-08-03T19:07:49.561771 #2784] INFO -- : Completed 200 OK in 192ms (Views: 191.9ms | Allocations: 300747)
1389
+ I, [2020-08-03T19:07:49.659283 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:07:49 -0400
1390
+ I, [2020-08-03T19:07:49.659942 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
1391
+ I, [2020-08-03T19:07:49.660015 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
1392
+ I, [2020-08-03T19:07:49.660705 #2784] INFO -- : Rendering inline template within layouts/application
1393
+ I, [2020-08-03T19:07:49.845460 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 184.7ms | Allocations: 300172)
1394
+ I, [2020-08-03T19:07:49.846395 #2784] INFO -- : Completed 200 OK in 186ms (Views: 186.0ms | Allocations: 300741)
1395
+ I, [2020-08-03T19:07:52.570963 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:07:52 -0400
1396
+ I, [2020-08-03T19:07:52.571629 #2784] INFO -- : Processing by BaselineController#show as HTML
1397
+ I, [2020-08-03T19:07:52.572078 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
1398
+ I, [2020-08-03T19:07:52.572179 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
1399
+ I, [2020-08-03T19:07:52.572915 #2784] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 524)
1400
+ I, [2020-08-03T19:07:52.575122 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:07:52 -0400
1401
+ I, [2020-08-03T19:07:53.810372 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
1402
+ I, [2020-08-03T19:07:53.810456 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
1403
+ I, [2020-08-03T19:07:53.811334 #2784] INFO -- : Rendering inline template within layouts/application
1404
+ I, [2020-08-03T19:07:55.323969 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1512.5ms | Allocations: 740141)
1405
+ I, [2020-08-03T19:07:55.325478 #2784] INFO -- : Completed 200 OK in 1515ms (Views: 1514.3ms | Allocations: 740802)
1406
+ I, [2020-08-03T19:07:55.330961 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:07:55 -0400
1407
+ I, [2020-08-03T19:07:56.586894 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
1408
+ I, [2020-08-03T19:07:56.586969 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
1409
+ I, [2020-08-03T19:07:56.587730 #2784] INFO -- : Rendering inline template within layouts/application
1410
+ I, [2020-08-03T19:07:58.364828 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1777.0ms | Allocations: 740138)
1411
+ I, [2020-08-03T19:07:58.365827 #2784] INFO -- : Completed 200 OK in 1779ms (Views: 1778.2ms | Allocations: 740797)
1412
+ I, [2020-08-03T19:08:01.152553 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:08:01 -0400
1413
+ I, [2020-08-03T19:08:01.153120 #2784] INFO -- : Processing by BaselineController#show as HTML
1414
+ I, [2020-08-03T19:08:01.153480 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
1415
+ I, [2020-08-03T19:08:01.153645 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
1416
+ I, [2020-08-03T19:08:01.154878 #2784] INFO -- : Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 524)
1417
+ I, [2020-08-03T19:08:01.264807 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:08:01 -0400
1418
+ I, [2020-08-03T19:08:02.283036 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
1419
+ I, [2020-08-03T19:08:02.283121 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
1420
+ I, [2020-08-03T19:08:02.283850 #2784] INFO -- : Rendering inline template within layouts/application
1421
+ I, [2020-08-03T19:08:03.528806 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1244.9ms | Allocations: 740141)
1422
+ I, [2020-08-03T19:08:03.530321 #2784] INFO -- : Completed 200 OK in 1247ms (Views: 1246.6ms | Allocations: 740802)
1423
+ I, [2020-08-03T19:08:03.668750 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:08:03 -0400
1424
+ I, [2020-08-03T19:08:04.640655 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
1425
+ I, [2020-08-03T19:08:04.640737 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
1426
+ I, [2020-08-03T19:08:04.641397 #2784] INFO -- : Rendering inline template within layouts/application
1427
+ I, [2020-08-03T19:08:06.076780 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1435.3ms | Allocations: 740135)
1428
+ I, [2020-08-03T19:08:06.078611 #2784] INFO -- : Completed 200 OK in 1438ms (Views: 1437.3ms | Allocations: 740796)