sitepress-rails 2.0.0.beta6 → 2.0.0.beta10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/sitepress/build_paths/directory_index_path.rb +1 -1
- data/lib/sitepress/build_paths/index_path.rb +4 -4
- data/lib/sitepress/build_paths/root_path.rb +12 -8
- data/lib/sitepress/compiler.rb +46 -48
- data/lib/sitepress/engine.rb +6 -8
- data/lib/sitepress/rails.rb +6 -2
- data/lib/sitepress/rails_configuration.rb +5 -5
- data/lib/sitepress/renderers/controller.rb +10 -10
- data/lib/sitepress/renderers/server.rb +7 -7
- data/lib/sitepress/rendition.rb +28 -0
- data/rails/app/controllers/concerns/sitepress/site_pages.rb +96 -41
- data/sitepress-rails.gemspec +2 -1
- data/spec/dummy/app/content/pages/all_pages.html.erb +14 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/production.log +1976 -0
- data/spec/dummy/log/test.log +79710 -1957
- data/spec/sitepress-rails_spec.rb +3 -22
- data/spec/sitepress/compiler_spec.rb +7 -7
- data/spec/sitepress/sitepress_site_controller_spec.rb +4 -22
- data/spec/spec_helper.rb +2 -1
- metadata +17 -9
data/sitepress-rails.gemspec
CHANGED
@@ -8,6 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.version = Sitepress::VERSION
|
9
9
|
spec.authors = ["Brad Gessler"]
|
10
10
|
spec.email = ["bradgessler@gmail.com"]
|
11
|
+
spec.licenses = ["MIT"]
|
11
12
|
|
12
13
|
spec.summary = %q{Sitepress rails integration.}
|
13
14
|
spec.homepage = "https://github.com/sitepress/sitepress"
|
@@ -25,7 +26,7 @@ Gem::Specification.new do |spec|
|
|
25
26
|
spec.add_runtime_dependency "sitepress-core", spec.version
|
26
27
|
|
27
28
|
# We don't need every single rals rependency, so grab the subset here.
|
28
|
-
rails_version = ">=
|
29
|
+
rails_version = ">= 6.0"
|
29
30
|
spec.add_dependency "railties", rails_version
|
30
31
|
spec.add_dependency "actionpack", rails_version
|
31
32
|
spec.add_dependency "sprockets-rails", ">= 2.0.0"
|
@@ -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,1976 @@
|
|
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)
|
1057
|
+
I, [2021-03-16T11:27:23.924922 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:23 -0700
|
1058
|
+
I, [2021-03-16T11:27:23.928017 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1059
|
+
D, [2021-03-16T11:27:23.929999 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1060
|
+
D, [2021-03-16T11:27:23.930081 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1061
|
+
I, [2021-03-16T11:27:23.930579 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.4ms | Allocations: 93)
|
1062
|
+
I, [2021-03-16T11:27:23.935095 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 5.0ms | Allocations: 431)
|
1063
|
+
I, [2021-03-16T11:27:23.935282 #19867] INFO -- : Completed 200 OK in 7ms (Views: 6.6ms | Allocations: 1376)
|
1064
|
+
I, [2021-03-16T11:27:23.936591 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:23 -0700
|
1065
|
+
I, [2021-03-16T11:27:23.937074 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1066
|
+
D, [2021-03-16T11:27:23.937367 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1067
|
+
D, [2021-03-16T11:27:23.937430 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1068
|
+
I, [2021-03-16T11:27:23.937501 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1069
|
+
I, [2021-03-16T11:27:23.938073 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 333)
|
1070
|
+
I, [2021-03-16T11:27:23.938237 #19867] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 552)
|
1071
|
+
I, [2021-03-16T11:27:23.939060 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:23 -0700
|
1072
|
+
I, [2021-03-16T11:27:23.939435 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1073
|
+
D, [2021-03-16T11:27:23.939704 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1074
|
+
D, [2021-03-16T11:27:23.939777 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1075
|
+
I, [2021-03-16T11:27:23.939847 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1076
|
+
I, [2021-03-16T11:27:23.940231 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1077
|
+
I, [2021-03-16T11:27:23.940348 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
|
1078
|
+
I, [2021-03-16T11:27:23.941167 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:23 -0700
|
1079
|
+
I, [2021-03-16T11:27:23.941498 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1080
|
+
D, [2021-03-16T11:27:23.941732 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1081
|
+
D, [2021-03-16T11:27:23.941789 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1082
|
+
I, [2021-03-16T11:27:23.941872 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1083
|
+
I, [2021-03-16T11:27:23.942285 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1084
|
+
I, [2021-03-16T11:27:23.942398 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
|
1085
|
+
I, [2021-03-16T11:27:23.943190 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:23 -0700
|
1086
|
+
I, [2021-03-16T11:27:23.943535 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1087
|
+
D, [2021-03-16T11:27:23.943773 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1088
|
+
D, [2021-03-16T11:27:23.943832 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1089
|
+
I, [2021-03-16T11:27:23.943902 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1090
|
+
I, [2021-03-16T11:27:23.944385 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 328)
|
1091
|
+
I, [2021-03-16T11:27:23.944468 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
|
1092
|
+
I, [2021-03-16T11:27:23.945327 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:23 -0700
|
1093
|
+
I, [2021-03-16T11:27:23.945727 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1094
|
+
I, [2021-03-16T11:27:23.945785 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1095
|
+
D, [2021-03-16T11:27:23.948724 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1096
|
+
D, [2021-03-16T11:27:23.948816 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1097
|
+
I, [2021-03-16T11:27:25.177752 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1228.9ms | Allocations: 660131)
|
1098
|
+
I, [2021-03-16T11:27:25.178999 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1230.2ms | Allocations: 660454)
|
1099
|
+
I, [2021-03-16T11:27:25.179144 #19867] INFO -- : Completed 200 OK in 1233ms (Views: 1230.9ms | Allocations: 661492)
|
1100
|
+
I, [2021-03-16T11:27:25.183924 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:25 -0700
|
1101
|
+
I, [2021-03-16T11:27:25.184404 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1102
|
+
I, [2021-03-16T11:27:25.184438 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1103
|
+
D, [2021-03-16T11:27:25.185023 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1104
|
+
D, [2021-03-16T11:27:25.185067 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1105
|
+
I, [2021-03-16T11:27:25.304896 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 119.8ms | Allocations: 200171)
|
1106
|
+
I, [2021-03-16T11:27:25.306293 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 121.2ms | Allocations: 200493)
|
1107
|
+
I, [2021-03-16T11:27:25.306462 #19867] INFO -- : Completed 200 OK in 122ms (Views: 121.5ms | Allocations: 200904)
|
1108
|
+
I, [2021-03-16T11:27:25.311713 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:25 -0700
|
1109
|
+
I, [2021-03-16T11:27:25.312156 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1110
|
+
I, [2021-03-16T11:27:25.312201 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1111
|
+
D, [2021-03-16T11:27:25.312855 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1112
|
+
D, [2021-03-16T11:27:25.312921 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1113
|
+
I, [2021-03-16T11:27:25.416954 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 104.0ms | Allocations: 200174)
|
1114
|
+
I, [2021-03-16T11:27:25.417845 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 104.9ms | Allocations: 200496)
|
1115
|
+
I, [2021-03-16T11:27:25.418012 #19867] INFO -- : Completed 200 OK in 106ms (Views: 105.3ms | Allocations: 200907)
|
1116
|
+
I, [2021-03-16T11:27:25.423256 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:25 -0700
|
1117
|
+
I, [2021-03-16T11:27:25.423676 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1118
|
+
I, [2021-03-16T11:27:25.423721 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1119
|
+
D, [2021-03-16T11:27:25.424328 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1120
|
+
D, [2021-03-16T11:27:25.424393 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1121
|
+
I, [2021-03-16T11:27:25.526083 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 101.6ms | Allocations: 200171)
|
1122
|
+
I, [2021-03-16T11:27:25.527351 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 103.0ms | Allocations: 200493)
|
1123
|
+
I, [2021-03-16T11:27:25.527509 #19867] INFO -- : Completed 200 OK in 104ms (Views: 103.3ms | Allocations: 200904)
|
1124
|
+
I, [2021-03-16T11:27:25.532247 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:25 -0700
|
1125
|
+
I, [2021-03-16T11:27:25.532666 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1126
|
+
I, [2021-03-16T11:27:25.532709 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1127
|
+
D, [2021-03-16T11:27:25.533330 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1128
|
+
D, [2021-03-16T11:27:25.533394 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1129
|
+
I, [2021-03-16T11:27:25.634361 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 100.9ms | Allocations: 200177)
|
1130
|
+
I, [2021-03-16T11:27:25.635894 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 102.5ms | Allocations: 200499)
|
1131
|
+
I, [2021-03-16T11:27:25.636079 #19867] INFO -- : Completed 200 OK in 103ms (Views: 102.8ms | Allocations: 200910)
|
1132
|
+
I, [2021-03-16T11:27:25.641010 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:25 -0700
|
1133
|
+
I, [2021-03-16T11:27:25.641456 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1134
|
+
I, [2021-03-16T11:27:25.641502 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1135
|
+
D, [2021-03-16T11:27:25.642240 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1136
|
+
D, [2021-03-16T11:27:25.642363 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1137
|
+
I, [2021-03-16T11:27:25.746254 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 103.8ms | Allocations: 200174)
|
1138
|
+
I, [2021-03-16T11:27:25.747535 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 105.2ms | Allocations: 200496)
|
1139
|
+
I, [2021-03-16T11:27:25.747686 #19867] INFO -- : Completed 200 OK in 106ms (Views: 105.5ms | Allocations: 200960)
|
1140
|
+
I, [2021-03-16T11:27:25.753121 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:25 -0700
|
1141
|
+
I, [2021-03-16T11:27:25.753557 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1142
|
+
I, [2021-03-16T11:27:25.753601 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1143
|
+
D, [2021-03-16T11:27:25.754204 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1144
|
+
D, [2021-03-16T11:27:25.754267 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1145
|
+
I, [2021-03-16T11:27:25.852132 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 97.8ms | Allocations: 200171)
|
1146
|
+
I, [2021-03-16T11:27:25.853012 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 98.7ms | Allocations: 200493)
|
1147
|
+
I, [2021-03-16T11:27:25.853161 #19867] INFO -- : Completed 200 OK in 100ms (Views: 99.0ms | Allocations: 200904)
|
1148
|
+
I, [2021-03-16T11:27:25.857884 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:25 -0700
|
1149
|
+
I, [2021-03-16T11:27:25.858299 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1150
|
+
I, [2021-03-16T11:27:25.858341 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1151
|
+
D, [2021-03-16T11:27:25.858936 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1152
|
+
D, [2021-03-16T11:27:25.858999 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1153
|
+
I, [2021-03-16T11:27:25.958077 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 99.0ms | Allocations: 200177)
|
1154
|
+
I, [2021-03-16T11:27:25.959403 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 100.4ms | Allocations: 200499)
|
1155
|
+
I, [2021-03-16T11:27:25.959561 #19867] INFO -- : Completed 200 OK in 101ms (Views: 100.7ms | Allocations: 200910)
|
1156
|
+
I, [2021-03-16T11:27:25.964428 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:25 -0700
|
1157
|
+
I, [2021-03-16T11:27:25.964826 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1158
|
+
I, [2021-03-16T11:27:25.964867 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1159
|
+
D, [2021-03-16T11:27:25.965437 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1160
|
+
D, [2021-03-16T11:27:25.965497 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1161
|
+
I, [2021-03-16T11:27:26.059001 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 93.4ms | Allocations: 200174)
|
1162
|
+
I, [2021-03-16T11:27:26.059711 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 94.2ms | Allocations: 200496)
|
1163
|
+
I, [2021-03-16T11:27:26.059866 #19867] INFO -- : Completed 200 OK in 95ms (Views: 94.5ms | Allocations: 200907)
|
1164
|
+
I, [2021-03-16T11:27:26.064803 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1165
|
+
I, [2021-03-16T11:27:26.065237 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1166
|
+
I, [2021-03-16T11:27:26.065328 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1167
|
+
D, [2021-03-16T11:27:26.065946 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1168
|
+
D, [2021-03-16T11:27:26.066005 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1169
|
+
I, [2021-03-16T11:27:26.168033 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 102.0ms | Allocations: 200174)
|
1170
|
+
I, [2021-03-16T11:27:26.169242 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 103.2ms | Allocations: 200496)
|
1171
|
+
I, [2021-03-16T11:27:26.169394 #19867] INFO -- : Completed 200 OK in 104ms (Views: 103.5ms | Allocations: 200907)
|
1172
|
+
I, [2021-03-16T11:27:26.321768 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1173
|
+
I, [2021-03-16T11:27:26.322235 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1174
|
+
D, [2021-03-16T11:27:26.322523 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1175
|
+
D, [2021-03-16T11:27:26.322580 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1176
|
+
I, [2021-03-16T11:27:26.322652 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1177
|
+
I, [2021-03-16T11:27:26.323111 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 330)
|
1178
|
+
I, [2021-03-16T11:27:26.323238 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 551)
|
1179
|
+
I, [2021-03-16T11:27:26.324084 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1180
|
+
I, [2021-03-16T11:27:26.324453 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1181
|
+
D, [2021-03-16T11:27:26.324775 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1182
|
+
D, [2021-03-16T11:27:26.324843 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1183
|
+
I, [2021-03-16T11:27:26.324912 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1184
|
+
I, [2021-03-16T11:27:26.325310 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1185
|
+
I, [2021-03-16T11:27:26.325424 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
|
1186
|
+
I, [2021-03-16T11:27:26.326236 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1187
|
+
I, [2021-03-16T11:27:26.326578 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1188
|
+
D, [2021-03-16T11:27:26.326819 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1189
|
+
D, [2021-03-16T11:27:26.326878 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1190
|
+
I, [2021-03-16T11:27:26.326943 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1191
|
+
I, [2021-03-16T11:27:26.327334 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1192
|
+
I, [2021-03-16T11:27:26.327445 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1193
|
+
I, [2021-03-16T11:27:26.328209 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1194
|
+
I, [2021-03-16T11:27:26.328537 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1195
|
+
D, [2021-03-16T11:27:26.328784 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1196
|
+
D, [2021-03-16T11:27:26.328841 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1197
|
+
I, [2021-03-16T11:27:26.328906 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1198
|
+
I, [2021-03-16T11:27:26.329327 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1199
|
+
I, [2021-03-16T11:27:26.329443 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1200
|
+
I, [2021-03-16T11:27:26.330300 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1201
|
+
I, [2021-03-16T11:27:26.330652 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1202
|
+
D, [2021-03-16T11:27:26.330901 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1203
|
+
D, [2021-03-16T11:27:26.330958 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1204
|
+
I, [2021-03-16T11:27:26.331025 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1205
|
+
I, [2021-03-16T11:27:26.331412 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1206
|
+
I, [2021-03-16T11:27:26.331525 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1207
|
+
I, [2021-03-16T11:27:26.377644 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1208
|
+
I, [2021-03-16T11:27:26.378122 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1209
|
+
I, [2021-03-16T11:27:26.378166 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1210
|
+
D, [2021-03-16T11:27:26.378792 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1211
|
+
D, [2021-03-16T11:27:26.378855 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1212
|
+
I, [2021-03-16T11:27:26.478085 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 99.1ms | Allocations: 200179)
|
1213
|
+
I, [2021-03-16T11:27:26.478954 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 100.1ms | Allocations: 200501)
|
1214
|
+
I, [2021-03-16T11:27:26.479118 #19867] INFO -- : Completed 200 OK in 101ms (Views: 100.4ms | Allocations: 200913)
|
1215
|
+
I, [2021-03-16T11:27:26.484472 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1216
|
+
I, [2021-03-16T11:27:26.484944 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1217
|
+
I, [2021-03-16T11:27:26.484984 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1218
|
+
D, [2021-03-16T11:27:26.485618 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1219
|
+
D, [2021-03-16T11:27:26.485677 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1220
|
+
I, [2021-03-16T11:27:26.593464 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 107.7ms | Allocations: 200169)
|
1221
|
+
I, [2021-03-16T11:27:26.594401 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 108.7ms | Allocations: 200491)
|
1222
|
+
I, [2021-03-16T11:27:26.594556 #19867] INFO -- : Completed 200 OK in 110ms (Views: 109.1ms | Allocations: 200902)
|
1223
|
+
I, [2021-03-16T11:27:26.600367 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1224
|
+
I, [2021-03-16T11:27:26.600820 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1225
|
+
I, [2021-03-16T11:27:26.600875 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1226
|
+
D, [2021-03-16T11:27:26.601474 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1227
|
+
D, [2021-03-16T11:27:26.601532 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1228
|
+
I, [2021-03-16T11:27:26.701637 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 100.0ms | Allocations: 200177)
|
1229
|
+
I, [2021-03-16T11:27:26.702371 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 100.8ms | Allocations: 200499)
|
1230
|
+
I, [2021-03-16T11:27:26.702516 #19867] INFO -- : Completed 200 OK in 102ms (Views: 101.1ms | Allocations: 200910)
|
1231
|
+
I, [2021-03-16T11:27:26.707341 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1232
|
+
I, [2021-03-16T11:27:26.707745 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1233
|
+
I, [2021-03-16T11:27:26.707784 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1234
|
+
D, [2021-03-16T11:27:26.708347 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1235
|
+
D, [2021-03-16T11:27:26.708401 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1236
|
+
I, [2021-03-16T11:27:26.807002 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 98.5ms | Allocations: 200174)
|
1237
|
+
I, [2021-03-16T11:27:26.807820 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 99.4ms | Allocations: 200496)
|
1238
|
+
I, [2021-03-16T11:27:26.807978 #19867] INFO -- : Completed 200 OK in 100ms (Views: 99.7ms | Allocations: 200907)
|
1239
|
+
I, [2021-03-16T11:27:26.812600 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1240
|
+
I, [2021-03-16T11:27:26.812994 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1241
|
+
I, [2021-03-16T11:27:26.813029 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1242
|
+
D, [2021-03-16T11:27:26.813582 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1243
|
+
D, [2021-03-16T11:27:26.813639 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1244
|
+
I, [2021-03-16T11:27:26.908645 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 94.9ms | Allocations: 200171)
|
1245
|
+
I, [2021-03-16T11:27:26.909463 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.8ms | Allocations: 200493)
|
1246
|
+
I, [2021-03-16T11:27:26.909607 #19867] INFO -- : Completed 200 OK in 97ms (Views: 96.1ms | Allocations: 200904)
|
1247
|
+
I, [2021-03-16T11:27:26.969658 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:26 -0700
|
1248
|
+
I, [2021-03-16T11:27:26.970148 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1249
|
+
I, [2021-03-16T11:27:26.970193 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1250
|
+
D, [2021-03-16T11:27:26.970861 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1251
|
+
D, [2021-03-16T11:27:26.970926 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1252
|
+
I, [2021-03-16T11:27:27.072298 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 101.3ms | Allocations: 200173)
|
1253
|
+
I, [2021-03-16T11:27:27.073189 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 102.3ms | Allocations: 200495)
|
1254
|
+
I, [2021-03-16T11:27:27.073342 #19867] INFO -- : Completed 200 OK in 103ms (Views: 102.6ms | Allocations: 200907)
|
1255
|
+
I, [2021-03-16T11:27:27.078469 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1256
|
+
I, [2021-03-16T11:27:27.078896 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1257
|
+
I, [2021-03-16T11:27:27.078935 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1258
|
+
D, [2021-03-16T11:27:27.079555 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1259
|
+
D, [2021-03-16T11:27:27.079614 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1260
|
+
I, [2021-03-16T11:27:27.183521 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 103.8ms | Allocations: 200169)
|
1261
|
+
I, [2021-03-16T11:27:27.184232 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 104.6ms | Allocations: 200491)
|
1262
|
+
I, [2021-03-16T11:27:27.184352 #19867] INFO -- : Completed 200 OK in 105ms (Views: 104.9ms | Allocations: 200902)
|
1263
|
+
I, [2021-03-16T11:27:27.188841 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1264
|
+
I, [2021-03-16T11:27:27.189232 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1265
|
+
I, [2021-03-16T11:27:27.189260 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1266
|
+
D, [2021-03-16T11:27:27.189714 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1267
|
+
D, [2021-03-16T11:27:27.189756 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1268
|
+
I, [2021-03-16T11:27:27.287937 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 98.1ms | Allocations: 200177)
|
1269
|
+
I, [2021-03-16T11:27:27.288762 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 99.0ms | Allocations: 200499)
|
1270
|
+
I, [2021-03-16T11:27:27.288920 #19867] INFO -- : Completed 200 OK in 100ms (Views: 99.3ms | Allocations: 200910)
|
1271
|
+
I, [2021-03-16T11:27:27.293660 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1272
|
+
I, [2021-03-16T11:27:27.293990 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1273
|
+
I, [2021-03-16T11:27:27.294017 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1274
|
+
D, [2021-03-16T11:27:27.294470 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1275
|
+
D, [2021-03-16T11:27:27.294512 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1276
|
+
I, [2021-03-16T11:27:27.394387 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 99.8ms | Allocations: 200174)
|
1277
|
+
I, [2021-03-16T11:27:27.395229 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 100.7ms | Allocations: 200496)
|
1278
|
+
I, [2021-03-16T11:27:27.395380 #19867] INFO -- : Completed 200 OK in 101ms (Views: 101.0ms | Allocations: 200907)
|
1279
|
+
I, [2021-03-16T11:27:27.400496 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1280
|
+
I, [2021-03-16T11:27:27.400906 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1281
|
+
I, [2021-03-16T11:27:27.400945 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1282
|
+
D, [2021-03-16T11:27:27.401532 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1283
|
+
D, [2021-03-16T11:27:27.401591 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1284
|
+
I, [2021-03-16T11:27:27.500595 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 98.9ms | Allocations: 200171)
|
1285
|
+
I, [2021-03-16T11:27:27.501433 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 99.8ms | Allocations: 200493)
|
1286
|
+
I, [2021-03-16T11:27:27.501578 #19867] INFO -- : Completed 200 OK in 101ms (Views: 100.1ms | Allocations: 200904)
|
1287
|
+
I, [2021-03-16T11:27:27.506715 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1288
|
+
I, [2021-03-16T11:27:27.507120 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1289
|
+
D, [2021-03-16T11:27:27.507397 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1290
|
+
D, [2021-03-16T11:27:27.507452 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1291
|
+
I, [2021-03-16T11:27:27.507517 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1292
|
+
I, [2021-03-16T11:27:27.507889 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 330)
|
1293
|
+
I, [2021-03-16T11:27:27.507998 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 550)
|
1294
|
+
I, [2021-03-16T11:27:27.508737 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1295
|
+
I, [2021-03-16T11:27:27.509053 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1296
|
+
D, [2021-03-16T11:27:27.509275 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1297
|
+
D, [2021-03-16T11:27:27.509327 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1298
|
+
I, [2021-03-16T11:27:27.509391 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1299
|
+
I, [2021-03-16T11:27:27.509751 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
|
1300
|
+
I, [2021-03-16T11:27:27.509861 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1301
|
+
I, [2021-03-16T11:27:27.510586 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1302
|
+
I, [2021-03-16T11:27:27.510900 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1303
|
+
D, [2021-03-16T11:27:27.511121 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1304
|
+
D, [2021-03-16T11:27:27.511172 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1305
|
+
I, [2021-03-16T11:27:27.511231 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1306
|
+
I, [2021-03-16T11:27:27.511580 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
|
1307
|
+
I, [2021-03-16T11:27:27.511681 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 546)
|
1308
|
+
I, [2021-03-16T11:27:27.512385 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1309
|
+
I, [2021-03-16T11:27:27.512749 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1310
|
+
D, [2021-03-16T11:27:27.513009 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1311
|
+
D, [2021-03-16T11:27:27.513061 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1312
|
+
I, [2021-03-16T11:27:27.513123 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1313
|
+
I, [2021-03-16T11:27:27.513487 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
|
1314
|
+
I, [2021-03-16T11:27:27.513585 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1315
|
+
I, [2021-03-16T11:27:27.514268 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1316
|
+
I, [2021-03-16T11:27:27.514486 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1317
|
+
D, [2021-03-16T11:27:27.514647 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1318
|
+
D, [2021-03-16T11:27:27.514684 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1319
|
+
I, [2021-03-16T11:27:27.514727 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1320
|
+
I, [2021-03-16T11:27:27.514996 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 328)
|
1321
|
+
I, [2021-03-16T11:27:27.515095 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 546)
|
1322
|
+
I, [2021-03-16T11:27:27.515834 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1323
|
+
I, [2021-03-16T11:27:27.516139 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1324
|
+
I, [2021-03-16T11:27:27.516175 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1325
|
+
D, [2021-03-16T11:27:27.516687 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1326
|
+
D, [2021-03-16T11:27:27.516740 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1327
|
+
I, [2021-03-16T11:27:27.618994 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 102.2ms | Allocations: 200177)
|
1328
|
+
I, [2021-03-16T11:27:27.619719 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 103.0ms | Allocations: 200499)
|
1329
|
+
I, [2021-03-16T11:27:27.619872 #19867] INFO -- : Completed 200 OK in 104ms (Views: 103.2ms | Allocations: 200909)
|
1330
|
+
I, [2021-03-16T11:27:27.624609 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:27 -0700
|
1331
|
+
I, [2021-03-16T11:27:27.938470 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1332
|
+
I, [2021-03-16T11:27:27.938534 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1333
|
+
D, [2021-03-16T11:27:27.939227 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1334
|
+
D, [2021-03-16T11:27:27.939269 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1335
|
+
I, [2021-03-16T11:27:29.039547 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1100.2ms | Allocations: 690147)
|
1336
|
+
I, [2021-03-16T11:27:29.041114 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1101.8ms | Allocations: 690470)
|
1337
|
+
I, [2021-03-16T11:27:29.041247 #19867] INFO -- : Completed 200 OK in 1103ms (Views: 1102.1ms | Allocations: 690976)
|
1338
|
+
I, [2021-03-16T11:27:29.044985 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:29 -0700
|
1339
|
+
I, [2021-03-16T11:27:29.361275 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1340
|
+
I, [2021-03-16T11:27:29.361349 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1341
|
+
D, [2021-03-16T11:27:29.362823 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1342
|
+
D, [2021-03-16T11:27:29.362893 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1343
|
+
I, [2021-03-16T11:27:30.464521 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1101.6ms | Allocations: 690150)
|
1344
|
+
I, [2021-03-16T11:27:30.465591 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1102.7ms | Allocations: 690473)
|
1345
|
+
I, [2021-03-16T11:27:30.465730 #19867] INFO -- : Completed 200 OK in 1104ms (Views: 1103.0ms | Allocations: 690979)
|
1346
|
+
I, [2021-03-16T11:27:30.469507 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:30 -0700
|
1347
|
+
I, [2021-03-16T11:27:30.821228 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1348
|
+
I, [2021-03-16T11:27:30.821298 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1349
|
+
D, [2021-03-16T11:27:30.822263 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1350
|
+
D, [2021-03-16T11:27:30.822325 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1351
|
+
I, [2021-03-16T11:27:31.904286 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1081.9ms | Allocations: 690144)
|
1352
|
+
I, [2021-03-16T11:27:31.905038 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1082.7ms | Allocations: 690467)
|
1353
|
+
I, [2021-03-16T11:27:31.905164 #19867] INFO -- : Completed 200 OK in 1084ms (Views: 1083.0ms | Allocations: 690973)
|
1354
|
+
I, [2021-03-16T11:27:31.909093 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:31 -0700
|
1355
|
+
I, [2021-03-16T11:27:32.231008 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1356
|
+
I, [2021-03-16T11:27:32.231078 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1357
|
+
D, [2021-03-16T11:27:32.231972 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1358
|
+
D, [2021-03-16T11:27:32.232038 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1359
|
+
I, [2021-03-16T11:27:33.358608 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1126.5ms | Allocations: 690147)
|
1360
|
+
I, [2021-03-16T11:27:33.359709 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1127.7ms | Allocations: 690470)
|
1361
|
+
I, [2021-03-16T11:27:33.359907 #19867] INFO -- : Completed 200 OK in 1129ms (Views: 1128.0ms | Allocations: 690976)
|
1362
|
+
I, [2021-03-16T11:27:33.369383 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:33 -0700
|
1363
|
+
I, [2021-03-16T11:27:33.672909 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1364
|
+
I, [2021-03-16T11:27:33.672983 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1365
|
+
D, [2021-03-16T11:27:33.673945 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1366
|
+
D, [2021-03-16T11:27:33.674015 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1367
|
+
I, [2021-03-16T11:27:34.876251 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1202.2ms | Allocations: 690139)
|
1368
|
+
I, [2021-03-16T11:27:34.877454 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1203.4ms | Allocations: 690462)
|
1369
|
+
I, [2021-03-16T11:27:34.877582 #19867] INFO -- : Completed 200 OK in 1205ms (Views: 1203.8ms | Allocations: 690968)
|
1370
|
+
I, [2021-03-16T11:27:34.881902 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:34 -0700
|
1371
|
+
I, [2021-03-16T11:27:35.206136 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1372
|
+
I, [2021-03-16T11:27:35.206208 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1373
|
+
D, [2021-03-16T11:27:35.207413 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1374
|
+
D, [2021-03-16T11:27:35.207481 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1375
|
+
I, [2021-03-16T11:27:36.305343 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1097.8ms | Allocations: 690148)
|
1376
|
+
I, [2021-03-16T11:27:36.306535 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1099.1ms | Allocations: 690471)
|
1377
|
+
I, [2021-03-16T11:27:36.306679 #19867] INFO -- : Completed 200 OK in 1100ms (Views: 1099.4ms | Allocations: 690976)
|
1378
|
+
I, [2021-03-16T11:27:36.310812 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:36 -0700
|
1379
|
+
I, [2021-03-16T11:27:36.655509 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1380
|
+
I, [2021-03-16T11:27:36.655579 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1381
|
+
D, [2021-03-16T11:27:36.656497 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1382
|
+
D, [2021-03-16T11:27:36.656560 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1383
|
+
I, [2021-03-16T11:27:37.804944 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1148.3ms | Allocations: 690144)
|
1384
|
+
I, [2021-03-16T11:27:37.806577 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1150.0ms | Allocations: 690467)
|
1385
|
+
I, [2021-03-16T11:27:37.806730 #19867] INFO -- : Completed 200 OK in 1151ms (Views: 1150.3ms | Allocations: 690973)
|
1386
|
+
I, [2021-03-16T11:27:37.810970 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:37 -0700
|
1387
|
+
I, [2021-03-16T11:27:38.148811 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1388
|
+
I, [2021-03-16T11:27:38.148878 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1389
|
+
D, [2021-03-16T11:27:38.149686 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1390
|
+
D, [2021-03-16T11:27:38.149731 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1391
|
+
I, [2021-03-16T11:27:39.256739 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1107.0ms | Allocations: 690147)
|
1392
|
+
I, [2021-03-16T11:27:39.257888 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1108.1ms | Allocations: 690470)
|
1393
|
+
I, [2021-03-16T11:27:39.258030 #19867] INFO -- : Completed 200 OK in 1109ms (Views: 1108.4ms | Allocations: 690976)
|
1394
|
+
I, [2021-03-16T11:27:39.261812 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:39 -0700
|
1395
|
+
I, [2021-03-16T11:27:39.552873 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1396
|
+
I, [2021-03-16T11:27:39.552949 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1397
|
+
D, [2021-03-16T11:27:39.554741 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1398
|
+
D, [2021-03-16T11:27:39.554867 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1399
|
+
I, [2021-03-16T11:27:40.772195 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1217.3ms | Allocations: 690139)
|
1400
|
+
I, [2021-03-16T11:27:40.773223 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1218.4ms | Allocations: 690462)
|
1401
|
+
I, [2021-03-16T11:27:40.773374 #19867] INFO -- : Completed 200 OK in 1220ms (Views: 1218.8ms | Allocations: 690968)
|
1402
|
+
I, [2021-03-16T11:27:41.285020 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:41 -0700
|
1403
|
+
I, [2021-03-16T11:27:41.285702 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1404
|
+
D, [2021-03-16T11:27:41.286165 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1405
|
+
D, [2021-03-16T11:27:41.286254 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1406
|
+
I, [2021-03-16T11:27:41.286353 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1407
|
+
I, [2021-03-16T11:27:41.286901 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.7ms | Allocations: 330)
|
1408
|
+
I, [2021-03-16T11:27:41.287051 #19867] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 551)
|
1409
|
+
I, [2021-03-16T11:27:41.288160 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:41 -0700
|
1410
|
+
I, [2021-03-16T11:27:41.288607 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1411
|
+
D, [2021-03-16T11:27:41.288887 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1412
|
+
D, [2021-03-16T11:27:41.288951 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1413
|
+
I, [2021-03-16T11:27:41.289023 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1414
|
+
I, [2021-03-16T11:27:41.289596 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 328)
|
1415
|
+
I, [2021-03-16T11:27:41.289737 #19867] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 546)
|
1416
|
+
I, [2021-03-16T11:27:41.290640 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:41 -0700
|
1417
|
+
I, [2021-03-16T11:27:41.291006 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1418
|
+
D, [2021-03-16T11:27:41.291264 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1419
|
+
D, [2021-03-16T11:27:41.291326 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1420
|
+
I, [2021-03-16T11:27:41.291400 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1421
|
+
I, [2021-03-16T11:27:41.291799 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1422
|
+
I, [2021-03-16T11:27:41.291916 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
|
1423
|
+
I, [2021-03-16T11:27:41.292704 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:41 -0700
|
1424
|
+
I, [2021-03-16T11:27:41.293046 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1425
|
+
D, [2021-03-16T11:27:41.293294 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1426
|
+
D, [2021-03-16T11:27:41.293356 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1427
|
+
I, [2021-03-16T11:27:41.293424 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1428
|
+
I, [2021-03-16T11:27:41.293822 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1429
|
+
I, [2021-03-16T11:27:41.293942 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1430
|
+
I, [2021-03-16T11:27:41.294820 #19867] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:27:41 -0700
|
1431
|
+
I, [2021-03-16T11:27:41.295327 #19867] INFO -- : Processing by BaselineController#show as HTML
|
1432
|
+
D, [2021-03-16T11:27:41.295629 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1433
|
+
D, [2021-03-16T11:27:41.295700 #19867] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1434
|
+
I, [2021-03-16T11:27:41.295777 #19867] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1435
|
+
I, [2021-03-16T11:27:41.296184 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1436
|
+
I, [2021-03-16T11:27:41.296304 #19867] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
|
1437
|
+
I, [2021-03-16T11:27:41.379794 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:41 -0700
|
1438
|
+
I, [2021-03-16T11:27:41.380270 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1439
|
+
I, [2021-03-16T11:27:41.380319 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1440
|
+
D, [2021-03-16T11:27:41.381192 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1441
|
+
D, [2021-03-16T11:27:41.381257 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1442
|
+
I, [2021-03-16T11:27:42.447893 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1066.6ms | Allocations: 690147)
|
1443
|
+
I, [2021-03-16T11:27:42.449072 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1067.8ms | Allocations: 690469)
|
1444
|
+
I, [2021-03-16T11:27:42.449204 #19867] INFO -- : Completed 200 OK in 1069ms (Views: 1068.1ms | Allocations: 690975)
|
1445
|
+
I, [2021-03-16T11:27:42.453695 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:42 -0700
|
1446
|
+
I, [2021-03-16T11:27:42.746105 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1447
|
+
I, [2021-03-16T11:27:42.746173 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1448
|
+
D, [2021-03-16T11:27:42.747046 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1449
|
+
D, [2021-03-16T11:27:42.747092 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1450
|
+
I, [2021-03-16T11:27:43.938158 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1191.0ms | Allocations: 690142)
|
1451
|
+
I, [2021-03-16T11:27:43.939268 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1192.2ms | Allocations: 690464)
|
1452
|
+
I, [2021-03-16T11:27:43.939478 #19867] INFO -- : Completed 200 OK in 1193ms (Views: 1192.5ms | Allocations: 690970)
|
1453
|
+
I, [2021-03-16T11:27:43.944148 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:43 -0700
|
1454
|
+
I, [2021-03-16T11:27:44.299775 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1455
|
+
I, [2021-03-16T11:27:44.299861 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1456
|
+
D, [2021-03-16T11:27:44.300768 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1457
|
+
D, [2021-03-16T11:27:44.300830 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1458
|
+
I, [2021-03-16T11:27:45.436774 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1135.8ms | Allocations: 690144)
|
1459
|
+
I, [2021-03-16T11:27:45.437722 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1136.9ms | Allocations: 690467)
|
1460
|
+
I, [2021-03-16T11:27:45.437860 #19867] INFO -- : Completed 200 OK in 1138ms (Views: 1137.2ms | Allocations: 690973)
|
1461
|
+
I, [2021-03-16T11:27:45.441938 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:45 -0700
|
1462
|
+
I, [2021-03-16T11:27:45.772415 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1463
|
+
I, [2021-03-16T11:27:45.772488 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1464
|
+
D, [2021-03-16T11:27:45.773475 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1465
|
+
D, [2021-03-16T11:27:45.773543 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1466
|
+
I, [2021-03-16T11:27:46.894059 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1120.5ms | Allocations: 690144)
|
1467
|
+
I, [2021-03-16T11:27:46.895589 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1122.0ms | Allocations: 690466)
|
1468
|
+
I, [2021-03-16T11:27:46.895754 #19867] INFO -- : Completed 200 OK in 1123ms (Views: 1122.4ms | Allocations: 690972)
|
1469
|
+
I, [2021-03-16T11:27:46.899984 #19867] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:27:46 -0700
|
1470
|
+
I, [2021-03-16T11:27:47.302512 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1471
|
+
I, [2021-03-16T11:27:47.302582 #19867] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1472
|
+
D, [2021-03-16T11:27:47.305193 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1473
|
+
D, [2021-03-16T11:27:47.305274 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1474
|
+
I, [2021-03-16T11:27:48.468498 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1163.2ms | Allocations: 690139)
|
1475
|
+
I, [2021-03-16T11:27:48.469553 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1164.3ms | Allocations: 690462)
|
1476
|
+
I, [2021-03-16T11:27:48.469725 #19867] INFO -- : Completed 200 OK in 1167ms (Views: 1164.6ms | Allocations: 690968)
|
1477
|
+
I, [2021-03-16T11:27:48.633795 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:48 -0700
|
1478
|
+
I, [2021-03-16T11:27:48.866167 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1479
|
+
I, [2021-03-16T11:27:48.866265 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1480
|
+
D, [2021-03-16T11:27:48.868322 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1481
|
+
D, [2021-03-16T11:27:48.868401 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1482
|
+
I, [2021-03-16T11:27:50.030953 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1162.5ms | Allocations: 690141)
|
1483
|
+
I, [2021-03-16T11:27:50.031874 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1163.5ms | Allocations: 690463)
|
1484
|
+
I, [2021-03-16T11:27:50.032013 #19867] INFO -- : Completed 200 OK in 1166ms (Views: 1163.8ms | Allocations: 690969)
|
1485
|
+
I, [2021-03-16T11:27:50.036810 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:50 -0700
|
1486
|
+
I, [2021-03-16T11:27:50.355395 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1487
|
+
I, [2021-03-16T11:27:50.355474 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1488
|
+
D, [2021-03-16T11:27:50.356362 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1489
|
+
D, [2021-03-16T11:27:50.360011 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1490
|
+
I, [2021-03-16T11:27:51.485719 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1125.6ms | Allocations: 690139)
|
1491
|
+
I, [2021-03-16T11:27:51.487312 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1127.3ms | Allocations: 690461)
|
1492
|
+
I, [2021-03-16T11:27:51.487458 #19867] INFO -- : Completed 200 OK in 1132ms (Views: 1131.2ms | Allocations: 690967)
|
1493
|
+
I, [2021-03-16T11:27:51.491672 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:51 -0700
|
1494
|
+
I, [2021-03-16T11:27:51.844986 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1495
|
+
I, [2021-03-16T11:27:51.845043 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1496
|
+
D, [2021-03-16T11:27:51.846117 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1497
|
+
D, [2021-03-16T11:27:51.846199 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1498
|
+
I, [2021-03-16T11:27:53.107663 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1261.4ms | Allocations: 690144)
|
1499
|
+
I, [2021-03-16T11:27:53.108992 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1262.8ms | Allocations: 690467)
|
1500
|
+
I, [2021-03-16T11:27:53.109120 #19867] INFO -- : Completed 200 OK in 1264ms (Views: 1263.1ms | Allocations: 690973)
|
1501
|
+
I, [2021-03-16T11:27:53.113129 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:53 -0700
|
1502
|
+
I, [2021-03-16T11:27:53.436949 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1503
|
+
I, [2021-03-16T11:27:53.437017 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1504
|
+
D, [2021-03-16T11:27:53.437971 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1505
|
+
D, [2021-03-16T11:27:53.438036 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1506
|
+
I, [2021-03-16T11:27:54.563153 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1125.1ms | Allocations: 690144)
|
1507
|
+
I, [2021-03-16T11:27:54.564716 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1126.7ms | Allocations: 690466)
|
1508
|
+
I, [2021-03-16T11:27:54.564905 #19867] INFO -- : Completed 200 OK in 1128ms (Views: 1127.1ms | Allocations: 690972)
|
1509
|
+
I, [2021-03-16T11:27:54.570129 #19867] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:27:54 -0700
|
1510
|
+
I, [2021-03-16T11:27:54.967622 #19867] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1511
|
+
I, [2021-03-16T11:27:54.967688 #19867] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1512
|
+
D, [2021-03-16T11:27:54.968623 #19867] DEBUG -- : Rendering layout layouts/application.html.erb
|
1513
|
+
D, [2021-03-16T11:27:54.968692 #19867] DEBUG -- : Rendering inline template within layouts/application
|
1514
|
+
I, [2021-03-16T11:27:56.099420 #19867] INFO -- : Rendered inline template within layouts/application (Duration: 1130.6ms | Allocations: 690147)
|
1515
|
+
I, [2021-03-16T11:27:56.100600 #19867] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1131.9ms | Allocations: 690470)
|
1516
|
+
I, [2021-03-16T11:27:56.100735 #19867] INFO -- : Completed 200 OK in 1133ms (Views: 1132.2ms | Allocations: 690976)
|
1517
|
+
I, [2021-03-16T11:29:20.991401 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:20 -0700
|
1518
|
+
I, [2021-03-16T11:29:20.993400 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1519
|
+
D, [2021-03-16T11:29:20.995291 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1520
|
+
D, [2021-03-16T11:29:20.995383 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1521
|
+
I, [2021-03-16T11:29:20.995738 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.3ms | Allocations: 93)
|
1522
|
+
I, [2021-03-16T11:29:20.999359 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 4.0ms | Allocations: 431)
|
1523
|
+
I, [2021-03-16T11:29:20.999595 #20253] INFO -- : Completed 200 OK in 6ms (Views: 5.6ms | Allocations: 1376)
|
1524
|
+
I, [2021-03-16T11:29:21.000807 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:21 -0700
|
1525
|
+
I, [2021-03-16T11:29:21.001204 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1526
|
+
D, [2021-03-16T11:29:21.001491 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1527
|
+
D, [2021-03-16T11:29:21.001552 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1528
|
+
I, [2021-03-16T11:29:21.001644 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1529
|
+
I, [2021-03-16T11:29:21.002170 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 333)
|
1530
|
+
I, [2021-03-16T11:29:21.002263 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 552)
|
1531
|
+
I, [2021-03-16T11:29:21.002942 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:21 -0700
|
1532
|
+
I, [2021-03-16T11:29:21.003281 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1533
|
+
D, [2021-03-16T11:29:21.003532 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1534
|
+
D, [2021-03-16T11:29:21.003593 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1535
|
+
I, [2021-03-16T11:29:21.003663 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1536
|
+
I, [2021-03-16T11:29:21.004047 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1537
|
+
I, [2021-03-16T11:29:21.004162 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1538
|
+
I, [2021-03-16T11:29:21.004933 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:21 -0700
|
1539
|
+
I, [2021-03-16T11:29:21.005276 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1540
|
+
D, [2021-03-16T11:29:21.005515 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1541
|
+
D, [2021-03-16T11:29:21.005574 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1542
|
+
I, [2021-03-16T11:29:21.005644 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1543
|
+
I, [2021-03-16T11:29:21.006035 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1544
|
+
I, [2021-03-16T11:29:21.006151 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1545
|
+
I, [2021-03-16T11:29:21.006928 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:21 -0700
|
1546
|
+
I, [2021-03-16T11:29:21.007247 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1547
|
+
D, [2021-03-16T11:29:21.007502 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1548
|
+
D, [2021-03-16T11:29:21.007561 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1549
|
+
I, [2021-03-16T11:29:21.007632 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1550
|
+
I, [2021-03-16T11:29:21.008043 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1551
|
+
I, [2021-03-16T11:29:21.008176 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
|
1552
|
+
I, [2021-03-16T11:29:21.009019 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:21 -0700
|
1553
|
+
I, [2021-03-16T11:29:21.009397 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1554
|
+
I, [2021-03-16T11:29:21.009442 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1555
|
+
D, [2021-03-16T11:29:21.011681 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1556
|
+
D, [2021-03-16T11:29:21.011752 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1557
|
+
I, [2021-03-16T11:29:22.060627 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1048.8ms | Allocations: 660131)
|
1558
|
+
I, [2021-03-16T11:29:22.061344 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1049.6ms | Allocations: 660454)
|
1559
|
+
I, [2021-03-16T11:29:22.061503 #20253] INFO -- : Completed 200 OK in 1052ms (Views: 1050.1ms | Allocations: 661492)
|
1560
|
+
I, [2021-03-16T11:29:22.065340 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:22 -0700
|
1561
|
+
I, [2021-03-16T11:29:22.065716 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1562
|
+
I, [2021-03-16T11:29:22.065749 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1563
|
+
D, [2021-03-16T11:29:22.066223 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1564
|
+
D, [2021-03-16T11:29:22.066279 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1565
|
+
I, [2021-03-16T11:29:22.178715 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 112.4ms | Allocations: 200171)
|
1566
|
+
I, [2021-03-16T11:29:22.180016 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 113.7ms | Allocations: 200493)
|
1567
|
+
I, [2021-03-16T11:29:22.180181 #20253] INFO -- : Completed 200 OK in 114ms (Views: 114.0ms | Allocations: 200904)
|
1568
|
+
I, [2021-03-16T11:29:22.185159 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:22 -0700
|
1569
|
+
I, [2021-03-16T11:29:22.185583 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1570
|
+
I, [2021-03-16T11:29:22.185626 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1571
|
+
D, [2021-03-16T11:29:22.186243 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1572
|
+
D, [2021-03-16T11:29:22.186303 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1573
|
+
I, [2021-03-16T11:29:22.286565 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 100.2ms | Allocations: 200174)
|
1574
|
+
I, [2021-03-16T11:29:22.287824 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 101.5ms | Allocations: 200496)
|
1575
|
+
I, [2021-03-16T11:29:22.287975 #20253] INFO -- : Completed 200 OK in 102ms (Views: 101.8ms | Allocations: 200907)
|
1576
|
+
I, [2021-03-16T11:29:22.292405 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:22 -0700
|
1577
|
+
I, [2021-03-16T11:29:22.292773 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1578
|
+
I, [2021-03-16T11:29:22.292810 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1579
|
+
D, [2021-03-16T11:29:22.293351 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1580
|
+
D, [2021-03-16T11:29:22.293406 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1581
|
+
I, [2021-03-16T11:29:22.390228 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 96.8ms | Allocations: 200171)
|
1582
|
+
I, [2021-03-16T11:29:22.391018 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 97.6ms | Allocations: 200493)
|
1583
|
+
I, [2021-03-16T11:29:22.391167 #20253] INFO -- : Completed 200 OK in 98ms (Views: 97.9ms | Allocations: 200904)
|
1584
|
+
I, [2021-03-16T11:29:22.395864 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:22 -0700
|
1585
|
+
I, [2021-03-16T11:29:22.396257 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1586
|
+
I, [2021-03-16T11:29:22.396296 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1587
|
+
D, [2021-03-16T11:29:22.396836 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1588
|
+
D, [2021-03-16T11:29:22.396892 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1589
|
+
I, [2021-03-16T11:29:22.493536 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 96.6ms | Allocations: 200177)
|
1590
|
+
I, [2021-03-16T11:29:22.494813 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 97.9ms | Allocations: 200499)
|
1591
|
+
I, [2021-03-16T11:29:22.494990 #20253] INFO -- : Completed 200 OK in 99ms (Views: 98.2ms | Allocations: 200910)
|
1592
|
+
I, [2021-03-16T11:29:22.500237 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:22 -0700
|
1593
|
+
I, [2021-03-16T11:29:22.500669 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1594
|
+
I, [2021-03-16T11:29:22.500716 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1595
|
+
D, [2021-03-16T11:29:22.501487 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1596
|
+
D, [2021-03-16T11:29:22.501551 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1597
|
+
I, [2021-03-16T11:29:22.600617 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 99.0ms | Allocations: 200174)
|
1598
|
+
I, [2021-03-16T11:29:22.601304 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 99.8ms | Allocations: 200496)
|
1599
|
+
I, [2021-03-16T11:29:22.601452 #20253] INFO -- : Completed 200 OK in 101ms (Views: 100.1ms | Allocations: 200960)
|
1600
|
+
I, [2021-03-16T11:29:22.605927 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:22 -0700
|
1601
|
+
I, [2021-03-16T11:29:22.606235 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1602
|
+
I, [2021-03-16T11:29:22.606264 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1603
|
+
D, [2021-03-16T11:29:22.606688 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1604
|
+
D, [2021-03-16T11:29:22.606734 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1605
|
+
I, [2021-03-16T11:29:22.699735 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 92.9ms | Allocations: 200171)
|
1606
|
+
I, [2021-03-16T11:29:22.700917 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 94.2ms | Allocations: 200493)
|
1607
|
+
I, [2021-03-16T11:29:22.701070 #20253] INFO -- : Completed 200 OK in 95ms (Views: 94.4ms | Allocations: 200904)
|
1608
|
+
I, [2021-03-16T11:29:22.705923 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:22 -0700
|
1609
|
+
I, [2021-03-16T11:29:22.706341 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1610
|
+
I, [2021-03-16T11:29:22.706383 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1611
|
+
D, [2021-03-16T11:29:22.706949 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1612
|
+
D, [2021-03-16T11:29:22.707012 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1613
|
+
I, [2021-03-16T11:29:22.799986 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 92.9ms | Allocations: 200177)
|
1614
|
+
I, [2021-03-16T11:29:22.800774 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 93.8ms | Allocations: 200499)
|
1615
|
+
I, [2021-03-16T11:29:22.800927 #20253] INFO -- : Completed 200 OK in 94ms (Views: 94.1ms | Allocations: 200910)
|
1616
|
+
I, [2021-03-16T11:29:22.805659 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:22 -0700
|
1617
|
+
I, [2021-03-16T11:29:22.806037 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1618
|
+
I, [2021-03-16T11:29:22.806076 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1619
|
+
D, [2021-03-16T11:29:22.806610 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1620
|
+
D, [2021-03-16T11:29:22.806667 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1621
|
+
I, [2021-03-16T11:29:22.901189 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 94.5ms | Allocations: 200174)
|
1622
|
+
I, [2021-03-16T11:29:22.901854 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.2ms | Allocations: 200496)
|
1623
|
+
I, [2021-03-16T11:29:22.901975 #20253] INFO -- : Completed 200 OK in 96ms (Views: 95.5ms | Allocations: 200907)
|
1624
|
+
I, [2021-03-16T11:29:22.906477 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:22 -0700
|
1625
|
+
I, [2021-03-16T11:29:22.906808 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1626
|
+
I, [2021-03-16T11:29:22.906840 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1627
|
+
D, [2021-03-16T11:29:22.907289 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1628
|
+
D, [2021-03-16T11:29:22.907334 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1629
|
+
I, [2021-03-16T11:29:23.001751 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 94.4ms | Allocations: 200174)
|
1630
|
+
I, [2021-03-16T11:29:23.003014 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.7ms | Allocations: 200496)
|
1631
|
+
I, [2021-03-16T11:29:23.003158 #20253] INFO -- : Completed 200 OK in 96ms (Views: 95.9ms | Allocations: 200907)
|
1632
|
+
I, [2021-03-16T11:29:23.151893 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1633
|
+
I, [2021-03-16T11:29:23.152407 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1634
|
+
D, [2021-03-16T11:29:23.152719 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1635
|
+
D, [2021-03-16T11:29:23.152785 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1636
|
+
I, [2021-03-16T11:29:23.152867 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1637
|
+
I, [2021-03-16T11:29:23.153333 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 330)
|
1638
|
+
I, [2021-03-16T11:29:23.153471 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 551)
|
1639
|
+
I, [2021-03-16T11:29:23.154372 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1640
|
+
I, [2021-03-16T11:29:23.154744 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1641
|
+
D, [2021-03-16T11:29:23.155001 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1642
|
+
D, [2021-03-16T11:29:23.155064 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1643
|
+
I, [2021-03-16T11:29:23.155135 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1644
|
+
I, [2021-03-16T11:29:23.155529 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1645
|
+
I, [2021-03-16T11:29:23.155650 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1646
|
+
I, [2021-03-16T11:29:23.156736 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1647
|
+
I, [2021-03-16T11:29:23.157110 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1648
|
+
D, [2021-03-16T11:29:23.157370 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1649
|
+
D, [2021-03-16T11:29:23.157432 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1650
|
+
I, [2021-03-16T11:29:23.157503 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1651
|
+
I, [2021-03-16T11:29:23.157899 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1652
|
+
I, [2021-03-16T11:29:23.158018 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
|
1653
|
+
I, [2021-03-16T11:29:23.158801 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1654
|
+
I, [2021-03-16T11:29:23.159135 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1655
|
+
D, [2021-03-16T11:29:23.159377 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1656
|
+
D, [2021-03-16T11:29:23.159440 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1657
|
+
I, [2021-03-16T11:29:23.159509 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1658
|
+
I, [2021-03-16T11:29:23.159882 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
|
1659
|
+
I, [2021-03-16T11:29:23.159998 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1660
|
+
I, [2021-03-16T11:29:23.160894 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1661
|
+
I, [2021-03-16T11:29:23.161283 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1662
|
+
D, [2021-03-16T11:29:23.161551 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1663
|
+
D, [2021-03-16T11:29:23.161631 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1664
|
+
I, [2021-03-16T11:29:23.161745 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1665
|
+
I, [2021-03-16T11:29:23.162162 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1666
|
+
I, [2021-03-16T11:29:23.162284 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 546)
|
1667
|
+
I, [2021-03-16T11:29:23.209428 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1668
|
+
I, [2021-03-16T11:29:23.209905 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1669
|
+
I, [2021-03-16T11:29:23.209952 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1670
|
+
D, [2021-03-16T11:29:23.210587 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1671
|
+
D, [2021-03-16T11:29:23.210655 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1672
|
+
I, [2021-03-16T11:29:23.308611 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 97.9ms | Allocations: 200179)
|
1673
|
+
I, [2021-03-16T11:29:23.309459 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 98.8ms | Allocations: 200501)
|
1674
|
+
I, [2021-03-16T11:29:23.309636 #20253] INFO -- : Completed 200 OK in 100ms (Views: 99.2ms | Allocations: 200913)
|
1675
|
+
I, [2021-03-16T11:29:23.314739 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1676
|
+
I, [2021-03-16T11:29:23.315166 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1677
|
+
I, [2021-03-16T11:29:23.315230 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1678
|
+
D, [2021-03-16T11:29:23.315837 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1679
|
+
D, [2021-03-16T11:29:23.315899 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1680
|
+
I, [2021-03-16T11:29:23.404881 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 88.9ms | Allocations: 200169)
|
1681
|
+
I, [2021-03-16T11:29:23.406470 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 90.6ms | Allocations: 200491)
|
1682
|
+
I, [2021-03-16T11:29:23.406624 #20253] INFO -- : Completed 200 OK in 91ms (Views: 90.9ms | Allocations: 200902)
|
1683
|
+
I, [2021-03-16T11:29:23.411476 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1684
|
+
I, [2021-03-16T11:29:23.411867 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1685
|
+
I, [2021-03-16T11:29:23.411907 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1686
|
+
D, [2021-03-16T11:29:23.412486 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1687
|
+
D, [2021-03-16T11:29:23.412548 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1688
|
+
I, [2021-03-16T11:29:23.508548 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 95.9ms | Allocations: 200177)
|
1689
|
+
I, [2021-03-16T11:29:23.509401 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 96.8ms | Allocations: 200499)
|
1690
|
+
I, [2021-03-16T11:29:23.509560 #20253] INFO -- : Completed 200 OK in 98ms (Views: 97.2ms | Allocations: 200910)
|
1691
|
+
I, [2021-03-16T11:29:23.514569 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1692
|
+
I, [2021-03-16T11:29:23.515076 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1693
|
+
I, [2021-03-16T11:29:23.515122 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1694
|
+
D, [2021-03-16T11:29:23.515921 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1695
|
+
D, [2021-03-16T11:29:23.515991 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1696
|
+
I, [2021-03-16T11:29:23.610389 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 94.3ms | Allocations: 200174)
|
1697
|
+
I, [2021-03-16T11:29:23.611133 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.1ms | Allocations: 200496)
|
1698
|
+
I, [2021-03-16T11:29:23.611291 #20253] INFO -- : Completed 200 OK in 96ms (Views: 95.7ms | Allocations: 200907)
|
1699
|
+
I, [2021-03-16T11:29:23.616306 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1700
|
+
I, [2021-03-16T11:29:23.616734 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1701
|
+
I, [2021-03-16T11:29:23.616777 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1702
|
+
D, [2021-03-16T11:29:23.617364 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1703
|
+
D, [2021-03-16T11:29:23.617431 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1704
|
+
I, [2021-03-16T11:29:23.711534 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 94.0ms | Allocations: 200171)
|
1705
|
+
I, [2021-03-16T11:29:23.712352 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 94.9ms | Allocations: 200493)
|
1706
|
+
I, [2021-03-16T11:29:23.712505 #20253] INFO -- : Completed 200 OK in 96ms (Views: 95.2ms | Allocations: 200904)
|
1707
|
+
I, [2021-03-16T11:29:23.769930 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1708
|
+
I, [2021-03-16T11:29:23.770392 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1709
|
+
I, [2021-03-16T11:29:23.770437 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1710
|
+
D, [2021-03-16T11:29:23.771046 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1711
|
+
D, [2021-03-16T11:29:23.771139 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1712
|
+
I, [2021-03-16T11:29:23.864436 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 93.2ms | Allocations: 200173)
|
1713
|
+
I, [2021-03-16T11:29:23.865274 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 94.2ms | Allocations: 200495)
|
1714
|
+
I, [2021-03-16T11:29:23.865428 #20253] INFO -- : Completed 200 OK in 95ms (Views: 94.5ms | Allocations: 200907)
|
1715
|
+
I, [2021-03-16T11:29:23.870373 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1716
|
+
I, [2021-03-16T11:29:23.870787 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1717
|
+
I, [2021-03-16T11:29:23.870831 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1718
|
+
D, [2021-03-16T11:29:23.871407 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1719
|
+
D, [2021-03-16T11:29:23.871465 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1720
|
+
I, [2021-03-16T11:29:23.968250 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 96.7ms | Allocations: 200169)
|
1721
|
+
I, [2021-03-16T11:29:23.969135 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 97.7ms | Allocations: 200491)
|
1722
|
+
I, [2021-03-16T11:29:23.969289 #20253] INFO -- : Completed 200 OK in 98ms (Views: 98.0ms | Allocations: 200902)
|
1723
|
+
I, [2021-03-16T11:29:23.974323 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:23 -0700
|
1724
|
+
I, [2021-03-16T11:29:23.974664 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1725
|
+
I, [2021-03-16T11:29:23.974716 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1726
|
+
D, [2021-03-16T11:29:23.975273 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1727
|
+
D, [2021-03-16T11:29:23.975329 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1728
|
+
I, [2021-03-16T11:29:24.070198 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 94.8ms | Allocations: 200177)
|
1729
|
+
I, [2021-03-16T11:29:24.071016 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 95.7ms | Allocations: 200499)
|
1730
|
+
I, [2021-03-16T11:29:24.071190 #20253] INFO -- : Completed 200 OK in 96ms (Views: 96.0ms | Allocations: 200910)
|
1731
|
+
I, [2021-03-16T11:29:24.076026 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:24 -0700
|
1732
|
+
I, [2021-03-16T11:29:24.076426 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1733
|
+
I, [2021-03-16T11:29:24.076467 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1734
|
+
D, [2021-03-16T11:29:24.077032 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1735
|
+
D, [2021-03-16T11:29:24.077089 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1736
|
+
I, [2021-03-16T11:29:24.173849 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 96.7ms | Allocations: 200174)
|
1737
|
+
I, [2021-03-16T11:29:24.174738 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 97.6ms | Allocations: 200496)
|
1738
|
+
I, [2021-03-16T11:29:24.174886 #20253] INFO -- : Completed 200 OK in 98ms (Views: 97.9ms | Allocations: 200907)
|
1739
|
+
I, [2021-03-16T11:29:24.179793 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:24 -0700
|
1740
|
+
I, [2021-03-16T11:29:24.180189 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1741
|
+
I, [2021-03-16T11:29:24.180226 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1742
|
+
D, [2021-03-16T11:29:24.180780 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1743
|
+
D, [2021-03-16T11:29:24.180839 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1744
|
+
I, [2021-03-16T11:29:24.275909 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 95.0ms | Allocations: 200171)
|
1745
|
+
I, [2021-03-16T11:29:24.276830 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 96.0ms | Allocations: 200493)
|
1746
|
+
I, [2021-03-16T11:29:24.276982 #20253] INFO -- : Completed 200 OK in 97ms (Views: 96.3ms | Allocations: 200904)
|
1747
|
+
I, [2021-03-16T11:29:24.282172 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:24 -0700
|
1748
|
+
I, [2021-03-16T11:29:24.282578 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1749
|
+
D, [2021-03-16T11:29:24.282838 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1750
|
+
D, [2021-03-16T11:29:24.282888 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1751
|
+
I, [2021-03-16T11:29:24.282954 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1752
|
+
I, [2021-03-16T11:29:24.283409 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 330)
|
1753
|
+
I, [2021-03-16T11:29:24.283524 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 550)
|
1754
|
+
I, [2021-03-16T11:29:24.284322 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:24 -0700
|
1755
|
+
I, [2021-03-16T11:29:24.284664 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1756
|
+
D, [2021-03-16T11:29:24.284893 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1757
|
+
D, [2021-03-16T11:29:24.284941 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1758
|
+
I, [2021-03-16T11:29:24.284997 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1759
|
+
I, [2021-03-16T11:29:24.285352 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
|
1760
|
+
I, [2021-03-16T11:29:24.285452 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1761
|
+
I, [2021-03-16T11:29:24.286159 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:24 -0700
|
1762
|
+
I, [2021-03-16T11:29:24.286453 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1763
|
+
D, [2021-03-16T11:29:24.286654 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1764
|
+
D, [2021-03-16T11:29:24.286703 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1765
|
+
I, [2021-03-16T11:29:24.286762 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1766
|
+
I, [2021-03-16T11:29:24.287081 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
|
1767
|
+
I, [2021-03-16T11:29:24.287175 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 546)
|
1768
|
+
I, [2021-03-16T11:29:24.287910 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:24 -0700
|
1769
|
+
I, [2021-03-16T11:29:24.288144 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1770
|
+
D, [2021-03-16T11:29:24.288307 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1771
|
+
D, [2021-03-16T11:29:24.288344 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1772
|
+
I, [2021-03-16T11:29:24.288387 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1773
|
+
I, [2021-03-16T11:29:24.288637 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 328)
|
1774
|
+
I, [2021-03-16T11:29:24.288714 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 546)
|
1775
|
+
I, [2021-03-16T11:29:24.289222 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:24 -0700
|
1776
|
+
I, [2021-03-16T11:29:24.289441 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1777
|
+
D, [2021-03-16T11:29:24.289597 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1778
|
+
D, [2021-03-16T11:29:24.289638 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1779
|
+
I, [2021-03-16T11:29:24.289680 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1780
|
+
I, [2021-03-16T11:29:24.289924 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 328)
|
1781
|
+
I, [2021-03-16T11:29:24.289996 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 546)
|
1782
|
+
I, [2021-03-16T11:29:24.290610 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:24 -0700
|
1783
|
+
I, [2021-03-16T11:29:24.290881 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1784
|
+
I, [2021-03-16T11:29:24.290912 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1785
|
+
D, [2021-03-16T11:29:24.291400 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1786
|
+
D, [2021-03-16T11:29:24.291447 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1787
|
+
I, [2021-03-16T11:29:24.388408 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 96.9ms | Allocations: 200177)
|
1788
|
+
I, [2021-03-16T11:29:24.389696 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 98.2ms | Allocations: 200499)
|
1789
|
+
I, [2021-03-16T11:29:24.389856 #20253] INFO -- : Completed 200 OK in 99ms (Views: 98.5ms | Allocations: 200909)
|
1790
|
+
I, [2021-03-16T11:29:24.394874 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:24 -0700
|
1791
|
+
I, [2021-03-16T11:29:24.687059 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1792
|
+
I, [2021-03-16T11:29:24.687118 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1793
|
+
D, [2021-03-16T11:29:24.688025 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1794
|
+
D, [2021-03-16T11:29:24.688078 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1795
|
+
I, [2021-03-16T11:29:25.787055 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1098.9ms | Allocations: 690147)
|
1796
|
+
I, [2021-03-16T11:29:25.788084 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1100.0ms | Allocations: 690470)
|
1797
|
+
I, [2021-03-16T11:29:25.788240 #20253] INFO -- : Completed 200 OK in 1101ms (Views: 1100.3ms | Allocations: 690976)
|
1798
|
+
I, [2021-03-16T11:29:25.791982 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:25 -0700
|
1799
|
+
I, [2021-03-16T11:29:26.100714 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1800
|
+
I, [2021-03-16T11:29:26.100781 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1801
|
+
D, [2021-03-16T11:29:26.102137 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1802
|
+
D, [2021-03-16T11:29:26.102200 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1803
|
+
I, [2021-03-16T11:29:27.172433 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1070.2ms | Allocations: 690150)
|
1804
|
+
I, [2021-03-16T11:29:27.173547 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1071.3ms | Allocations: 690473)
|
1805
|
+
I, [2021-03-16T11:29:27.173669 #20253] INFO -- : Completed 200 OK in 1073ms (Views: 1071.7ms | Allocations: 690979)
|
1806
|
+
I, [2021-03-16T11:29:27.177553 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:27 -0700
|
1807
|
+
I, [2021-03-16T11:29:27.521638 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1808
|
+
I, [2021-03-16T11:29:27.521699 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1809
|
+
D, [2021-03-16T11:29:27.522590 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1810
|
+
D, [2021-03-16T11:29:27.522648 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1811
|
+
I, [2021-03-16T11:29:28.603949 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1081.2ms | Allocations: 690144)
|
1812
|
+
I, [2021-03-16T11:29:28.605254 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1082.6ms | Allocations: 690467)
|
1813
|
+
I, [2021-03-16T11:29:28.605378 #20253] INFO -- : Completed 200 OK in 1084ms (Views: 1082.9ms | Allocations: 690973)
|
1814
|
+
I, [2021-03-16T11:29:28.609241 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:28 -0700
|
1815
|
+
I, [2021-03-16T11:29:28.931968 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1816
|
+
I, [2021-03-16T11:29:28.932030 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1817
|
+
D, [2021-03-16T11:29:28.932866 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1818
|
+
D, [2021-03-16T11:29:28.932922 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1819
|
+
I, [2021-03-16T11:29:29.998729 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1065.8ms | Allocations: 690147)
|
1820
|
+
I, [2021-03-16T11:29:29.999725 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1066.8ms | Allocations: 690470)
|
1821
|
+
I, [2021-03-16T11:29:29.999960 #20253] INFO -- : Completed 200 OK in 1068ms (Views: 1067.1ms | Allocations: 690976)
|
1822
|
+
I, [2021-03-16T11:29:30.010710 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:30 -0700
|
1823
|
+
I, [2021-03-16T11:29:30.283300 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1824
|
+
I, [2021-03-16T11:29:30.283367 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1825
|
+
D, [2021-03-16T11:29:30.284399 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1826
|
+
D, [2021-03-16T11:29:30.284487 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1827
|
+
I, [2021-03-16T11:29:31.375089 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1090.5ms | Allocations: 690139)
|
1828
|
+
I, [2021-03-16T11:29:31.376246 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1091.8ms | Allocations: 690462)
|
1829
|
+
I, [2021-03-16T11:29:31.376370 #20253] INFO -- : Completed 200 OK in 1093ms (Views: 1092.2ms | Allocations: 690968)
|
1830
|
+
I, [2021-03-16T11:29:31.380080 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:31 -0700
|
1831
|
+
I, [2021-03-16T11:29:31.669342 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1832
|
+
I, [2021-03-16T11:29:31.669410 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1833
|
+
D, [2021-03-16T11:29:31.670660 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1834
|
+
D, [2021-03-16T11:29:31.670721 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1835
|
+
I, [2021-03-16T11:29:32.740561 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1069.8ms | Allocations: 690148)
|
1836
|
+
I, [2021-03-16T11:29:32.741626 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1070.9ms | Allocations: 690471)
|
1837
|
+
I, [2021-03-16T11:29:32.741746 #20253] INFO -- : Completed 200 OK in 1072ms (Views: 1071.2ms | Allocations: 690976)
|
1838
|
+
I, [2021-03-16T11:29:32.745685 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:32 -0700
|
1839
|
+
I, [2021-03-16T11:29:33.082603 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1840
|
+
I, [2021-03-16T11:29:33.082657 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1841
|
+
D, [2021-03-16T11:29:33.083380 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1842
|
+
D, [2021-03-16T11:29:33.083422 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1843
|
+
I, [2021-03-16T11:29:34.169046 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1085.6ms | Allocations: 690144)
|
1844
|
+
I, [2021-03-16T11:29:34.169820 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1086.4ms | Allocations: 690467)
|
1845
|
+
I, [2021-03-16T11:29:34.169964 #20253] INFO -- : Completed 200 OK in 1087ms (Views: 1086.7ms | Allocations: 690973)
|
1846
|
+
I, [2021-03-16T11:29:34.174574 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:34 -0700
|
1847
|
+
I, [2021-03-16T11:29:34.501137 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1848
|
+
I, [2021-03-16T11:29:34.501213 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1849
|
+
D, [2021-03-16T11:29:34.502070 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1850
|
+
D, [2021-03-16T11:29:34.502128 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1851
|
+
I, [2021-03-16T11:29:35.555095 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1052.9ms | Allocations: 690147)
|
1852
|
+
I, [2021-03-16T11:29:35.556271 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1054.1ms | Allocations: 690470)
|
1853
|
+
I, [2021-03-16T11:29:35.556403 #20253] INFO -- : Completed 200 OK in 1055ms (Views: 1054.4ms | Allocations: 690976)
|
1854
|
+
I, [2021-03-16T11:29:35.560152 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:35 -0700
|
1855
|
+
I, [2021-03-16T11:29:35.841831 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1856
|
+
I, [2021-03-16T11:29:35.841895 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1857
|
+
D, [2021-03-16T11:29:35.842809 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1858
|
+
D, [2021-03-16T11:29:35.842877 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1859
|
+
I, [2021-03-16T11:29:36.956337 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1113.4ms | Allocations: 690139)
|
1860
|
+
I, [2021-03-16T11:29:36.957359 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1114.5ms | Allocations: 690462)
|
1861
|
+
I, [2021-03-16T11:29:36.957484 #20253] INFO -- : Completed 200 OK in 1116ms (Views: 1114.8ms | Allocations: 690968)
|
1862
|
+
I, [2021-03-16T11:29:37.455929 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:37 -0700
|
1863
|
+
I, [2021-03-16T11:29:37.456404 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1864
|
+
D, [2021-03-16T11:29:37.456705 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1865
|
+
D, [2021-03-16T11:29:37.456765 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1866
|
+
I, [2021-03-16T11:29:37.456839 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1867
|
+
I, [2021-03-16T11:29:37.457329 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 330)
|
1868
|
+
I, [2021-03-16T11:29:37.457468 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 551)
|
1869
|
+
I, [2021-03-16T11:29:37.458356 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:37 -0700
|
1870
|
+
I, [2021-03-16T11:29:37.458692 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1871
|
+
D, [2021-03-16T11:29:37.458934 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1872
|
+
D, [2021-03-16T11:29:37.458991 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1873
|
+
I, [2021-03-16T11:29:37.459055 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1874
|
+
I, [2021-03-16T11:29:37.459469 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1875
|
+
I, [2021-03-16T11:29:37.459552 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1876
|
+
I, [2021-03-16T11:29:37.460089 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:37 -0700
|
1877
|
+
I, [2021-03-16T11:29:37.460381 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1878
|
+
D, [2021-03-16T11:29:37.460611 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1879
|
+
D, [2021-03-16T11:29:37.460665 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1880
|
+
I, [2021-03-16T11:29:37.460727 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1881
|
+
I, [2021-03-16T11:29:37.461091 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 328)
|
1882
|
+
I, [2021-03-16T11:29:37.461196 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1883
|
+
I, [2021-03-16T11:29:37.461970 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:37 -0700
|
1884
|
+
I, [2021-03-16T11:29:37.462293 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1885
|
+
D, [2021-03-16T11:29:37.462597 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1886
|
+
D, [2021-03-16T11:29:37.462671 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1887
|
+
I, [2021-03-16T11:29:37.462743 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1888
|
+
I, [2021-03-16T11:29:37.463178 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1889
|
+
I, [2021-03-16T11:29:37.463301 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 546)
|
1890
|
+
I, [2021-03-16T11:29:37.464106 #20253] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2021-03-16 11:29:37 -0700
|
1891
|
+
I, [2021-03-16T11:29:37.464456 #20253] INFO -- : Processing by BaselineController#show as HTML
|
1892
|
+
D, [2021-03-16T11:29:37.464783 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1893
|
+
D, [2021-03-16T11:29:37.464851 #20253] DEBUG -- : Rendering baseline/show.html.erb within layouts/application
|
1894
|
+
I, [2021-03-16T11:29:37.464923 #20253] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1895
|
+
I, [2021-03-16T11:29:37.465320 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 328)
|
1896
|
+
I, [2021-03-16T11:29:37.465400 #20253] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 546)
|
1897
|
+
I, [2021-03-16T11:29:37.547583 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:37 -0700
|
1898
|
+
I, [2021-03-16T11:29:37.548081 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1899
|
+
I, [2021-03-16T11:29:37.548121 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1900
|
+
D, [2021-03-16T11:29:37.549858 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1901
|
+
D, [2021-03-16T11:29:37.549935 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1902
|
+
I, [2021-03-16T11:29:38.551578 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1001.6ms | Allocations: 690147)
|
1903
|
+
I, [2021-03-16T11:29:38.552646 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1002.7ms | Allocations: 690469)
|
1904
|
+
I, [2021-03-16T11:29:38.552773 #20253] INFO -- : Completed 200 OK in 1005ms (Views: 1003.1ms | Allocations: 690975)
|
1905
|
+
I, [2021-03-16T11:29:38.556579 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:38 -0700
|
1906
|
+
I, [2021-03-16T11:29:38.804870 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1907
|
+
I, [2021-03-16T11:29:38.804928 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1908
|
+
D, [2021-03-16T11:29:38.805840 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1909
|
+
D, [2021-03-16T11:29:38.805897 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1910
|
+
I, [2021-03-16T11:29:39.887048 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1081.1ms | Allocations: 690142)
|
1911
|
+
I, [2021-03-16T11:29:39.888182 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1082.3ms | Allocations: 690464)
|
1912
|
+
I, [2021-03-16T11:29:39.888308 #20253] INFO -- : Completed 200 OK in 1083ms (Views: 1082.6ms | Allocations: 690970)
|
1913
|
+
I, [2021-03-16T11:29:39.892169 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:39 -0700
|
1914
|
+
I, [2021-03-16T11:29:40.248135 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1915
|
+
I, [2021-03-16T11:29:40.248209 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1916
|
+
D, [2021-03-16T11:29:40.249144 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1917
|
+
D, [2021-03-16T11:29:40.249199 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1918
|
+
I, [2021-03-16T11:29:41.287286 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1038.0ms | Allocations: 690144)
|
1919
|
+
I, [2021-03-16T11:29:41.288321 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1039.1ms | Allocations: 690467)
|
1920
|
+
I, [2021-03-16T11:29:41.288469 #20253] INFO -- : Completed 200 OK in 1040ms (Views: 1039.4ms | Allocations: 690973)
|
1921
|
+
I, [2021-03-16T11:29:41.292289 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:41 -0700
|
1922
|
+
I, [2021-03-16T11:29:41.606499 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1923
|
+
I, [2021-03-16T11:29:41.606566 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1924
|
+
D, [2021-03-16T11:29:41.607493 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1925
|
+
D, [2021-03-16T11:29:41.607551 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1926
|
+
I, [2021-03-16T11:29:42.696569 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1089.0ms | Allocations: 690141)
|
1927
|
+
I, [2021-03-16T11:29:42.697612 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1090.1ms | Allocations: 690463)
|
1928
|
+
I, [2021-03-16T11:29:42.697752 #20253] INFO -- : Completed 200 OK in 1091ms (Views: 1090.4ms | Allocations: 690969)
|
1929
|
+
I, [2021-03-16T11:29:42.701650 #20253] INFO -- : Started GET "/page-8981" for 127.0.0.1 at 2021-03-16 11:29:42 -0700
|
1930
|
+
I, [2021-03-16T11:29:43.060757 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1931
|
+
I, [2021-03-16T11:29:43.060810 #20253] INFO -- : Parameters: {"resource_path"=>"page-8981"}
|
1932
|
+
D, [2021-03-16T11:29:43.063279 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1933
|
+
D, [2021-03-16T11:29:43.063325 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1934
|
+
I, [2021-03-16T11:29:44.151795 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1088.4ms | Allocations: 690144)
|
1935
|
+
I, [2021-03-16T11:29:44.153086 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1089.8ms | Allocations: 690467)
|
1936
|
+
I, [2021-03-16T11:29:44.153259 #20253] INFO -- : Completed 200 OK in 1092ms (Views: 1090.1ms | Allocations: 690973)
|
1937
|
+
I, [2021-03-16T11:29:44.310828 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:44 -0700
|
1938
|
+
I, [2021-03-16T11:29:44.562647 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1939
|
+
I, [2021-03-16T11:29:44.562712 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1940
|
+
D, [2021-03-16T11:29:44.563639 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1941
|
+
D, [2021-03-16T11:29:44.563703 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1942
|
+
I, [2021-03-16T11:29:45.804690 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1240.9ms | Allocations: 690141)
|
1943
|
+
I, [2021-03-16T11:29:45.806135 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1242.4ms | Allocations: 690463)
|
1944
|
+
I, [2021-03-16T11:29:45.806353 #20253] INFO -- : Completed 200 OK in 1244ms (Views: 1242.8ms | Allocations: 690969)
|
1945
|
+
I, [2021-03-16T11:29:45.811344 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:45 -0700
|
1946
|
+
I, [2021-03-16T11:29:46.168351 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1947
|
+
I, [2021-03-16T11:29:46.168412 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1948
|
+
D, [2021-03-16T11:29:46.169260 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1949
|
+
D, [2021-03-16T11:29:46.169317 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1950
|
+
I, [2021-03-16T11:29:47.355982 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1186.6ms | Allocations: 690141)
|
1951
|
+
I, [2021-03-16T11:29:47.357144 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1187.8ms | Allocations: 690464)
|
1952
|
+
I, [2021-03-16T11:29:47.357298 #20253] INFO -- : Completed 200 OK in 1189ms (Views: 1188.1ms | Allocations: 690970)
|
1953
|
+
I, [2021-03-16T11:29:47.361417 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:47 -0700
|
1954
|
+
I, [2021-03-16T11:29:47.651298 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1955
|
+
I, [2021-03-16T11:29:47.651353 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1956
|
+
D, [2021-03-16T11:29:47.652153 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1957
|
+
D, [2021-03-16T11:29:47.652206 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1958
|
+
I, [2021-03-16T11:29:48.863452 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1211.2ms | Allocations: 690142)
|
1959
|
+
I, [2021-03-16T11:29:48.865081 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1212.9ms | Allocations: 690464)
|
1960
|
+
I, [2021-03-16T11:29:48.865263 #20253] INFO -- : Completed 200 OK in 1214ms (Views: 1213.2ms | Allocations: 690970)
|
1961
|
+
I, [2021-03-16T11:29:48.870569 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:48 -0700
|
1962
|
+
I, [2021-03-16T11:29:49.249703 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1963
|
+
I, [2021-03-16T11:29:49.249799 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1964
|
+
D, [2021-03-16T11:29:49.250720 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1965
|
+
D, [2021-03-16T11:29:49.250784 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1966
|
+
I, [2021-03-16T11:29:50.638895 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1388.1ms | Allocations: 690141)
|
1967
|
+
I, [2021-03-16T11:29:50.640000 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1389.2ms | Allocations: 690464)
|
1968
|
+
I, [2021-03-16T11:29:50.640126 #20253] INFO -- : Completed 200 OK in 1390ms (Views: 1389.5ms | Allocations: 690970)
|
1969
|
+
I, [2021-03-16T11:29:50.643905 #20253] INFO -- : Started GET "/page-8161" for 127.0.0.1 at 2021-03-16 11:29:50 -0700
|
1970
|
+
I, [2021-03-16T11:29:50.919690 #20253] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1971
|
+
I, [2021-03-16T11:29:50.919749 #20253] INFO -- : Parameters: {"resource_path"=>"page-8161"}
|
1972
|
+
D, [2021-03-16T11:29:50.920449 #20253] DEBUG -- : Rendering layout layouts/application.html.erb
|
1973
|
+
D, [2021-03-16T11:29:50.920497 #20253] DEBUG -- : Rendering inline template within layouts/application
|
1974
|
+
I, [2021-03-16T11:29:52.005640 #20253] INFO -- : Rendered inline template within layouts/application (Duration: 1085.1ms | Allocations: 690142)
|
1975
|
+
I, [2021-03-16T11:29:52.006565 #20253] INFO -- : Rendered layout layouts/application.html.erb (Duration: 1086.1ms | Allocations: 690464)
|
1976
|
+
I, [2021-03-16T11:29:52.006875 #20253] INFO -- : Completed 200 OK in 1087ms (Views: 1086.4ms | Allocations: 690970)
|