sitepress-rails 2.0.0.beta3 → 2.0.0.beta8

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.
@@ -0,0 +1,7 @@
1
+ module Sitepress
2
+ class SiteController < ::ApplicationController
3
+ # Extracted into a module because other controllers may need
4
+ # to be capable of serving Sitepress pages.
5
+ include Sitepress::SitePages
6
+ end
7
+ end
@@ -0,0 +1,12 @@
1
+ Sitepress.configuration.parent_engine.routes.draw do
2
+ if Sitepress.configuration.routes
3
+ constraints Sitepress::RouteConstraint.new do
4
+ get "*resource_path", controller: "sitepress/site", action: "show", as: :page, format: false
5
+ if has_named_route? :root
6
+ Rails.logger.warn 'Sitepress tried to configure `root to: "sitepress/site#show"`, but a root route was already defined.'
7
+ else
8
+ root to: "sitepress/site#show"
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require File.expand_path('../../sitepress-core/lib/sitepress/version', __FILE__)
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "sitepress-rails"
8
+ spec.version = Sitepress::VERSION
9
+ spec.authors = ["Brad Gessler"]
10
+ spec.email = ["bradgessler@gmail.com"]
11
+
12
+ spec.summary = %q{Sitepress rails integration.}
13
+ spec.homepage = "https://github.com/sitepress/sitepress"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
16
+ spec.bindir = "exe"
17
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
18
+ spec.require_paths = ["lib"]
19
+ spec.test_files = Dir["spec/**/*"]
20
+
21
+ spec.add_development_dependency "rspec-rails"
22
+ spec.add_development_dependency "pry"
23
+ spec.add_development_dependency "rails", ">= 4.0"
24
+
25
+ spec.add_runtime_dependency "sitepress-core", spec.version
26
+
27
+ # We don't need every single rals rependency, so grab the subset here.
28
+ rails_version = ">= 6.0"
29
+ spec.add_dependency "railties", rails_version
30
+ spec.add_dependency "actionpack", rails_version
31
+ spec.add_dependency "sprockets-rails", ">= 2.0.0"
32
+ end
@@ -0,0 +1,14 @@
1
+ ---
2
+ title: All pages
3
+ ---
4
+
5
+ <h1>This helps test to make sure we generate a site once per request by calling it a few times..</h1>
6
+
7
+ <p>There are <% current_page.siblings.size %> pages in this site. Here's each page:</p>
8
+ <ul>
9
+ <% site.resources.each do |resource| %>
10
+ <li><%= resource.request_path %></li>
11
+ <% end %>
12
+ </ul>
13
+
14
+ <p>I'm a sitepress page</p>
File without changes
@@ -0,0 +1,1056 @@
1
+ I, [2021-01-26T10:01:52.657624 #50517] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-01-26 10:01:52 -0800
2
+ I, [2021-01-26T10:01:52.659578 #50517] INFO -- : Processing by BaselineController#show as HTML
3
+ I, [2021-01-26T10:01:52.661262 #50517] INFO -- : Rendering baseline/show.html.erb within layouts/application
4
+ I, [2021-01-26T10:01:52.661875 #50517] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.5ms | Allocations: 97)
5
+ I, [2021-01-26T10:01:52.665663 #50517] INFO -- : Completed 200 OK in 6ms (Views: 5.5ms | Allocations: 1310)
6
+ I, [2021-01-26T10:01:52.666907 #50517] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-01-26 10:01:52 -0800
7
+ I, [2021-01-26T10:01:52.667496 #50517] INFO -- : Processing by Sitepress::SiteController#show as HTML
8
+ I, [2021-01-26T10:01:52.667551 #50517] INFO -- : Parameters: {"resource_path"=>"page-8981"}
9
+ I, [2021-01-26T10:01:52.669726 #50517] INFO -- : Rendering inline template within layouts/application
10
+ I, [2021-01-26T10:01:53.691357 #50517] INFO -- : Rendered inline template within layouts/application (Duration: 1021.6ms | Allocations: 720142)
11
+ I, [2021-01-26T10:01:53.692557 #50517] INFO -- : Completed 200 OK in 1025ms (Views: 1023.1ms | Allocations: 721257)
12
+ I, [2021-01-26T10:01:53.696523 #50517] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-01-26 10:01:53 -0800
13
+ I, [2021-01-26T10:01:53.697106 #50517] INFO -- : Processing by Sitepress::SiteController#show as HTML
14
+ I, [2021-01-26T10:01:53.697173 #50517] INFO -- : Parameters: {"resource_path"=>"page-8161"}
15
+ I, [2021-01-26T10:01:53.697783 #50517] INFO -- : Rendering inline template within layouts/application
16
+ I, [2021-01-26T10:01:53.821631 #50517] INFO -- : Rendered inline template within layouts/application (Duration: 123.8ms | Allocations: 300174)
17
+ I, [2021-01-26T10:01:53.822946 #50517] INFO -- : Completed 200 OK in 126ms (Views: 125.3ms | Allocations: 300794)
18
+ I, [2021-01-26T10:01:53.960459 #50517] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-01-26 10:01:53 -0800
19
+ I, [2021-01-26T10:01:53.960914 #50517] INFO -- : Processing by BaselineController#show as HTML
20
+ I, [2021-01-26T10:01:53.961220 #50517] INFO -- : Rendering baseline/show.html.erb within layouts/application
21
+ I, [2021-01-26T10:01:53.961309 #50517] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
22
+ I, [2021-01-26T10:01:53.961821 #50517] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 524)
23
+ I, [2021-01-26T10:01:54.003735 #50517] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-01-26 10:01:54 -0800
24
+ I, [2021-01-26T10:01:54.004179 #50517] INFO -- : Processing by Sitepress::SiteController#show as HTML
25
+ I, [2021-01-26T10:01:54.004226 #50517] INFO -- : Parameters: {"resource_path"=>"page-8981"}
26
+ I, [2021-01-26T10:01:54.004594 #50517] INFO -- : Rendering inline template within layouts/application
27
+ I, [2021-01-26T10:01:54.100183 #50517] INFO -- : Rendered inline template within layouts/application (Duration: 95.5ms | Allocations: 300182)
28
+ I, [2021-01-26T10:01:54.101195 #50517] INFO -- : Completed 200 OK in 97ms (Views: 96.7ms | Allocations: 300751)
29
+ I, [2021-01-26T10:01:54.153544 #50517] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-01-26 10:01:54 -0800
30
+ I, [2021-01-26T10:01:54.154018 #50517] INFO -- : Processing by Sitepress::SiteController#show as HTML
31
+ I, [2021-01-26T10:01:54.154067 #50517] INFO -- : Parameters: {"resource_path"=>"page-8161"}
32
+ I, [2021-01-26T10:01:54.154441 #50517] INFO -- : Rendering inline template within layouts/application
33
+ I, [2021-01-26T10:01:54.253885 #50517] INFO -- : Rendered inline template within layouts/application (Duration: 99.4ms | Allocations: 300176)
34
+ I, [2021-01-26T10:01:54.254748 #50517] INFO -- : Completed 200 OK in 101ms (Views: 100.4ms | Allocations: 300745)
35
+ I, [2021-01-26T10:01:54.717417 #50517] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-01-26 10:01:54 -0800
36
+ I, [2021-01-26T10:01:54.717880 #50517] INFO -- : Processing by BaselineController#show as HTML
37
+ I, [2021-01-26T10:01:54.718198 #50517] INFO -- : Rendering baseline/show.html.erb within layouts/application
38
+ I, [2021-01-26T10:01:54.718278 #50517] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
39
+ I, [2021-01-26T10:01:54.718808 #50517] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 524)
40
+ I, [2021-01-26T10:01:54.719675 #50517] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-01-26 10:01:54 -0800
41
+ I, [2021-01-26T10:01:54.914280 #50517] INFO -- : Processing by Sitepress::SiteController#show as HTML
42
+ I, [2021-01-26T10:01:54.914338 #50517] INFO -- : Parameters: {"resource_path"=>"page-8981"}
43
+ I, [2021-01-26T10:01:55.121795 #50517] INFO -- : Rendering inline template within layouts/application
44
+ I, [2021-01-26T10:01:56.202418 #50517] INFO -- : Rendered inline template within layouts/application (Duration: 1080.5ms | Allocations: 750150)
45
+ I, [2021-01-26T10:01:56.203609 #50517] INFO -- : Completed 200 OK in 1289ms (Views: 1082.0ms | Allocations: 1110882)
46
+ I, [2021-01-26T10:01:56.207512 #50517] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-01-26 10:01:56 -0800
47
+ I, [2021-01-26T10:01:56.496332 #50517] INFO -- : Processing by Sitepress::SiteController#show as HTML
48
+ I, [2021-01-26T10:01:56.496390 #50517] INFO -- : Parameters: {"resource_path"=>"page-8161"}
49
+ I, [2021-01-26T10:01:56.698156 #50517] INFO -- : Rendering inline template within layouts/application
50
+ I, [2021-01-26T10:01:57.751284 #50517] INFO -- : Rendered inline template within layouts/application (Duration: 1053.0ms | Allocations: 750144)
51
+ I, [2021-01-26T10:01:57.752601 #50517] INFO -- : Completed 200 OK in 1256ms (Views: 1054.5ms | Allocations: 1110876)
52
+ I, [2021-01-26T10:01:58.398037 #50517] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-01-26 10:01:58 -0800
53
+ I, [2021-01-26T10:01:58.398518 #50517] INFO -- : Processing by BaselineController#show as HTML
54
+ I, [2021-01-26T10:01:58.398820 #50517] INFO -- : Rendering baseline/show.html.erb within layouts/application
55
+ I, [2021-01-26T10:01:58.398905 #50517] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
56
+ I, [2021-01-26T10:01:58.399417 #50517] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 524)
57
+ I, [2021-01-26T10:01:58.474515 #50517] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-01-26 10:01:58 -0800
58
+ I, [2021-01-26T10:01:58.659548 #50517] INFO -- : Processing by Sitepress::SiteController#show as HTML
59
+ I, [2021-01-26T10:01:58.659667 #50517] INFO -- : Parameters: {"resource_path"=>"page-8981"}
60
+ I, [2021-01-26T10:01:58.846195 #50517] INFO -- : Rendering inline template within layouts/application
61
+ I, [2021-01-26T10:01:59.838477 #50517] INFO -- : Rendered inline template within layouts/application (Duration: 992.2ms | Allocations: 750150)
62
+ I, [2021-01-26T10:01:59.839472 #50517] INFO -- : Completed 200 OK in 1180ms (Views: 993.5ms | Allocations: 1110882)
63
+ I, [2021-01-26T10:01:59.959383 #50517] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-01-26 10:01:59 -0800
64
+ I, [2021-01-26T10:02:00.159981 #50517] INFO -- : Processing by Sitepress::SiteController#show as HTML
65
+ I, [2021-01-26T10:02:00.160033 #50517] INFO -- : Parameters: {"resource_path"=>"page-8161"}
66
+ I, [2021-01-26T10:02:00.421485 #50517] INFO -- : Rendering inline template within layouts/application
67
+ I, [2021-01-26T10:02:01.411688 #50517] INFO -- : Rendered inline template within layouts/application (Duration: 990.1ms | Allocations: 750150)
68
+ I, [2021-01-26T10:02:01.412769 #50517] INFO -- : Completed 200 OK in 1253ms (Views: 991.4ms | Allocations: 1110882)
69
+ I, [2021-01-26T10:02:18.248032 #50585] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-01-26 10:02:18 -0800
70
+ I, [2021-01-26T10:02:18.249935 #50585] INFO -- : Processing by BaselineController#show as HTML
71
+ I, [2021-01-26T10:02:18.251747 #50585] INFO -- : Rendering baseline/show.html.erb within layouts/application
72
+ I, [2021-01-26T10:02:18.252171 #50585] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.3ms | Allocations: 97)
73
+ I, [2021-01-26T10:02:18.255896 #50585] INFO -- : Completed 200 OK in 6ms (Views: 5.3ms | Allocations: 1310)
74
+ I, [2021-01-26T10:02:18.257446 #50585] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2021-01-26 10:02:18 -0800
75
+ I, [2021-01-26T10:02:18.258163 #50585] INFO -- : Processing by Sitepress::SiteController#show as HTML
76
+ I, [2021-01-26T10:02:18.258212 #50585] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
77
+ I, [2021-01-26T10:02:18.260218 #50585] INFO -- : Rendering inline template within layouts/application
78
+ I, [2021-01-26T10:02:19.387348 #50585] INFO -- : Rendered inline template within layouts/application (Duration: 1127.0ms | Allocations: 710137)
79
+ I, [2021-01-26T10:02:19.388959 #50585] INFO -- : Completed 200 OK in 1131ms (Views: 1129.1ms | Allocations: 711250)
80
+ I, [2021-01-26T10:02:19.394313 #50585] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2021-01-26 10:02:19 -0800
81
+ I, [2021-01-26T10:02:19.394817 #50585] INFO -- : Processing by Sitepress::SiteController#show as HTML
82
+ I, [2021-01-26T10:02:19.394856 #50585] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
83
+ I, [2021-01-26T10:02:19.395385 #50585] INFO -- : Rendering inline template within layouts/application
84
+ I, [2021-01-26T10:02:19.515912 #50585] INFO -- : Rendered inline template within layouts/application (Duration: 120.5ms | Allocations: 300168)
85
+ I, [2021-01-26T10:02:19.516662 #50585] INFO -- : Completed 200 OK in 122ms (Views: 121.4ms | Allocations: 300787)
86
+ I, [2021-01-26T10:02:19.656641 #50585] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-01-26 10:02:19 -0800
87
+ I, [2021-01-26T10:02:19.657096 #50585] INFO -- : Processing by BaselineController#show as HTML
88
+ I, [2021-01-26T10:02:19.657398 #50585] INFO -- : Rendering baseline/show.html.erb within layouts/application
89
+ I, [2021-01-26T10:02:19.657480 #50585] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
90
+ I, [2021-01-26T10:02:19.657979 #50585] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 524)
91
+ I, [2021-01-26T10:02:19.701745 #50585] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2021-01-26 10:02:19 -0800
92
+ I, [2021-01-26T10:02:19.702190 #50585] INFO -- : Processing by Sitepress::SiteController#show as HTML
93
+ I, [2021-01-26T10:02:19.702232 #50585] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
94
+ I, [2021-01-26T10:02:19.702599 #50585] INFO -- : Rendering inline template within layouts/application
95
+ I, [2021-01-26T10:02:19.810096 #50585] INFO -- : Rendered inline template within layouts/application (Duration: 107.4ms | Allocations: 300176)
96
+ I, [2021-01-26T10:02:19.810905 #50585] INFO -- : Completed 200 OK in 109ms (Views: 108.4ms | Allocations: 300745)
97
+ I, [2021-01-26T10:02:19.863006 #50585] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2021-01-26 10:02:19 -0800
98
+ I, [2021-01-26T10:02:19.863449 #50585] INFO -- : Processing by Sitepress::SiteController#show as HTML
99
+ I, [2021-01-26T10:02:19.863490 #50585] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
100
+ I, [2021-01-26T10:02:19.863850 #50585] INFO -- : Rendering inline template within layouts/application
101
+ I, [2021-01-26T10:02:19.971527 #50585] INFO -- : Rendered inline template within layouts/application (Duration: 107.6ms | Allocations: 300170)
102
+ I, [2021-01-26T10:02:19.972782 #50585] INFO -- : Completed 200 OK in 109ms (Views: 109.0ms | Allocations: 300739)
103
+ I, [2021-01-26T10:02:21.861251 #50585] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-01-26 10:02:21 -0800
104
+ I, [2021-01-26T10:02:21.861996 #50585] INFO -- : Processing by BaselineController#show as HTML
105
+ I, [2021-01-26T10:02:21.862369 #50585] INFO -- : Rendering baseline/show.html.erb within layouts/application
106
+ I, [2021-01-26T10:02:21.862441 #50585] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
107
+ I, [2021-01-26T10:02:21.862974 #50585] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 524)
108
+ I, [2021-01-26T10:02:21.863933 #50585] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2021-01-26 10:02:21 -0800
109
+ I, [2021-01-26T10:02:22.783535 #50585] INFO -- : Processing by Sitepress::SiteController#show as HTML
110
+ I, [2021-01-26T10:02:22.783595 #50585] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
111
+ I, [2021-01-26T10:02:23.657679 #50585] INFO -- : Rendering inline template within layouts/application
112
+ I, [2021-01-26T10:02:24.784960 #50585] INFO -- : Rendered inline template within layouts/application (Duration: 1127.2ms | Allocations: 740139)
113
+ I, [2021-01-26T10:02:24.786015 #50585] INFO -- : Completed 200 OK in 2002ms (Views: 1128.5ms | Allocations: 3240950)
114
+ I, [2021-01-26T10:02:24.789847 #50585] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2021-01-26 10:02:24 -0800
115
+ I, [2021-01-26T10:02:25.604414 #50585] INFO -- : Processing by Sitepress::SiteController#show as HTML
116
+ I, [2021-01-26T10:02:25.604472 #50585] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
117
+ I, [2021-01-26T10:02:26.435886 #50585] INFO -- : Rendering inline template within layouts/application
118
+ I, [2021-01-26T10:02:27.508861 #50585] INFO -- : Rendered inline template within layouts/application (Duration: 1072.9ms | Allocations: 740133)
119
+ I, [2021-01-26T10:02:27.510328 #50585] INFO -- : Completed 200 OK in 1906ms (Views: 1074.5ms | Allocations: 3240946)
120
+ I, [2021-01-26T10:02:29.418512 #50585] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-01-26 10:02:29 -0800
121
+ I, [2021-01-26T10:02:29.418977 #50585] INFO -- : Processing by BaselineController#show as HTML
122
+ I, [2021-01-26T10:02:29.419277 #50585] INFO -- : Rendering baseline/show.html.erb within layouts/application
123
+ I, [2021-01-26T10:02:29.419360 #50585] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
124
+ I, [2021-01-26T10:02:29.419859 #50585] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 524)
125
+ I, [2021-01-26T10:02:29.501496 #50585] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2021-01-26 10:02:29 -0800
126
+ I, [2021-01-26T10:02:30.261517 #50585] INFO -- : Processing by Sitepress::SiteController#show as HTML
127
+ I, [2021-01-26T10:02:30.261579 #50585] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
128
+ I, [2021-01-26T10:02:31.132602 #50585] INFO -- : Rendering inline template within layouts/application
129
+ I, [2021-01-26T10:02:32.309901 #50585] INFO -- : Rendered inline template within layouts/application (Duration: 1177.2ms | Allocations: 740139)
130
+ I, [2021-01-26T10:02:32.310961 #50585] INFO -- : Completed 200 OK in 2049ms (Views: 1178.5ms | Allocations: 3240950)
131
+ I, [2021-01-26T10:02:32.422085 #50585] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2021-01-26 10:02:32 -0800
132
+ I, [2021-01-26T10:02:33.214544 #50585] INFO -- : Processing by Sitepress::SiteController#show as HTML
133
+ I, [2021-01-26T10:02:33.214604 #50585] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
134
+ I, [2021-01-26T10:02:34.095337 #50585] INFO -- : Rendering inline template within layouts/application
135
+ I, [2021-01-26T10:02:35.174137 #50585] INFO -- : Rendered inline template within layouts/application (Duration: 1078.7ms | Allocations: 740139)
136
+ I, [2021-01-26T10:02:35.175412 #50585] INFO -- : Completed 200 OK in 1961ms (Views: 1080.1ms | Allocations: 3240950)
137
+ I, [2021-03-16T09:40:20.445375 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:20 -0700
138
+ I, [2021-03-16T09:40:20.447912 #96575] INFO -- : Processing by BaselineController#show as HTML
139
+ D, [2021-03-16T09:40:20.449773 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
140
+ D, [2021-03-16T09:40:20.449860 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
141
+ I, [2021-03-16T09:40:20.450404 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.4ms | Allocations: 93)
142
+ I, [2021-03-16T09:40:20.455047 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 5.2ms | Allocations: 431)
143
+ I, [2021-03-16T09:40:20.455300 #96575] INFO -- : Completed 200 OK in 7ms (Views: 6.8ms | Allocations: 1376)
144
+ I, [2021-03-16T09:40:20.456739 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:20 -0700
145
+ I, [2021-03-16T09:40:20.457239 #96575] INFO -- : Processing by BaselineController#show as HTML
146
+ D, [2021-03-16T09:40:20.457523 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
147
+ D, [2021-03-16T09:40:20.457576 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
148
+ I, [2021-03-16T09:40:20.457641 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
149
+ I, [2021-03-16T09:40:20.458109 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 333)
150
+ I, [2021-03-16T09:40:20.458222 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 552)
151
+ I, [2021-03-16T09:40:20.459024 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:20 -0700
152
+ I, [2021-03-16T09:40:20.459373 #96575] INFO -- : Processing by BaselineController#show as HTML
153
+ D, [2021-03-16T09:40:20.459616 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
154
+ D, [2021-03-16T09:40:20.459666 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
155
+ I, [2021-03-16T09:40:20.459728 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
156
+ I, [2021-03-16T09:40:20.460087 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
157
+ I, [2021-03-16T09:40:20.460191 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
158
+ I, [2021-03-16T09:40:20.460964 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:20 -0700
159
+ I, [2021-03-16T09:40:20.461287 #96575] INFO -- : Processing by BaselineController#show as HTML
160
+ D, [2021-03-16T09:40:20.461508 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
161
+ D, [2021-03-16T09:40:20.461571 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
162
+ I, [2021-03-16T09:40:20.461638 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
163
+ I, [2021-03-16T09:40:20.462019 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
164
+ I, [2021-03-16T09:40:20.462126 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
165
+ I, [2021-03-16T09:40:20.462887 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:20 -0700
166
+ I, [2021-03-16T09:40:20.463232 #96575] INFO -- : Processing by BaselineController#show as HTML
167
+ D, [2021-03-16T09:40:20.463457 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
168
+ D, [2021-03-16T09:40:20.463507 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
169
+ I, [2021-03-16T09:40:20.463568 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
170
+ I, [2021-03-16T09:40:20.463955 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
171
+ I, [2021-03-16T09:40:20.464055 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
172
+ I, [2021-03-16T09:40:20.464885 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:20 -0700
173
+ I, [2021-03-16T09:40:20.465261 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
174
+ I, [2021-03-16T09:40:20.465299 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
175
+ D, [2021-03-16T09:40:20.468161 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
176
+ D, [2021-03-16T09:40:20.468255 #96575] DEBUG -- : Rendering inline template within layouts/application
177
+ I, [2021-03-16T09:40:21.542143 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1073.8ms | Allocations: 660131)
178
+ I, [2021-03-16T09:40:21.543337 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1075.1ms | Allocations: 660454)
179
+ I, [2021-03-16T09:40:21.543499 #96575] INFO -- : Completed 200 OK in 1078ms (Views: 1075.8ms | Allocations: 661492)
180
+ I, [2021-03-16T09:40:21.547264 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:21 -0700
181
+ I, [2021-03-16T09:40:21.547635 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
182
+ I, [2021-03-16T09:40:21.547663 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
183
+ D, [2021-03-16T09:40:21.548157 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
184
+ D, [2021-03-16T09:40:21.548197 #96575] DEBUG -- : Rendering inline template within layouts/application
185
+ I, [2021-03-16T09:40:21.657283 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 109.0ms | Allocations: 200171)
186
+ I, [2021-03-16T09:40:21.658543 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 110.3ms | Allocations: 200493)
187
+ I, [2021-03-16T09:40:21.658692 #96575] INFO -- : Completed 200 OK in 111ms (Views: 110.6ms | Allocations: 200904)
188
+ I, [2021-03-16T09:40:21.663434 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:21 -0700
189
+ I, [2021-03-16T09:40:21.663831 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
190
+ I, [2021-03-16T09:40:21.663867 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
191
+ D, [2021-03-16T09:40:21.664408 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
192
+ D, [2021-03-16T09:40:21.664463 #96575] DEBUG -- : Rendering inline template within layouts/application
193
+ I, [2021-03-16T09:40:21.755990 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 91.5ms | Allocations: 200174)
194
+ I, [2021-03-16T09:40:21.756684 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 92.2ms | Allocations: 200496)
195
+ I, [2021-03-16T09:40:21.756829 #96575] INFO -- : Completed 200 OK in 93ms (Views: 92.5ms | Allocations: 200907)
196
+ I, [2021-03-16T09:40:21.761490 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:21 -0700
197
+ I, [2021-03-16T09:40:21.761895 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
198
+ I, [2021-03-16T09:40:21.761930 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
199
+ D, [2021-03-16T09:40:21.762483 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
200
+ D, [2021-03-16T09:40:21.762537 #96575] DEBUG -- : Rendering inline template within layouts/application
201
+ I, [2021-03-16T09:40:21.854726 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 92.1ms | Allocations: 200171)
202
+ I, [2021-03-16T09:40:21.855608 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 93.1ms | Allocations: 200493)
203
+ I, [2021-03-16T09:40:21.855759 #96575] INFO -- : Completed 200 OK in 94ms (Views: 93.4ms | Allocations: 200904)
204
+ I, [2021-03-16T09:40:21.860351 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:21 -0700
205
+ I, [2021-03-16T09:40:21.860739 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
206
+ I, [2021-03-16T09:40:21.860778 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
207
+ D, [2021-03-16T09:40:21.861326 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
208
+ D, [2021-03-16T09:40:21.861378 #96575] DEBUG -- : Rendering inline template within layouts/application
209
+ I, [2021-03-16T09:40:21.952909 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 91.5ms | Allocations: 200177)
210
+ I, [2021-03-16T09:40:21.953701 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 92.3ms | Allocations: 200499)
211
+ I, [2021-03-16T09:40:21.953847 #96575] INFO -- : Completed 200 OK in 93ms (Views: 92.6ms | Allocations: 200910)
212
+ I, [2021-03-16T09:40:21.958479 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:21 -0700
213
+ I, [2021-03-16T09:40:21.958882 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
214
+ I, [2021-03-16T09:40:21.958937 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
215
+ D, [2021-03-16T09:40:21.959593 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
216
+ D, [2021-03-16T09:40:21.959646 #96575] DEBUG -- : Rendering inline template within layouts/application
217
+ I, [2021-03-16T09:40:22.058763 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 99.1ms | Allocations: 200174)
218
+ I, [2021-03-16T09:40:22.059416 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 99.8ms | Allocations: 200496)
219
+ I, [2021-03-16T09:40:22.059557 #96575] INFO -- : Completed 200 OK in 101ms (Views: 100.1ms | Allocations: 200960)
220
+ I, [2021-03-16T09:40:22.064213 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
221
+ I, [2021-03-16T09:40:22.064719 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
222
+ I, [2021-03-16T09:40:22.064766 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
223
+ D, [2021-03-16T09:40:22.065356 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
224
+ D, [2021-03-16T09:40:22.065420 #96575] DEBUG -- : Rendering inline template within layouts/application
225
+ I, [2021-03-16T09:40:22.155551 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 90.1ms | Allocations: 200171)
226
+ I, [2021-03-16T09:40:22.157060 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 91.6ms | Allocations: 200493)
227
+ I, [2021-03-16T09:40:22.157207 #96575] INFO -- : Completed 200 OK in 92ms (Views: 92.0ms | Allocations: 200904)
228
+ I, [2021-03-16T09:40:22.161763 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
229
+ I, [2021-03-16T09:40:22.162153 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
230
+ I, [2021-03-16T09:40:22.162187 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
231
+ D, [2021-03-16T09:40:22.162737 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
232
+ D, [2021-03-16T09:40:22.162788 #96575] DEBUG -- : Rendering inline template within layouts/application
233
+ I, [2021-03-16T09:40:22.257019 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 94.2ms | Allocations: 200177)
234
+ I, [2021-03-16T09:40:22.258506 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.7ms | Allocations: 200499)
235
+ I, [2021-03-16T09:40:22.258654 #96575] INFO -- : Completed 200 OK in 96ms (Views: 96.0ms | Allocations: 200910)
236
+ I, [2021-03-16T09:40:22.263235 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
237
+ I, [2021-03-16T09:40:22.263607 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
238
+ I, [2021-03-16T09:40:22.263641 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
239
+ D, [2021-03-16T09:40:22.264164 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
240
+ D, [2021-03-16T09:40:22.264214 #96575] DEBUG -- : Rendering inline template within layouts/application
241
+ I, [2021-03-16T09:40:22.352097 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 87.8ms | Allocations: 200174)
242
+ I, [2021-03-16T09:40:22.353123 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 88.9ms | Allocations: 200496)
243
+ I, [2021-03-16T09:40:22.353252 #96575] INFO -- : Completed 200 OK in 90ms (Views: 89.2ms | Allocations: 200907)
244
+ I, [2021-03-16T09:40:22.357114 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
245
+ I, [2021-03-16T09:40:22.357449 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
246
+ I, [2021-03-16T09:40:22.357478 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
247
+ D, [2021-03-16T09:40:22.357923 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
248
+ D, [2021-03-16T09:40:22.357963 #96575] DEBUG -- : Rendering inline template within layouts/application
249
+ I, [2021-03-16T09:40:22.438618 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 80.6ms | Allocations: 200174)
250
+ I, [2021-03-16T09:40:22.439263 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 81.3ms | Allocations: 200496)
251
+ I, [2021-03-16T09:40:22.439378 #96575] INFO -- : Completed 200 OK in 82ms (Views: 81.5ms | Allocations: 200907)
252
+ I, [2021-03-16T09:40:22.579413 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
253
+ I, [2021-03-16T09:40:22.579873 #96575] INFO -- : Processing by BaselineController#show as HTML
254
+ D, [2021-03-16T09:40:22.580169 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
255
+ D, [2021-03-16T09:40:22.580228 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
256
+ I, [2021-03-16T09:40:22.580299 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
257
+ I, [2021-03-16T09:40:22.580743 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 330)
258
+ I, [2021-03-16T09:40:22.580867 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 551)
259
+ I, [2021-03-16T09:40:22.581681 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
260
+ I, [2021-03-16T09:40:22.582004 #96575] INFO -- : Processing by BaselineController#show as HTML
261
+ D, [2021-03-16T09:40:22.582234 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
262
+ D, [2021-03-16T09:40:22.582289 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
263
+ I, [2021-03-16T09:40:22.582350 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
264
+ I, [2021-03-16T09:40:22.582721 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
265
+ I, [2021-03-16T09:40:22.582829 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
266
+ I, [2021-03-16T09:40:22.583590 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
267
+ I, [2021-03-16T09:40:22.583907 #96575] INFO -- : Processing by BaselineController#show as HTML
268
+ D, [2021-03-16T09:40:22.584139 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
269
+ D, [2021-03-16T09:40:22.584194 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
270
+ I, [2021-03-16T09:40:22.584255 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
271
+ I, [2021-03-16T09:40:22.584622 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
272
+ I, [2021-03-16T09:40:22.584740 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
273
+ I, [2021-03-16T09:40:22.585439 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
274
+ I, [2021-03-16T09:40:22.585736 #96575] INFO -- : Processing by BaselineController#show as HTML
275
+ D, [2021-03-16T09:40:22.585954 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
276
+ D, [2021-03-16T09:40:22.586006 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
277
+ I, [2021-03-16T09:40:22.586063 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
278
+ I, [2021-03-16T09:40:22.586407 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
279
+ I, [2021-03-16T09:40:22.586509 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 546)
280
+ I, [2021-03-16T09:40:22.587208 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
281
+ I, [2021-03-16T09:40:22.587509 #96575] INFO -- : Processing by BaselineController#show as HTML
282
+ D, [2021-03-16T09:40:22.587728 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
283
+ D, [2021-03-16T09:40:22.587796 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
284
+ I, [2021-03-16T09:40:22.587854 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
285
+ I, [2021-03-16T09:40:22.588218 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
286
+ I, [2021-03-16T09:40:22.588319 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
287
+ I, [2021-03-16T09:40:22.634691 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
288
+ I, [2021-03-16T09:40:22.635138 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
289
+ I, [2021-03-16T09:40:22.635178 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
290
+ D, [2021-03-16T09:40:22.635792 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
291
+ D, [2021-03-16T09:40:22.635851 #96575] DEBUG -- : Rendering inline template within layouts/application
292
+ I, [2021-03-16T09:40:22.734084 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 98.2ms | Allocations: 200179)
293
+ I, [2021-03-16T09:40:22.749128 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 113.3ms | Allocations: 200501)
294
+ I, [2021-03-16T09:40:22.751624 #96575] INFO -- : Completed 200 OK in 116ms (Views: 115.9ms | Allocations: 200913)
295
+ I, [2021-03-16T09:40:22.758529 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
296
+ I, [2021-03-16T09:40:22.773754 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
297
+ I, [2021-03-16T09:40:22.774184 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
298
+ D, [2021-03-16T09:40:22.775301 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
299
+ D, [2021-03-16T09:40:22.794686 #96575] DEBUG -- : Rendering inline template within layouts/application
300
+ I, [2021-03-16T09:40:22.888099 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 93.0ms | Allocations: 200169)
301
+ I, [2021-03-16T09:40:22.888730 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 94.1ms | Allocations: 200491)
302
+ I, [2021-03-16T09:40:22.888865 #96575] INFO -- : Completed 200 OK in 114ms (Views: 113.8ms | Allocations: 200902)
303
+ I, [2021-03-16T09:40:22.893300 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
304
+ I, [2021-03-16T09:40:22.893738 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
305
+ I, [2021-03-16T09:40:22.893778 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
306
+ D, [2021-03-16T09:40:22.894320 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
307
+ D, [2021-03-16T09:40:22.894370 #96575] DEBUG -- : Rendering inline template within layouts/application
308
+ I, [2021-03-16T09:40:22.989253 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 94.8ms | Allocations: 200177)
309
+ I, [2021-03-16T09:40:22.989977 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.6ms | Allocations: 200499)
310
+ I, [2021-03-16T09:40:22.990139 #96575] INFO -- : Completed 200 OK in 96ms (Views: 95.9ms | Allocations: 200910)
311
+ I, [2021-03-16T09:40:22.994998 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:22 -0700
312
+ I, [2021-03-16T09:40:22.995414 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
313
+ I, [2021-03-16T09:40:22.995451 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
314
+ D, [2021-03-16T09:40:22.996020 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
315
+ D, [2021-03-16T09:40:22.996077 #96575] DEBUG -- : Rendering inline template within layouts/application
316
+ I, [2021-03-16T09:40:23.091569 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 95.4ms | Allocations: 200174)
317
+ I, [2021-03-16T09:40:23.092351 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 96.3ms | Allocations: 200496)
318
+ I, [2021-03-16T09:40:23.092488 #96575] INFO -- : Completed 200 OK in 97ms (Views: 96.6ms | Allocations: 200907)
319
+ I, [2021-03-16T09:40:23.097103 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
320
+ I, [2021-03-16T09:40:23.097475 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
321
+ I, [2021-03-16T09:40:23.097542 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
322
+ D, [2021-03-16T09:40:23.098123 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
323
+ D, [2021-03-16T09:40:23.098175 #96575] DEBUG -- : Rendering inline template within layouts/application
324
+ I, [2021-03-16T09:40:23.191679 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 93.4ms | Allocations: 200171)
325
+ I, [2021-03-16T09:40:23.192516 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 94.3ms | Allocations: 200493)
326
+ I, [2021-03-16T09:40:23.192666 #96575] INFO -- : Completed 200 OK in 95ms (Views: 94.6ms | Allocations: 200904)
327
+ I, [2021-03-16T09:40:23.251028 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
328
+ I, [2021-03-16T09:40:23.251532 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
329
+ I, [2021-03-16T09:40:23.251575 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
330
+ D, [2021-03-16T09:40:23.252200 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
331
+ D, [2021-03-16T09:40:23.252264 #96575] DEBUG -- : Rendering inline template within layouts/application
332
+ I, [2021-03-16T09:40:23.347181 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 94.9ms | Allocations: 200173)
333
+ I, [2021-03-16T09:40:23.347950 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.7ms | Allocations: 200495)
334
+ I, [2021-03-16T09:40:23.348100 #96575] INFO -- : Completed 200 OK in 96ms (Views: 96.0ms | Allocations: 200907)
335
+ I, [2021-03-16T09:40:23.352862 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
336
+ I, [2021-03-16T09:40:23.353259 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
337
+ I, [2021-03-16T09:40:23.353295 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
338
+ D, [2021-03-16T09:40:23.353856 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
339
+ D, [2021-03-16T09:40:23.353908 #96575] DEBUG -- : Rendering inline template within layouts/application
340
+ I, [2021-03-16T09:40:23.445071 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 91.1ms | Allocations: 200169)
341
+ I, [2021-03-16T09:40:23.445736 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 91.8ms | Allocations: 200491)
342
+ I, [2021-03-16T09:40:23.445881 #96575] INFO -- : Completed 200 OK in 93ms (Views: 92.1ms | Allocations: 200902)
343
+ I, [2021-03-16T09:40:23.450535 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
344
+ I, [2021-03-16T09:40:23.450927 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
345
+ I, [2021-03-16T09:40:23.450963 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
346
+ D, [2021-03-16T09:40:23.451508 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
347
+ D, [2021-03-16T09:40:23.451561 #96575] DEBUG -- : Rendering inline template within layouts/application
348
+ I, [2021-03-16T09:40:23.549344 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 97.7ms | Allocations: 200177)
349
+ I, [2021-03-16T09:40:23.550074 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 98.5ms | Allocations: 200499)
350
+ I, [2021-03-16T09:40:23.550217 #96575] INFO -- : Completed 200 OK in 99ms (Views: 98.8ms | Allocations: 200910)
351
+ I, [2021-03-16T09:40:23.554673 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
352
+ I, [2021-03-16T09:40:23.555054 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
353
+ I, [2021-03-16T09:40:23.555090 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
354
+ D, [2021-03-16T09:40:23.555625 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
355
+ D, [2021-03-16T09:40:23.555676 #96575] DEBUG -- : Rendering inline template within layouts/application
356
+ I, [2021-03-16T09:40:23.649795 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 94.1ms | Allocations: 200174)
357
+ I, [2021-03-16T09:40:23.650536 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 94.9ms | Allocations: 200496)
358
+ I, [2021-03-16T09:40:23.650686 #96575] INFO -- : Completed 200 OK in 96ms (Views: 95.2ms | Allocations: 200907)
359
+ I, [2021-03-16T09:40:23.655324 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
360
+ I, [2021-03-16T09:40:23.655687 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
361
+ I, [2021-03-16T09:40:23.655721 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
362
+ D, [2021-03-16T09:40:23.656245 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
363
+ D, [2021-03-16T09:40:23.656296 #96575] DEBUG -- : Rendering inline template within layouts/application
364
+ I, [2021-03-16T09:40:23.752919 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 96.6ms | Allocations: 200171)
365
+ I, [2021-03-16T09:40:23.753646 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 97.3ms | Allocations: 200493)
366
+ I, [2021-03-16T09:40:23.753786 #96575] INFO -- : Completed 200 OK in 98ms (Views: 97.6ms | Allocations: 200904)
367
+ I, [2021-03-16T09:40:23.758599 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
368
+ I, [2021-03-16T09:40:23.759006 #96575] INFO -- : Processing by BaselineController#show as HTML
369
+ D, [2021-03-16T09:40:23.759269 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
370
+ D, [2021-03-16T09:40:23.759321 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
371
+ I, [2021-03-16T09:40:23.759384 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
372
+ I, [2021-03-16T09:40:23.759856 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 330)
373
+ I, [2021-03-16T09:40:23.759976 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 550)
374
+ I, [2021-03-16T09:40:23.760744 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
375
+ I, [2021-03-16T09:40:23.761064 #96575] INFO -- : Processing by BaselineController#show as HTML
376
+ D, [2021-03-16T09:40:23.761283 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
377
+ D, [2021-03-16T09:40:23.761332 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
378
+ I, [2021-03-16T09:40:23.761387 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
379
+ I, [2021-03-16T09:40:23.761718 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
380
+ I, [2021-03-16T09:40:23.761815 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 546)
381
+ I, [2021-03-16T09:40:23.762475 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
382
+ I, [2021-03-16T09:40:23.762757 #96575] INFO -- : Processing by BaselineController#show as HTML
383
+ D, [2021-03-16T09:40:23.762960 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
384
+ D, [2021-03-16T09:40:23.763008 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
385
+ I, [2021-03-16T09:40:23.763062 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
386
+ I, [2021-03-16T09:40:23.763433 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
387
+ I, [2021-03-16T09:40:23.763533 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
388
+ I, [2021-03-16T09:40:23.764187 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
389
+ I, [2021-03-16T09:40:23.764467 #96575] INFO -- : Processing by BaselineController#show as HTML
390
+ D, [2021-03-16T09:40:23.764681 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
391
+ D, [2021-03-16T09:40:23.764727 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
392
+ I, [2021-03-16T09:40:23.764800 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
393
+ I, [2021-03-16T09:40:23.765109 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
394
+ I, [2021-03-16T09:40:23.765200 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 546)
395
+ I, [2021-03-16T09:40:23.765831 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
396
+ I, [2021-03-16T09:40:23.766091 #96575] INFO -- : Processing by BaselineController#show as HTML
397
+ D, [2021-03-16T09:40:23.766278 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
398
+ D, [2021-03-16T09:40:23.766323 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
399
+ I, [2021-03-16T09:40:23.766373 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
400
+ I, [2021-03-16T09:40:23.766673 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
401
+ I, [2021-03-16T09:40:23.766766 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 546)
402
+ I, [2021-03-16T09:40:23.767425 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
403
+ I, [2021-03-16T09:40:23.767686 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
404
+ I, [2021-03-16T09:40:23.767718 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
405
+ D, [2021-03-16T09:40:23.768181 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
406
+ D, [2021-03-16T09:40:23.768233 #96575] DEBUG -- : Rendering inline template within layouts/application
407
+ I, [2021-03-16T09:40:23.862746 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 94.5ms | Allocations: 200177)
408
+ I, [2021-03-16T09:40:23.863414 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.2ms | Allocations: 200499)
409
+ I, [2021-03-16T09:40:23.863563 #96575] INFO -- : Completed 200 OK in 96ms (Views: 95.4ms | Allocations: 200909)
410
+ I, [2021-03-16T09:40:23.868105 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:23 -0700
411
+ I, [2021-03-16T09:40:24.146951 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
412
+ I, [2021-03-16T09:40:24.147000 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
413
+ D, [2021-03-16T09:40:24.147665 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
414
+ D, [2021-03-16T09:40:24.147709 #96575] DEBUG -- : Rendering inline template within layouts/application
415
+ I, [2021-03-16T09:40:25.214991 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1067.1ms | Allocations: 690147)
416
+ I, [2021-03-16T09:40:25.216340 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1068.6ms | Allocations: 690470)
417
+ I, [2021-03-16T09:40:25.216508 #96575] INFO -- : Completed 200 OK in 1069ms (Views: 1068.9ms | Allocations: 690976)
418
+ I, [2021-03-16T09:40:25.220491 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:25 -0700
419
+ I, [2021-03-16T09:40:25.498511 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
420
+ I, [2021-03-16T09:40:25.498578 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
421
+ D, [2021-03-16T09:40:25.499795 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
422
+ D, [2021-03-16T09:40:25.499854 #96575] DEBUG -- : Rendering inline template within layouts/application
423
+ I, [2021-03-16T09:40:26.614405 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1114.5ms | Allocations: 690150)
424
+ I, [2021-03-16T09:40:26.616050 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1116.2ms | Allocations: 690473)
425
+ I, [2021-03-16T09:40:26.616214 #96575] INFO -- : Completed 200 OK in 1118ms (Views: 1116.5ms | Allocations: 690979)
426
+ I, [2021-03-16T09:40:26.621009 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:26 -0700
427
+ I, [2021-03-16T09:40:26.941814 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
428
+ I, [2021-03-16T09:40:26.941873 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
429
+ D, [2021-03-16T09:40:26.942783 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
430
+ D, [2021-03-16T09:40:26.942839 #96575] DEBUG -- : Rendering inline template within layouts/application
431
+ I, [2021-03-16T09:40:28.119024 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1176.1ms | Allocations: 690144)
432
+ I, [2021-03-16T09:40:28.120018 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1177.2ms | Allocations: 690467)
433
+ I, [2021-03-16T09:40:28.120180 #96575] INFO -- : Completed 200 OK in 1178ms (Views: 1177.5ms | Allocations: 690973)
434
+ I, [2021-03-16T09:40:28.123918 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:28 -0700
435
+ I, [2021-03-16T09:40:28.422584 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
436
+ I, [2021-03-16T09:40:28.422641 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
437
+ D, [2021-03-16T09:40:28.423476 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
438
+ D, [2021-03-16T09:40:28.423573 #96575] DEBUG -- : Rendering inline template within layouts/application
439
+ I, [2021-03-16T09:40:29.592570 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1168.9ms | Allocations: 690147)
440
+ I, [2021-03-16T09:40:29.594662 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1171.1ms | Allocations: 690470)
441
+ I, [2021-03-16T09:40:29.594925 #96575] INFO -- : Completed 200 OK in 1172ms (Views: 1171.5ms | Allocations: 690976)
442
+ I, [2021-03-16T09:40:29.605287 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:29 -0700
443
+ I, [2021-03-16T09:40:29.865235 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
444
+ I, [2021-03-16T09:40:29.865301 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
445
+ D, [2021-03-16T09:40:29.866191 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
446
+ D, [2021-03-16T09:40:29.866250 #96575] DEBUG -- : Rendering inline template within layouts/application
447
+ I, [2021-03-16T09:40:30.991924 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1125.6ms | Allocations: 690139)
448
+ I, [2021-03-16T09:40:30.993039 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1126.8ms | Allocations: 690462)
449
+ I, [2021-03-16T09:40:30.993215 #96575] INFO -- : Completed 200 OK in 1128ms (Views: 1127.1ms | Allocations: 690968)
450
+ I, [2021-03-16T09:40:30.996993 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:30 -0700
451
+ I, [2021-03-16T09:40:31.271411 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
452
+ I, [2021-03-16T09:40:31.271470 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
453
+ D, [2021-03-16T09:40:31.272669 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
454
+ D, [2021-03-16T09:40:31.272730 #96575] DEBUG -- : Rendering inline template within layouts/application
455
+ I, [2021-03-16T09:40:32.315809 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1043.0ms | Allocations: 690148)
456
+ I, [2021-03-16T09:40:32.316995 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1044.3ms | Allocations: 690471)
457
+ I, [2021-03-16T09:40:32.317119 #96575] INFO -- : Completed 200 OK in 1046ms (Views: 1044.6ms | Allocations: 690976)
458
+ I, [2021-03-16T09:40:32.320824 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:32 -0700
459
+ I, [2021-03-16T09:40:32.638242 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
460
+ I, [2021-03-16T09:40:32.638315 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
461
+ D, [2021-03-16T09:40:32.639113 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
462
+ D, [2021-03-16T09:40:32.639165 #96575] DEBUG -- : Rendering inline template within layouts/application
463
+ I, [2021-03-16T09:40:33.664510 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1025.3ms | Allocations: 690144)
464
+ I, [2021-03-16T09:40:33.665521 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1026.4ms | Allocations: 690467)
465
+ I, [2021-03-16T09:40:33.665642 #96575] INFO -- : Completed 200 OK in 1027ms (Views: 1026.6ms | Allocations: 690973)
466
+ I, [2021-03-16T09:40:33.669313 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:33 -0700
467
+ I, [2021-03-16T09:40:33.963688 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
468
+ I, [2021-03-16T09:40:33.963746 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
469
+ D, [2021-03-16T09:40:33.964565 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
470
+ D, [2021-03-16T09:40:33.964616 #96575] DEBUG -- : Rendering inline template within layouts/application
471
+ I, [2021-03-16T09:40:34.983054 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1018.3ms | Allocations: 690147)
472
+ I, [2021-03-16T09:40:34.984537 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1019.9ms | Allocations: 690470)
473
+ I, [2021-03-16T09:40:34.984710 #96575] INFO -- : Completed 200 OK in 1021ms (Views: 1020.2ms | Allocations: 690976)
474
+ I, [2021-03-16T09:40:34.988925 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:34 -0700
475
+ I, [2021-03-16T09:40:35.244361 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
476
+ I, [2021-03-16T09:40:35.244433 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
477
+ D, [2021-03-16T09:40:35.247645 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
478
+ D, [2021-03-16T09:40:35.247711 #96575] DEBUG -- : Rendering inline template within layouts/application
479
+ I, [2021-03-16T09:40:36.330016 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1082.2ms | Allocations: 690139)
480
+ I, [2021-03-16T09:40:36.331121 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1083.4ms | Allocations: 690462)
481
+ I, [2021-03-16T09:40:36.331273 #96575] INFO -- : Completed 200 OK in 1087ms (Views: 1083.7ms | Allocations: 690968)
482
+ I, [2021-03-16T09:40:36.784921 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:36 -0700
483
+ I, [2021-03-16T09:40:36.785404 #96575] INFO -- : Processing by BaselineController#show as HTML
484
+ D, [2021-03-16T09:40:36.785717 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
485
+ D, [2021-03-16T09:40:36.785784 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
486
+ I, [2021-03-16T09:40:36.785864 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
487
+ I, [2021-03-16T09:40:36.786337 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 330)
488
+ I, [2021-03-16T09:40:36.786472 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 551)
489
+ I, [2021-03-16T09:40:36.787317 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:36 -0700
490
+ I, [2021-03-16T09:40:36.787658 #96575] INFO -- : Processing by BaselineController#show as HTML
491
+ D, [2021-03-16T09:40:36.787909 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
492
+ D, [2021-03-16T09:40:36.787972 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
493
+ I, [2021-03-16T09:40:36.788041 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
494
+ I, [2021-03-16T09:40:36.788438 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
495
+ I, [2021-03-16T09:40:36.788556 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
496
+ I, [2021-03-16T09:40:36.789323 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:36 -0700
497
+ I, [2021-03-16T09:40:36.789658 #96575] INFO -- : Processing by BaselineController#show as HTML
498
+ D, [2021-03-16T09:40:36.789932 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
499
+ D, [2021-03-16T09:40:36.789989 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
500
+ I, [2021-03-16T09:40:36.790054 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
501
+ I, [2021-03-16T09:40:36.790447 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
502
+ I, [2021-03-16T09:40:36.790558 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
503
+ I, [2021-03-16T09:40:36.791319 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:36 -0700
504
+ I, [2021-03-16T09:40:36.791646 #96575] INFO -- : Processing by BaselineController#show as HTML
505
+ D, [2021-03-16T09:40:36.791884 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
506
+ D, [2021-03-16T09:40:36.791940 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
507
+ I, [2021-03-16T09:40:36.792003 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
508
+ I, [2021-03-16T09:40:36.792388 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
509
+ I, [2021-03-16T09:40:36.792499 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
510
+ I, [2021-03-16T09:40:36.793267 #96575] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:40:36 -0700
511
+ I, [2021-03-16T09:40:36.793593 #96575] INFO -- : Processing by BaselineController#show as HTML
512
+ D, [2021-03-16T09:40:36.793832 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
513
+ D, [2021-03-16T09:40:36.793889 #96575] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
514
+ I, [2021-03-16T09:40:36.793952 #96575] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
515
+ I, [2021-03-16T09:40:36.794337 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
516
+ I, [2021-03-16T09:40:36.794444 #96575] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
517
+ I, [2021-03-16T09:40:36.878801 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:36 -0700
518
+ I, [2021-03-16T09:40:36.879263 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
519
+ I, [2021-03-16T09:40:36.879305 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
520
+ D, [2021-03-16T09:40:36.882256 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
521
+ D, [2021-03-16T09:40:36.882358 #96575] DEBUG -- : Rendering inline template within layouts/application
522
+ I, [2021-03-16T09:40:37.883657 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1001.1ms | Allocations: 690147)
523
+ I, [2021-03-16T09:40:37.884439 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1002.1ms | Allocations: 690469)
524
+ I, [2021-03-16T09:40:37.884571 #96575] INFO -- : Completed 200 OK in 1005ms (Views: 1002.5ms | Allocations: 690975)
525
+ I, [2021-03-16T09:40:37.888736 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:37 -0700
526
+ I, [2021-03-16T09:40:38.120406 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
527
+ I, [2021-03-16T09:40:38.120451 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
528
+ D, [2021-03-16T09:40:38.121607 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
529
+ D, [2021-03-16T09:40:38.121653 #96575] DEBUG -- : Rendering inline template within layouts/application
530
+ I, [2021-03-16T09:40:39.455191 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1333.5ms | Allocations: 690142)
531
+ I, [2021-03-16T09:40:39.456492 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1334.8ms | Allocations: 690464)
532
+ I, [2021-03-16T09:40:39.456697 #96575] INFO -- : Completed 200 OK in 1336ms (Views: 1335.2ms | Allocations: 690970)
533
+ I, [2021-03-16T09:40:39.461455 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:39 -0700
534
+ I, [2021-03-16T09:40:39.838983 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
535
+ I, [2021-03-16T09:40:39.839046 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
536
+ D, [2021-03-16T09:40:39.840148 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
537
+ D, [2021-03-16T09:40:39.840213 #96575] DEBUG -- : Rendering inline template within layouts/application
538
+ I, [2021-03-16T09:40:41.030500 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1190.2ms | Allocations: 690144)
539
+ I, [2021-03-16T09:40:41.032060 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1191.8ms | Allocations: 690467)
540
+ I, [2021-03-16T09:40:41.032221 #96575] INFO -- : Completed 200 OK in 1193ms (Views: 1192.2ms | Allocations: 690973)
541
+ I, [2021-03-16T09:40:41.036875 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:41 -0700
542
+ I, [2021-03-16T09:40:41.334973 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
543
+ I, [2021-03-16T09:40:41.335039 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
544
+ D, [2021-03-16T09:40:41.335853 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
545
+ D, [2021-03-16T09:40:41.335914 #96575] DEBUG -- : Rendering inline template within layouts/application
546
+ I, [2021-03-16T09:40:42.443478 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1107.5ms | Allocations: 690141)
547
+ I, [2021-03-16T09:40:42.444596 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1108.7ms | Allocations: 690463)
548
+ I, [2021-03-16T09:40:42.444746 #96575] INFO -- : Completed 200 OK in 1110ms (Views: 1109.0ms | Allocations: 690969)
549
+ I, [2021-03-16T09:40:42.449148 #96575] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:40:42 -0700
550
+ I, [2021-03-16T09:40:42.842620 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
551
+ I, [2021-03-16T09:40:42.842698 #96575] INFO -- : Parameters: {"resource_path"=>"page-8981"}
552
+ D, [2021-03-16T09:40:42.843993 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
553
+ D, [2021-03-16T09:40:42.844108 #96575] DEBUG -- : Rendering inline template within layouts/application
554
+ I, [2021-03-16T09:40:44.119910 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1275.7ms | Allocations: 690144)
555
+ I, [2021-03-16T09:40:44.121087 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1277.0ms | Allocations: 690467)
556
+ I, [2021-03-16T09:40:44.121227 #96575] INFO -- : Completed 200 OK in 1278ms (Views: 1277.5ms | Allocations: 690973)
557
+ I, [2021-03-16T09:40:44.259192 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:44 -0700
558
+ I, [2021-03-16T09:40:44.483915 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
559
+ I, [2021-03-16T09:40:44.483988 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
560
+ D, [2021-03-16T09:40:44.488728 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
561
+ D, [2021-03-16T09:40:44.488797 #96575] DEBUG -- : Rendering inline template within layouts/application
562
+ I, [2021-03-16T09:40:45.712295 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1223.4ms | Allocations: 690141)
563
+ I, [2021-03-16T09:40:45.713494 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1224.7ms | Allocations: 690463)
564
+ I, [2021-03-16T09:40:45.713658 #96575] INFO -- : Completed 200 OK in 1230ms (Views: 1225.0ms | Allocations: 690969)
565
+ I, [2021-03-16T09:40:45.717363 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:45 -0700
566
+ I, [2021-03-16T09:40:46.057217 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
567
+ I, [2021-03-16T09:40:46.057271 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
568
+ D, [2021-03-16T09:40:46.058079 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
569
+ D, [2021-03-16T09:40:46.058146 #96575] DEBUG -- : Rendering inline template within layouts/application
570
+ I, [2021-03-16T09:40:47.132959 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1074.7ms | Allocations: 690141)
571
+ I, [2021-03-16T09:40:47.134289 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1076.1ms | Allocations: 690464)
572
+ I, [2021-03-16T09:40:47.134419 #96575] INFO -- : Completed 200 OK in 1077ms (Views: 1076.4ms | Allocations: 690970)
573
+ I, [2021-03-16T09:40:47.138125 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:47 -0700
574
+ I, [2021-03-16T09:40:47.521988 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
575
+ I, [2021-03-16T09:40:47.522230 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
576
+ D, [2021-03-16T09:40:47.523160 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
577
+ D, [2021-03-16T09:40:47.523225 #96575] DEBUG -- : Rendering inline template within layouts/application
578
+ I, [2021-03-16T09:40:48.833683 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1310.4ms | Allocations: 690142)
579
+ I, [2021-03-16T09:40:48.834980 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1311.8ms | Allocations: 690464)
580
+ I, [2021-03-16T09:40:48.835159 #96575] INFO -- : Completed 200 OK in 1313ms (Views: 1312.1ms | Allocations: 690970)
581
+ I, [2021-03-16T09:40:48.839160 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:48 -0700
582
+ I, [2021-03-16T09:40:49.181340 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
583
+ I, [2021-03-16T09:40:49.181424 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
584
+ D, [2021-03-16T09:40:49.182115 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
585
+ D, [2021-03-16T09:40:49.182162 #96575] DEBUG -- : Rendering inline template within layouts/application
586
+ I, [2021-03-16T09:40:50.343815 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1161.6ms | Allocations: 690141)
587
+ I, [2021-03-16T09:40:50.345435 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1163.2ms | Allocations: 690464)
588
+ I, [2021-03-16T09:40:50.345596 #96575] INFO -- : Completed 200 OK in 1164ms (Views: 1163.5ms | Allocations: 690970)
589
+ I, [2021-03-16T09:40:50.350842 #96575] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:40:50 -0700
590
+ I, [2021-03-16T09:40:50.643132 #96575] INFO -- : Processing by Sitepress::SiteController#show as HTML
591
+ I, [2021-03-16T09:40:50.643193 #96575] INFO -- : Parameters: {"resource_path"=>"page-8161"}
592
+ D, [2021-03-16T09:40:50.644012 #96575] DEBUG -- : Rendering layout layouts/application.html.erb
593
+ D, [2021-03-16T09:40:50.644070 #96575] DEBUG -- : Rendering inline template within layouts/application
594
+ I, [2021-03-16T09:40:51.735241 #96575] INFO -- : Rendered inline template within layouts/application (Duration: 1091.1ms | Allocations: 690142)
595
+ I, [2021-03-16T09:40:51.736575 #96575] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1092.5ms | Allocations: 690464)
596
+ I, [2021-03-16T09:40:51.736772 #96575] INFO -- : Completed 200 OK in 1094ms (Views: 1092.9ms | Allocations: 690970)
597
+ I, [2021-03-16T09:52:26.198162 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:26 -0700
598
+ I, [2021-03-16T09:52:26.201990 #99177] INFO -- : Processing by BaselineController#show as HTML
599
+ D, [2021-03-16T09:52:26.204055 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
600
+ D, [2021-03-16T09:52:26.204138 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
601
+ I, [2021-03-16T09:52:26.204759 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.5ms | Allocations: 93)
602
+ I, [2021-03-16T09:52:26.209251 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 5.1ms | Allocations: 431)
603
+ I, [2021-03-16T09:52:26.209502 #99177] INFO -- : Completed 200 OK in 7ms (Views: 6.8ms | Allocations: 1376)
604
+ I, [2021-03-16T09:52:26.211510 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:26 -0700
605
+ I, [2021-03-16T09:52:26.212016 #99177] INFO -- : Processing by BaselineController#show as HTML
606
+ D, [2021-03-16T09:52:26.212345 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
607
+ D, [2021-03-16T09:52:26.212404 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
608
+ I, [2021-03-16T09:52:26.212475 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
609
+ I, [2021-03-16T09:52:26.213428 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1.0ms | Allocations: 333)
610
+ I, [2021-03-16T09:52:26.213586 #99177] INFO -- : Completed 200 OK in 2ms (Views: 1.4ms | Allocations: 552)
611
+ I, [2021-03-16T09:52:26.214443 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:26 -0700
612
+ I, [2021-03-16T09:52:26.214802 #99177] INFO -- : Processing by BaselineController#show as HTML
613
+ D, [2021-03-16T09:52:26.215047 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
614
+ D, [2021-03-16T09:52:26.215104 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
615
+ I, [2021-03-16T09:52:26.215191 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
616
+ I, [2021-03-16T09:52:26.215569 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
617
+ I, [2021-03-16T09:52:26.215680 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
618
+ I, [2021-03-16T09:52:26.216522 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:26 -0700
619
+ I, [2021-03-16T09:52:26.216866 #99177] INFO -- : Processing by BaselineController#show as HTML
620
+ D, [2021-03-16T09:52:26.217105 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
621
+ D, [2021-03-16T09:52:26.217159 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
622
+ I, [2021-03-16T09:52:26.217220 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
623
+ I, [2021-03-16T09:52:26.217593 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
624
+ I, [2021-03-16T09:52:26.217702 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
625
+ I, [2021-03-16T09:52:26.218457 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:26 -0700
626
+ I, [2021-03-16T09:52:26.218773 #99177] INFO -- : Processing by BaselineController#show as HTML
627
+ D, [2021-03-16T09:52:26.219009 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
628
+ D, [2021-03-16T09:52:26.219064 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
629
+ I, [2021-03-16T09:52:26.219125 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
630
+ I, [2021-03-16T09:52:26.219504 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
631
+ I, [2021-03-16T09:52:26.219612 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
632
+ I, [2021-03-16T09:52:26.220465 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:26 -0700
633
+ I, [2021-03-16T09:52:26.220836 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
634
+ I, [2021-03-16T09:52:26.220876 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
635
+ D, [2021-03-16T09:52:26.223194 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
636
+ D, [2021-03-16T09:52:26.223286 #99177] DEBUG -- : Rendering inline template within layouts/application
637
+ I, [2021-03-16T09:52:27.286588 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1063.2ms | Allocations: 660131)
638
+ I, [2021-03-16T09:52:27.287678 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1064.4ms | Allocations: 660454)
639
+ I, [2021-03-16T09:52:27.287842 #99177] INFO -- : Completed 200 OK in 1067ms (Views: 1065.0ms | Allocations: 661492)
640
+ I, [2021-03-16T09:52:27.291900 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:27 -0700
641
+ I, [2021-03-16T09:52:27.292265 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
642
+ I, [2021-03-16T09:52:27.292292 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
643
+ D, [2021-03-16T09:52:27.292853 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
644
+ D, [2021-03-16T09:52:27.292916 #99177] DEBUG -- : Rendering inline template within layouts/application
645
+ I, [2021-03-16T09:52:27.409491 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 116.5ms | Allocations: 200171)
646
+ I, [2021-03-16T09:52:27.410330 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 117.4ms | Allocations: 200493)
647
+ I, [2021-03-16T09:52:27.410481 #99177] INFO -- : Completed 200 OK in 118ms (Views: 117.7ms | Allocations: 200904)
648
+ I, [2021-03-16T09:52:27.415209 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:27 -0700
649
+ I, [2021-03-16T09:52:27.415611 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
650
+ I, [2021-03-16T09:52:27.415647 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
651
+ D, [2021-03-16T09:52:27.416209 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
652
+ D, [2021-03-16T09:52:27.416263 #99177] DEBUG -- : Rendering inline template within layouts/application
653
+ I, [2021-03-16T09:52:27.511739 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 95.4ms | Allocations: 200174)
654
+ I, [2021-03-16T09:52:27.512487 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 96.2ms | Allocations: 200496)
655
+ I, [2021-03-16T09:52:27.512636 #99177] INFO -- : Completed 200 OK in 97ms (Views: 96.5ms | Allocations: 200907)
656
+ I, [2021-03-16T09:52:27.517412 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:27 -0700
657
+ I, [2021-03-16T09:52:27.517795 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
658
+ I, [2021-03-16T09:52:27.517830 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
659
+ D, [2021-03-16T09:52:27.518381 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
660
+ D, [2021-03-16T09:52:27.518433 #99177] DEBUG -- : Rendering inline template within layouts/application
661
+ I, [2021-03-16T09:52:27.611980 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 93.5ms | Allocations: 200171)
662
+ I, [2021-03-16T09:52:27.612701 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 94.3ms | Allocations: 200493)
663
+ I, [2021-03-16T09:52:27.612851 #99177] INFO -- : Completed 200 OK in 95ms (Views: 94.6ms | Allocations: 200904)
664
+ I, [2021-03-16T09:52:27.617641 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:27 -0700
665
+ I, [2021-03-16T09:52:27.618039 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
666
+ I, [2021-03-16T09:52:27.618076 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
667
+ D, [2021-03-16T09:52:27.618636 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
668
+ D, [2021-03-16T09:52:27.618689 #99177] DEBUG -- : Rendering inline template within layouts/application
669
+ I, [2021-03-16T09:52:27.712697 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 94.0ms | Allocations: 200177)
670
+ I, [2021-03-16T09:52:27.713908 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.2ms | Allocations: 200499)
671
+ I, [2021-03-16T09:52:27.714063 #99177] INFO -- : Completed 200 OK in 96ms (Views: 95.5ms | Allocations: 200910)
672
+ I, [2021-03-16T09:52:27.719015 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:27 -0700
673
+ I, [2021-03-16T09:52:27.719431 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
674
+ I, [2021-03-16T09:52:27.719474 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
675
+ D, [2021-03-16T09:52:27.720185 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
676
+ D, [2021-03-16T09:52:27.720278 #99177] DEBUG -- : Rendering inline template within layouts/application
677
+ I, [2021-03-16T09:52:27.822220 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 101.9ms | Allocations: 200174)
678
+ I, [2021-03-16T09:52:27.822948 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 102.7ms | Allocations: 200496)
679
+ I, [2021-03-16T09:52:27.823088 #99177] INFO -- : Completed 200 OK in 104ms (Views: 103.0ms | Allocations: 200960)
680
+ I, [2021-03-16T09:52:27.827892 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:27 -0700
681
+ I, [2021-03-16T09:52:27.828270 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
682
+ I, [2021-03-16T09:52:27.828307 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
683
+ D, [2021-03-16T09:52:27.828864 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
684
+ D, [2021-03-16T09:52:27.828918 #99177] DEBUG -- : Rendering inline template within layouts/application
685
+ I, [2021-03-16T09:52:27.923839 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 94.9ms | Allocations: 200171)
686
+ I, [2021-03-16T09:52:27.924755 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.8ms | Allocations: 200493)
687
+ I, [2021-03-16T09:52:27.924894 #99177] INFO -- : Completed 200 OK in 97ms (Views: 96.1ms | Allocations: 200904)
688
+ I, [2021-03-16T09:52:27.929448 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:27 -0700
689
+ I, [2021-03-16T09:52:27.929823 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
690
+ I, [2021-03-16T09:52:27.929858 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
691
+ D, [2021-03-16T09:52:27.930404 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
692
+ D, [2021-03-16T09:52:27.930456 #99177] DEBUG -- : Rendering inline template within layouts/application
693
+ I, [2021-03-16T09:52:28.019923 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 89.4ms | Allocations: 200177)
694
+ I, [2021-03-16T09:52:28.021161 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 90.7ms | Allocations: 200499)
695
+ I, [2021-03-16T09:52:28.021302 #99177] INFO -- : Completed 200 OK in 91ms (Views: 91.0ms | Allocations: 200910)
696
+ I, [2021-03-16T09:52:28.025852 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
697
+ I, [2021-03-16T09:52:28.026226 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
698
+ I, [2021-03-16T09:52:28.026261 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
699
+ D, [2021-03-16T09:52:28.026800 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
700
+ D, [2021-03-16T09:52:28.026851 #99177] DEBUG -- : Rendering inline template within layouts/application
701
+ I, [2021-03-16T09:52:28.116588 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 89.7ms | Allocations: 200174)
702
+ I, [2021-03-16T09:52:28.117297 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 90.4ms | Allocations: 200496)
703
+ I, [2021-03-16T09:52:28.117452 #99177] INFO -- : Completed 200 OK in 91ms (Views: 90.7ms | Allocations: 200907)
704
+ I, [2021-03-16T09:52:28.121938 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
705
+ I, [2021-03-16T09:52:28.122307 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
706
+ I, [2021-03-16T09:52:28.122341 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
707
+ D, [2021-03-16T09:52:28.122868 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
708
+ D, [2021-03-16T09:52:28.122920 #99177] DEBUG -- : Rendering inline template within layouts/application
709
+ I, [2021-03-16T09:52:28.215776 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 92.8ms | Allocations: 200174)
710
+ I, [2021-03-16T09:52:28.217045 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 94.1ms | Allocations: 200496)
711
+ I, [2021-03-16T09:52:28.217200 #99177] INFO -- : Completed 200 OK in 95ms (Views: 94.4ms | Allocations: 200907)
712
+ I, [2021-03-16T09:52:28.369085 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
713
+ I, [2021-03-16T09:52:28.369569 #99177] INFO -- : Processing by BaselineController#show as HTML
714
+ D, [2021-03-16T09:52:28.369882 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
715
+ D, [2021-03-16T09:52:28.369945 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
716
+ I, [2021-03-16T09:52:28.370025 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
717
+ I, [2021-03-16T09:52:28.370493 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 330)
718
+ I, [2021-03-16T09:52:28.370625 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 551)
719
+ I, [2021-03-16T09:52:28.371489 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
720
+ I, [2021-03-16T09:52:28.371820 #99177] INFO -- : Processing by BaselineController#show as HTML
721
+ D, [2021-03-16T09:52:28.372064 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
722
+ D, [2021-03-16T09:52:28.372122 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
723
+ I, [2021-03-16T09:52:28.372186 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
724
+ I, [2021-03-16T09:52:28.372568 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
725
+ I, [2021-03-16T09:52:28.372682 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
726
+ I, [2021-03-16T09:52:28.373468 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
727
+ I, [2021-03-16T09:52:28.373801 #99177] INFO -- : Processing by BaselineController#show as HTML
728
+ D, [2021-03-16T09:52:28.374048 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
729
+ D, [2021-03-16T09:52:28.374106 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
730
+ I, [2021-03-16T09:52:28.374171 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
731
+ I, [2021-03-16T09:52:28.374555 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
732
+ I, [2021-03-16T09:52:28.374669 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
733
+ I, [2021-03-16T09:52:28.375439 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
734
+ I, [2021-03-16T09:52:28.375768 #99177] INFO -- : Processing by BaselineController#show as HTML
735
+ D, [2021-03-16T09:52:28.376088 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
736
+ D, [2021-03-16T09:52:28.376150 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
737
+ I, [2021-03-16T09:52:28.376216 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
738
+ I, [2021-03-16T09:52:28.376603 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
739
+ I, [2021-03-16T09:52:28.376717 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
740
+ I, [2021-03-16T09:52:28.377501 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
741
+ I, [2021-03-16T09:52:28.377818 #99177] INFO -- : Processing by BaselineController#show as HTML
742
+ D, [2021-03-16T09:52:28.378050 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
743
+ D, [2021-03-16T09:52:28.378105 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
744
+ I, [2021-03-16T09:52:28.378166 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
745
+ I, [2021-03-16T09:52:28.378527 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
746
+ I, [2021-03-16T09:52:28.378641 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
747
+ I, [2021-03-16T09:52:28.424533 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
748
+ I, [2021-03-16T09:52:28.424991 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
749
+ I, [2021-03-16T09:52:28.425034 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
750
+ D, [2021-03-16T09:52:28.425662 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
751
+ D, [2021-03-16T09:52:28.425725 #99177] DEBUG -- : Rendering inline template within layouts/application
752
+ I, [2021-03-16T09:52:28.522397 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 96.6ms | Allocations: 200179)
753
+ I, [2021-03-16T09:52:28.523154 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 97.4ms | Allocations: 200501)
754
+ I, [2021-03-16T09:52:28.523306 #99177] INFO -- : Completed 200 OK in 98ms (Views: 97.7ms | Allocations: 200913)
755
+ I, [2021-03-16T09:52:28.528184 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
756
+ I, [2021-03-16T09:52:28.528582 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
757
+ I, [2021-03-16T09:52:28.528619 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
758
+ D, [2021-03-16T09:52:28.529188 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
759
+ D, [2021-03-16T09:52:28.529241 #99177] DEBUG -- : Rendering inline template within layouts/application
760
+ I, [2021-03-16T09:52:28.629026 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 99.7ms | Allocations: 200169)
761
+ I, [2021-03-16T09:52:28.629710 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 100.5ms | Allocations: 200491)
762
+ I, [2021-03-16T09:52:28.629855 #99177] INFO -- : Completed 200 OK in 101ms (Views: 100.8ms | Allocations: 200902)
763
+ I, [2021-03-16T09:52:28.634636 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
764
+ I, [2021-03-16T09:52:28.635032 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
765
+ I, [2021-03-16T09:52:28.635068 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
766
+ D, [2021-03-16T09:52:28.635628 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
767
+ D, [2021-03-16T09:52:28.635681 #99177] DEBUG -- : Rendering inline template within layouts/application
768
+ I, [2021-03-16T09:52:28.735176 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 99.4ms | Allocations: 200177)
769
+ I, [2021-03-16T09:52:28.735898 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 100.2ms | Allocations: 200499)
770
+ I, [2021-03-16T09:52:28.736044 #99177] INFO -- : Completed 200 OK in 101ms (Views: 100.5ms | Allocations: 200910)
771
+ I, [2021-03-16T09:52:28.741134 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
772
+ I, [2021-03-16T09:52:28.741629 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
773
+ I, [2021-03-16T09:52:28.741671 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
774
+ D, [2021-03-16T09:52:28.742253 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
775
+ D, [2021-03-16T09:52:28.742308 #99177] DEBUG -- : Rendering inline template within layouts/application
776
+ I, [2021-03-16T09:52:28.846490 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 104.1ms | Allocations: 200174)
777
+ I, [2021-03-16T09:52:28.847211 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 104.9ms | Allocations: 200496)
778
+ I, [2021-03-16T09:52:28.847360 #99177] INFO -- : Completed 200 OK in 106ms (Views: 105.2ms | Allocations: 200907)
779
+ I, [2021-03-16T09:52:28.852563 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:28 -0700
780
+ I, [2021-03-16T09:52:28.853052 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
781
+ I, [2021-03-16T09:52:28.853100 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
782
+ D, [2021-03-16T09:52:28.853737 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
783
+ D, [2021-03-16T09:52:28.853797 #99177] DEBUG -- : Rendering inline template within layouts/application
784
+ I, [2021-03-16T09:52:28.954090 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 100.2ms | Allocations: 200171)
785
+ I, [2021-03-16T09:52:28.954836 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 101.0ms | Allocations: 200493)
786
+ I, [2021-03-16T09:52:28.954982 #99177] INFO -- : Completed 200 OK in 102ms (Views: 101.4ms | Allocations: 200904)
787
+ I, [2021-03-16T09:52:29.013298 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
788
+ I, [2021-03-16T09:52:29.013762 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
789
+ I, [2021-03-16T09:52:29.013805 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
790
+ D, [2021-03-16T09:52:29.014436 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
791
+ D, [2021-03-16T09:52:29.014499 #99177] DEBUG -- : Rendering inline template within layouts/application
792
+ I, [2021-03-16T09:52:29.110300 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 95.7ms | Allocations: 200173)
793
+ I, [2021-03-16T09:52:29.111089 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 96.6ms | Allocations: 200495)
794
+ I, [2021-03-16T09:52:29.111237 #99177] INFO -- : Completed 200 OK in 97ms (Views: 96.9ms | Allocations: 200907)
795
+ I, [2021-03-16T09:52:29.116231 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
796
+ I, [2021-03-16T09:52:29.116635 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
797
+ I, [2021-03-16T09:52:29.116672 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
798
+ D, [2021-03-16T09:52:29.117264 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
799
+ D, [2021-03-16T09:52:29.117321 #99177] DEBUG -- : Rendering inline template within layouts/application
800
+ I, [2021-03-16T09:52:29.212944 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 95.6ms | Allocations: 200169)
801
+ I, [2021-03-16T09:52:29.213745 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 96.4ms | Allocations: 200491)
802
+ I, [2021-03-16T09:52:29.213899 #99177] INFO -- : Completed 200 OK in 97ms (Views: 96.7ms | Allocations: 200902)
803
+ I, [2021-03-16T09:52:29.218797 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
804
+ I, [2021-03-16T09:52:29.219188 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
805
+ I, [2021-03-16T09:52:29.219225 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
806
+ D, [2021-03-16T09:52:29.219818 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
807
+ D, [2021-03-16T09:52:29.219873 #99177] DEBUG -- : Rendering inline template within layouts/application
808
+ I, [2021-03-16T09:52:29.320196 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 100.3ms | Allocations: 200177)
809
+ I, [2021-03-16T09:52:29.321008 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 101.1ms | Allocations: 200499)
810
+ I, [2021-03-16T09:52:29.321157 #99177] INFO -- : Completed 200 OK in 102ms (Views: 101.4ms | Allocations: 200910)
811
+ I, [2021-03-16T09:52:29.326195 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
812
+ I, [2021-03-16T09:52:29.326591 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
813
+ I, [2021-03-16T09:52:29.326628 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
814
+ D, [2021-03-16T09:52:29.327377 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
815
+ D, [2021-03-16T09:52:29.327459 #99177] DEBUG -- : Rendering inline template within layouts/application
816
+ I, [2021-03-16T09:52:29.430896 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 103.4ms | Allocations: 200174)
817
+ I, [2021-03-16T09:52:29.431677 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 104.2ms | Allocations: 200496)
818
+ I, [2021-03-16T09:52:29.431824 #99177] INFO -- : Completed 200 OK in 105ms (Views: 104.7ms | Allocations: 200907)
819
+ I, [2021-03-16T09:52:29.436661 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
820
+ I, [2021-03-16T09:52:29.437042 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
821
+ I, [2021-03-16T09:52:29.437078 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
822
+ D, [2021-03-16T09:52:29.437653 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
823
+ D, [2021-03-16T09:52:29.437707 #99177] DEBUG -- : Rendering inline template within layouts/application
824
+ I, [2021-03-16T09:52:29.537457 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 99.7ms | Allocations: 200171)
825
+ I, [2021-03-16T09:52:29.538179 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 100.5ms | Allocations: 200493)
826
+ I, [2021-03-16T09:52:29.538326 #99177] INFO -- : Completed 200 OK in 101ms (Views: 100.8ms | Allocations: 200904)
827
+ I, [2021-03-16T09:52:29.543500 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
828
+ I, [2021-03-16T09:52:29.543940 #99177] INFO -- : Processing by BaselineController#show as HTML
829
+ D, [2021-03-16T09:52:29.544223 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
830
+ D, [2021-03-16T09:52:29.544279 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
831
+ I, [2021-03-16T09:52:29.544347 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
832
+ I, [2021-03-16T09:52:29.544805 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 330)
833
+ I, [2021-03-16T09:52:29.544933 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 550)
834
+ I, [2021-03-16T09:52:29.545751 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
835
+ I, [2021-03-16T09:52:29.546100 #99177] INFO -- : Processing by BaselineController#show as HTML
836
+ D, [2021-03-16T09:52:29.546330 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
837
+ D, [2021-03-16T09:52:29.546384 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
838
+ I, [2021-03-16T09:52:29.546450 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
839
+ I, [2021-03-16T09:52:29.546801 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
840
+ I, [2021-03-16T09:52:29.546912 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
841
+ I, [2021-03-16T09:52:29.547632 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
842
+ I, [2021-03-16T09:52:29.547923 #99177] INFO -- : Processing by BaselineController#show as HTML
843
+ D, [2021-03-16T09:52:29.548146 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
844
+ D, [2021-03-16T09:52:29.548198 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
845
+ I, [2021-03-16T09:52:29.548255 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
846
+ I, [2021-03-16T09:52:29.548610 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
847
+ I, [2021-03-16T09:52:29.548708 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 546)
848
+ I, [2021-03-16T09:52:29.549392 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
849
+ I, [2021-03-16T09:52:29.549684 #99177] INFO -- : Processing by BaselineController#show as HTML
850
+ D, [2021-03-16T09:52:29.549895 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
851
+ D, [2021-03-16T09:52:29.549945 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
852
+ I, [2021-03-16T09:52:29.550007 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
853
+ I, [2021-03-16T09:52:29.550346 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
854
+ I, [2021-03-16T09:52:29.550464 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 546)
855
+ I, [2021-03-16T09:52:29.551150 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
856
+ I, [2021-03-16T09:52:29.551519 #99177] INFO -- : Processing by BaselineController#show as HTML
857
+ D, [2021-03-16T09:52:29.551755 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
858
+ D, [2021-03-16T09:52:29.551807 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
859
+ I, [2021-03-16T09:52:29.551865 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
860
+ I, [2021-03-16T09:52:29.552237 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
861
+ I, [2021-03-16T09:52:29.552346 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
862
+ I, [2021-03-16T09:52:29.553197 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
863
+ I, [2021-03-16T09:52:29.553547 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
864
+ I, [2021-03-16T09:52:29.553583 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
865
+ D, [2021-03-16T09:52:29.554109 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
866
+ D, [2021-03-16T09:52:29.554161 #99177] DEBUG -- : Rendering inline template within layouts/application
867
+ I, [2021-03-16T09:52:29.658069 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 103.8ms | Allocations: 200177)
868
+ I, [2021-03-16T09:52:29.658923 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 104.8ms | Allocations: 200499)
869
+ I, [2021-03-16T09:52:29.659090 #99177] INFO -- : Completed 200 OK in 105ms (Views: 105.0ms | Allocations: 200909)
870
+ I, [2021-03-16T09:52:29.663929 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:29 -0700
871
+ I, [2021-03-16T09:52:30.007120 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
872
+ I, [2021-03-16T09:52:30.007272 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
873
+ D, [2021-03-16T09:52:30.009212 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
874
+ D, [2021-03-16T09:52:30.009392 #99177] DEBUG -- : Rendering inline template within layouts/application
875
+ I, [2021-03-16T09:52:31.179601 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1170.1ms | Allocations: 690147)
876
+ I, [2021-03-16T09:52:31.180826 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1171.5ms | Allocations: 690470)
877
+ I, [2021-03-16T09:52:31.181011 #99177] INFO -- : Completed 200 OK in 1174ms (Views: 1172.1ms | Allocations: 690976)
878
+ I, [2021-03-16T09:52:31.186672 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:31 -0700
879
+ I, [2021-03-16T09:52:31.538354 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
880
+ I, [2021-03-16T09:52:31.538423 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
881
+ D, [2021-03-16T09:52:31.539758 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
882
+ D, [2021-03-16T09:52:31.539819 #99177] DEBUG -- : Rendering inline template within layouts/application
883
+ I, [2021-03-16T09:52:32.846552 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1306.7ms | Allocations: 690150)
884
+ I, [2021-03-16T09:52:32.847911 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1308.1ms | Allocations: 690473)
885
+ I, [2021-03-16T09:52:32.848086 #99177] INFO -- : Completed 200 OK in 1310ms (Views: 1308.4ms | Allocations: 690979)
886
+ I, [2021-03-16T09:52:32.853006 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:32 -0700
887
+ I, [2021-03-16T09:52:33.228947 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
888
+ I, [2021-03-16T09:52:33.229024 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
889
+ D, [2021-03-16T09:52:33.230143 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
890
+ D, [2021-03-16T09:52:33.230208 #99177] DEBUG -- : Rendering inline template within layouts/application
891
+ I, [2021-03-16T09:52:34.379552 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1149.3ms | Allocations: 690144)
892
+ I, [2021-03-16T09:52:34.380867 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1150.7ms | Allocations: 690467)
893
+ I, [2021-03-16T09:52:34.381031 #99177] INFO -- : Completed 200 OK in 1152ms (Views: 1151.1ms | Allocations: 690973)
894
+ I, [2021-03-16T09:52:34.385829 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:34 -0700
895
+ I, [2021-03-16T09:52:34.721458 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
896
+ I, [2021-03-16T09:52:34.721521 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
897
+ D, [2021-03-16T09:52:34.722369 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
898
+ D, [2021-03-16T09:52:34.722424 #99177] DEBUG -- : Rendering inline template within layouts/application
899
+ I, [2021-03-16T09:52:35.951718 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1229.2ms | Allocations: 690147)
900
+ I, [2021-03-16T09:52:35.952803 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1230.4ms | Allocations: 690470)
901
+ I, [2021-03-16T09:52:35.952936 #99177] INFO -- : Completed 200 OK in 1231ms (Views: 1230.7ms | Allocations: 690976)
902
+ I, [2021-03-16T09:52:35.962582 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:35 -0700
903
+ I, [2021-03-16T09:52:36.233283 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
904
+ I, [2021-03-16T09:52:36.233365 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
905
+ D, [2021-03-16T09:52:36.234324 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
906
+ D, [2021-03-16T09:52:36.234388 #99177] DEBUG -- : Rendering inline template within layouts/application
907
+ I, [2021-03-16T09:52:37.367023 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1132.6ms | Allocations: 690139)
908
+ I, [2021-03-16T09:52:37.368054 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1133.7ms | Allocations: 690462)
909
+ I, [2021-03-16T09:52:37.368178 #99177] INFO -- : Completed 200 OK in 1135ms (Views: 1134.0ms | Allocations: 690968)
910
+ I, [2021-03-16T09:52:37.371906 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:37 -0700
911
+ I, [2021-03-16T09:52:37.672856 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
912
+ I, [2021-03-16T09:52:37.672926 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
913
+ D, [2021-03-16T09:52:37.674141 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
914
+ D, [2021-03-16T09:52:37.674201 #99177] DEBUG -- : Rendering inline template within layouts/application
915
+ I, [2021-03-16T09:52:38.747666 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1073.4ms | Allocations: 690148)
916
+ I, [2021-03-16T09:52:38.748745 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1074.5ms | Allocations: 690471)
917
+ I, [2021-03-16T09:52:38.748877 #99177] INFO -- : Completed 200 OK in 1076ms (Views: 1074.9ms | Allocations: 690976)
918
+ I, [2021-03-16T09:52:38.753031 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:38 -0700
919
+ I, [2021-03-16T09:52:39.090798 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
920
+ I, [2021-03-16T09:52:39.090859 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
921
+ D, [2021-03-16T09:52:39.091739 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
922
+ D, [2021-03-16T09:52:39.091792 #99177] DEBUG -- : Rendering inline template within layouts/application
923
+ I, [2021-03-16T09:52:40.258988 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1167.1ms | Allocations: 690144)
924
+ I, [2021-03-16T09:52:40.260345 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1168.6ms | Allocations: 690467)
925
+ I, [2021-03-16T09:52:40.260496 #99177] INFO -- : Completed 200 OK in 1170ms (Views: 1168.8ms | Allocations: 690973)
926
+ I, [2021-03-16T09:52:40.264295 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:40 -0700
927
+ I, [2021-03-16T09:52:40.572169 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
928
+ I, [2021-03-16T09:52:40.572231 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
929
+ D, [2021-03-16T09:52:40.573069 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
930
+ D, [2021-03-16T09:52:40.573123 #99177] DEBUG -- : Rendering inline template within layouts/application
931
+ I, [2021-03-16T09:52:41.609418 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1036.2ms | Allocations: 690147)
932
+ I, [2021-03-16T09:52:41.610551 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1037.4ms | Allocations: 690470)
933
+ I, [2021-03-16T09:52:41.610687 #99177] INFO -- : Completed 200 OK in 1038ms (Views: 1037.7ms | Allocations: 690976)
934
+ I, [2021-03-16T09:52:41.614485 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:41 -0700
935
+ I, [2021-03-16T09:52:41.905337 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
936
+ I, [2021-03-16T09:52:41.905413 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
937
+ D, [2021-03-16T09:52:41.906353 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
938
+ D, [2021-03-16T09:52:41.906421 #99177] DEBUG -- : Rendering inline template within layouts/application
939
+ I, [2021-03-16T09:52:42.990011 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1083.5ms | Allocations: 690139)
940
+ I, [2021-03-16T09:52:42.991120 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1084.7ms | Allocations: 690462)
941
+ I, [2021-03-16T09:52:42.991247 #99177] INFO -- : Completed 200 OK in 1086ms (Views: 1085.0ms | Allocations: 690968)
942
+ I, [2021-03-16T09:52:43.457971 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:43 -0700
943
+ I, [2021-03-16T09:52:43.458491 #99177] INFO -- : Processing by BaselineController#show as HTML
944
+ D, [2021-03-16T09:52:43.458827 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
945
+ D, [2021-03-16T09:52:43.458898 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
946
+ I, [2021-03-16T09:52:43.458984 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
947
+ I, [2021-03-16T09:52:43.460128 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1.2ms | Allocations: 330)
948
+ I, [2021-03-16T09:52:43.460277 #99177] INFO -- : Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 551)
949
+ I, [2021-03-16T09:52:43.461199 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:43 -0700
950
+ I, [2021-03-16T09:52:43.461540 #99177] INFO -- : Processing by BaselineController#show as HTML
951
+ D, [2021-03-16T09:52:43.461795 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
952
+ D, [2021-03-16T09:52:43.461859 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
953
+ I, [2021-03-16T09:52:43.461930 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
954
+ I, [2021-03-16T09:52:43.462327 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
955
+ I, [2021-03-16T09:52:43.462448 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
956
+ I, [2021-03-16T09:52:43.463259 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:43 -0700
957
+ I, [2021-03-16T09:52:43.463606 #99177] INFO -- : Processing by BaselineController#show as HTML
958
+ D, [2021-03-16T09:52:43.463859 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
959
+ D, [2021-03-16T09:52:43.463927 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
960
+ I, [2021-03-16T09:52:43.463997 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
961
+ I, [2021-03-16T09:52:43.464401 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
962
+ I, [2021-03-16T09:52:43.464517 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
963
+ I, [2021-03-16T09:52:43.465283 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:43 -0700
964
+ I, [2021-03-16T09:52:43.465611 #99177] INFO -- : Processing by BaselineController#show as HTML
965
+ D, [2021-03-16T09:52:43.465855 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
966
+ D, [2021-03-16T09:52:43.465917 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
967
+ I, [2021-03-16T09:52:43.465985 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
968
+ I, [2021-03-16T09:52:43.466363 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
969
+ I, [2021-03-16T09:52:43.466479 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
970
+ I, [2021-03-16T09:52:43.467242 #99177] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 09:52:43 -0700
971
+ I, [2021-03-16T09:52:43.467573 #99177] INFO -- : Processing by BaselineController#show as HTML
972
+ D, [2021-03-16T09:52:43.467818 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
973
+ D, [2021-03-16T09:52:43.467880 #99177] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
974
+ I, [2021-03-16T09:52:43.467949 #99177] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
975
+ I, [2021-03-16T09:52:43.468333 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
976
+ I, [2021-03-16T09:52:43.468450 #99177] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
977
+ I, [2021-03-16T09:52:43.555233 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:43 -0700
978
+ I, [2021-03-16T09:52:43.555711 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
979
+ I, [2021-03-16T09:52:43.555755 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
980
+ D, [2021-03-16T09:52:43.556668 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
981
+ D, [2021-03-16T09:52:43.556735 #99177] DEBUG -- : Rendering inline template within layouts/application
982
+ I, [2021-03-16T09:52:44.524331 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 967.5ms | Allocations: 690147)
983
+ I, [2021-03-16T09:52:44.525399 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 968.7ms | Allocations: 690469)
984
+ I, [2021-03-16T09:52:44.525532 #99177] INFO -- : Completed 200 OK in 970ms (Views: 969.0ms | Allocations: 690975)
985
+ I, [2021-03-16T09:52:44.529236 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:44 -0700
986
+ I, [2021-03-16T09:52:44.775628 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
987
+ I, [2021-03-16T09:52:44.775688 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
988
+ D, [2021-03-16T09:52:44.776414 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
989
+ D, [2021-03-16T09:52:44.776460 #99177] DEBUG -- : Rendering inline template within layouts/application
990
+ I, [2021-03-16T09:52:45.829743 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1053.2ms | Allocations: 690142)
991
+ I, [2021-03-16T09:52:45.830816 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1054.4ms | Allocations: 690464)
992
+ I, [2021-03-16T09:52:45.830981 #99177] INFO -- : Completed 200 OK in 1055ms (Views: 1054.6ms | Allocations: 690970)
993
+ I, [2021-03-16T09:52:45.835020 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:45 -0700
994
+ I, [2021-03-16T09:52:46.159224 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
995
+ I, [2021-03-16T09:52:46.159292 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
996
+ D, [2021-03-16T09:52:46.160086 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
997
+ D, [2021-03-16T09:52:46.160140 #99177] DEBUG -- : Rendering inline template within layouts/application
998
+ I, [2021-03-16T09:52:47.160287 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1000.1ms | Allocations: 690144)
999
+ I, [2021-03-16T09:52:47.162064 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1001.9ms | Allocations: 690467)
1000
+ I, [2021-03-16T09:52:47.162201 #99177] INFO -- : Completed 200 OK in 1003ms (Views: 1002.2ms | Allocations: 690973)
1001
+ I, [2021-03-16T09:52:47.166006 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:47 -0700
1002
+ I, [2021-03-16T09:52:47.418672 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
1003
+ I, [2021-03-16T09:52:47.418750 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
1004
+ D, [2021-03-16T09:52:47.419759 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
1005
+ D, [2021-03-16T09:52:47.419825 #99177] DEBUG -- : Rendering inline template within layouts/application
1006
+ I, [2021-03-16T09:52:48.438680 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1018.8ms | Allocations: 690144)
1007
+ I, [2021-03-16T09:52:48.439925 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1020.1ms | Allocations: 690466)
1008
+ I, [2021-03-16T09:52:48.440054 #99177] INFO -- : Completed 200 OK in 1021ms (Views: 1020.5ms | Allocations: 690972)
1009
+ I, [2021-03-16T09:52:48.443762 #99177] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 09:52:48 -0700
1010
+ I, [2021-03-16T09:52:48.788490 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
1011
+ I, [2021-03-16T09:52:48.788559 #99177] INFO -- : Parameters: {"resource_path"=>"page-8981"}
1012
+ D, [2021-03-16T09:52:48.790754 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
1013
+ D, [2021-03-16T09:52:48.790816 #99177] DEBUG -- : Rendering inline template within layouts/application
1014
+ I, [2021-03-16T09:52:49.815256 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1024.4ms | Allocations: 690139)
1015
+ I, [2021-03-16T09:52:49.817056 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1026.2ms | Allocations: 690462)
1016
+ I, [2021-03-16T09:52:49.817219 #99177] INFO -- : Completed 200 OK in 1029ms (Views: 1026.6ms | Allocations: 690968)
1017
+ I, [2021-03-16T09:52:49.957188 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:49 -0700
1018
+ I, [2021-03-16T09:52:50.169022 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
1019
+ I, [2021-03-16T09:52:50.169096 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
1020
+ D, [2021-03-16T09:52:50.170027 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
1021
+ D, [2021-03-16T09:52:50.170096 #99177] DEBUG -- : Rendering inline template within layouts/application
1022
+ I, [2021-03-16T09:52:51.200953 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1030.8ms | Allocations: 690141)
1023
+ I, [2021-03-16T09:52:51.201636 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1031.5ms | Allocations: 690463)
1024
+ I, [2021-03-16T09:52:51.201762 #99177] INFO -- : Completed 200 OK in 1033ms (Views: 1031.9ms | Allocations: 690969)
1025
+ I, [2021-03-16T09:52:51.205753 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:51 -0700
1026
+ I, [2021-03-16T09:52:51.460271 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
1027
+ I, [2021-03-16T09:52:51.460338 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
1028
+ D, [2021-03-16T09:52:51.461139 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
1029
+ D, [2021-03-16T09:52:51.461194 #99177] DEBUG -- : Rendering inline template within layouts/application
1030
+ I, [2021-03-16T09:52:52.513285 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1052.0ms | Allocations: 690139)
1031
+ I, [2021-03-16T09:52:52.514298 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1053.1ms | Allocations: 690461)
1032
+ I, [2021-03-16T09:52:52.514427 #99177] INFO -- : Completed 200 OK in 1054ms (Views: 1053.4ms | Allocations: 690967)
1033
+ I, [2021-03-16T09:52:52.518105 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:52 -0700
1034
+ I, [2021-03-16T09:52:52.851782 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
1035
+ I, [2021-03-16T09:52:52.851850 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
1036
+ D, [2021-03-16T09:52:52.852707 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
1037
+ D, [2021-03-16T09:52:52.852765 #99177] DEBUG -- : Rendering inline template within layouts/application
1038
+ I, [2021-03-16T09:52:53.892237 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1039.4ms | Allocations: 690144)
1039
+ I, [2021-03-16T09:52:53.893295 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1040.5ms | Allocations: 690467)
1040
+ I, [2021-03-16T09:52:53.893419 #99177] INFO -- : Completed 200 OK in 1042ms (Views: 1040.8ms | Allocations: 690973)
1041
+ I, [2021-03-16T09:52:53.897056 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:53 -0700
1042
+ I, [2021-03-16T09:52:54.163603 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
1043
+ I, [2021-03-16T09:52:54.163675 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
1044
+ D, [2021-03-16T09:52:54.164583 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
1045
+ D, [2021-03-16T09:52:54.164641 #99177] DEBUG -- : Rendering inline template within layouts/application
1046
+ I, [2021-03-16T09:52:55.155805 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 991.1ms | Allocations: 690144)
1047
+ I, [2021-03-16T09:52:55.156901 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 992.3ms | Allocations: 690466)
1048
+ I, [2021-03-16T09:52:55.157048 #99177] INFO -- : Completed 200 OK in 993ms (Views: 992.6ms | Allocations: 690972)
1049
+ I, [2021-03-16T09:52:55.160970 #99177] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 09:52:55 -0700
1050
+ I, [2021-03-16T09:52:55.519957 #99177] INFO -- : Processing by Sitepress::SiteController#show as HTML
1051
+ I, [2021-03-16T09:52:55.520028 #99177] INFO -- : Parameters: {"resource_path"=>"page-8161"}
1052
+ D, [2021-03-16T09:52:55.520922 #99177] DEBUG -- : Rendering layout layouts/application.html.erb
1053
+ D, [2021-03-16T09:52:55.520984 #99177] DEBUG -- : Rendering inline template within layouts/application
1054
+ I, [2021-03-16T09:52:56.525435 #99177] INFO -- : Rendered inline template within layouts/application (Duration: 1004.4ms | Allocations: 690147)
1055
+ I, [2021-03-16T09:52:56.526472 #99177] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1005.5ms | Allocations: 690470)
1056
+ I, [2021-03-16T09:52:56.526602 #99177] INFO -- : Completed 200 OK in 1007ms (Views: 1005.8ms | Allocations: 690976)