sitepress-rails 2.0.0.beta7 → 2.0.0.beta8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c2cff133745fe16e94211181585b97f7ea8e8e35e020e1b02a863cfac7776d21
4
- data.tar.gz: 0f9254fce8d179e8efb399da25cf57c16eb272781035bb26dcef7cfde71f6324
3
+ metadata.gz: 8847542b4eda39498873172a50e932d9f227bb5449ad36d164a47f563eb0d058
4
+ data.tar.gz: 027d9477d21a64e432fa4a5875570cd64b52eb5fb4124479fd360e5a8d5d31fd
5
5
  SHA512:
6
- metadata.gz: 2c732829c1b6867842f7dbe45f159e451ae76e033a230192dd9b5ec5d5de87b4cf0882967229725dfc1d5ff17dc4f3404cdf6d4e602287ec88efdf0d0b8916b9
7
- data.tar.gz: 3e0bbf353aca237d907e8517654d80bfd001796629b62aa489594f9861ed3616afbc73d319da64d31a0a89e3a18a90878f84ff06c15418330649fb42bf026c96
6
+ metadata.gz: 2f25562abb42ffa015f2f5736c2fe63e54f773f93f3d25fdcc8704eb23e0636fd9bd1a7e7f6834bf179092c1979620e1f96e7f1e761a1be4f3a8c8d2a2ee7591
7
+ data.tar.gz: 5fc33c2a07f472d74f1bcde41041ee833fd9bab24985282ad0e512004d5d0adc27b84c5da4cf567257699fe3f830613e040b8ebb7478760cbc137e1ef7e6d67f
@@ -4,7 +4,7 @@ module Sitepress
4
4
  # hosts like S3. To achieve this effect, we have to compile `pages/blah.html.haml`
5
5
  # to a folder with the filename `index.html`, so the final path would be `/blah/index.html`
6
6
  class DirectoryIndexPath < IndexPath
7
- def path_with_default_format
7
+ def filename_with_default_format
8
8
  File.join(node.name, "#{node.default_name}.#{format}")
9
9
  end
10
10
  end
@@ -4,16 +4,16 @@ module Sitepress
4
4
  # pages too, mainly grabbing the root, which doesn't have a name in the node, to the default_name
5
5
  # of the node, which is usually `index`.
6
6
  class IndexPath < RootPath
7
- def path_without_format
7
+ def filename_without_format
8
8
  node.name
9
9
  end
10
10
 
11
- def path_with_format
11
+ def filename_with_format
12
12
  "#{node.name}.#{format}"
13
13
  end
14
14
 
15
- def path_with_default_format
16
- path_with_format
15
+ def filename_with_default_format
16
+ filename_with_format
17
17
  end
18
18
  end
19
19
  end
@@ -13,27 +13,31 @@ module Sitepress
13
13
  @resource = resource
14
14
  end
15
15
 
16
- def path
16
+ def filename
17
17
  if format.nil?
18
- path_without_format
18
+ filename_without_format
19
19
  elsif format == node.default_format
20
- path_with_default_format
20
+ filename_with_default_format
21
21
  elsif format
22
- path_with_format
22
+ filename_with_format
23
23
  end
24
24
  end
25
25
 
26
+ def path
27
+ File.join(*resource.lineage, filename)
28
+ end
29
+
26
30
  protected
27
- def path_without_format
31
+ def filename_without_format
28
32
  node.default_name
29
33
  end
30
34
 
31
- def path_with_format
35
+ def filename_with_format
32
36
  "#{node.default_name}.#{format}"
33
37
  end
34
38
 
35
- def path_with_default_format
36
- path_with_format
39
+ def filename_with_default_format
40
+ filename_with_format
37
41
  end
38
42
  end
39
43
  end
@@ -6,65 +6,56 @@ module Sitepress
6
6
  class Compiler
7
7
  include FileUtils
8
8
 
9
- RenderingError = Class.new(RuntimeError)
9
+ attr_reader :site, :root_path
10
10
 
11
- class ResourceCompiler
12
- attr_reader :resource
11
+ def initialize(site:, root_path:, stdout: $stdout)
12
+ @site = site
13
+ @stdout = stdout
14
+ @root_path = Pathname.new(root_path)
15
+ end
13
16
 
14
- def initialize(resource)
15
- @resource = resource
17
+ # Iterates through all pages and writes them to disk
18
+ def compile
19
+ status "Building #{site.root_path.expand_path} to #{root_path.expand_path}"
20
+ resources.each do |resource, path|
21
+ if resource.renderable?
22
+ status " Rendering #{path}"
23
+ File.open(path.expand_path, "w"){ |f| f.write render resource }
24
+ else
25
+ status " Copying #{path}"
26
+ cp resource.asset.path, path.expand_path
27
+ end
28
+ rescue
29
+ status "Error building #{resource.inspect}"
30
+ raise
16
31
  end
32
+ status "Successful build to #{root_path.expand_path}"
33
+ end
34
+
35
+ private
36
+ def resources
37
+ Enumerator.new do |y|
38
+ mkdir_p root_path
17
39
 
18
- def compilation_path
19
- File.join(*resource.lineage, compilation_filename)
40
+ site.resources.each do |resource|
41
+ path = build_path resource
42
+ mkdir_p path.dirname
43
+ y << [resource, path]
44
+ end
45
+ end
20
46
  end
21
47
 
22
- # Compiled assets have a slightly different filename for assets, especially the root node.
23
- def compilation_filename(path_builder: BuildPaths::DirectoryIndexPath, root_path_builder: BuildPaths::RootPath)
24
- path_builder = resource.node.root? ? root_path_builder : path_builder
25
- path_builder.new(resource).path
48
+ def build_path(resource)
49
+ path_builder = resource.node.root? ? BuildPaths::RootPath : BuildPaths::DirectoryIndexPath
50
+ root_path.join path_builder.new(resource).path
26
51
  end
27
52
 
28
- def render(page)
53
+ def render(resource)
29
54
  Renderers::Server.new(resource).render
30
55
  end
31
- end
32
56
 
33
- attr_reader :site
34
-
35
- def initialize(site:, stdout: $stdout)
36
- @site = site
37
- @stdout = stdout
38
- end
39
-
40
- # Iterates through all pages and writes them to disk
41
- def compile(target_path:)
42
- target_path = Pathname.new(target_path)
43
- mkdir_p target_path
44
- cache_resources = @site.cache_resources
45
- @stdout.puts "Compiling #{@site.root_path.expand_path}"
46
-
47
- begin
48
- @site.cache_resources = true
49
- @site.resources.each do |resource|
50
- compiler = ResourceCompiler.new(resource)
51
- path = target_path.join(compiler.compilation_path)
52
- mkdir_p path.dirname
53
- if resource.renderable?
54
- @stdout.puts " Rendering #{path}"
55
- File.open(path.expand_path, "w"){ |f| f.write compiler.render(resource) }
56
- else
57
- @stdout.puts " Copying #{path}"
58
- FileUtils.cp resource.asset.path, path.expand_path
59
- end
60
- rescue => e
61
- @stdout.puts "Error compiling #{resource.inspect}"
62
- raise
63
- end
64
- @stdout.puts "Successful compilation to #{target_path.expand_path}"
65
- ensure
66
- @site.cache_resources = cache_resources
57
+ def status(message)
58
+ @stdout.puts message
67
59
  end
68
- end
69
60
  end
70
61
  end
@@ -34,7 +34,6 @@ module Sitepress
34
34
  # Configure Sitepress with Rails settings.
35
35
  initializer :configure_sitepress do |app|
36
36
  sitepress_configuration.parent_engine = app
37
- sitepress_configuration.cache_resources = app.config.cache_classes
38
37
  end
39
38
 
40
39
  private
@@ -3,11 +3,11 @@ require "sitepress-core"
3
3
  module Sitepress
4
4
  autoload :Compiler, "sitepress/compiler"
5
5
  autoload :RailsConfiguration, "sitepress/rails_configuration"
6
- autoload :RouteConstraint, "sitepress/route_constraint"
7
6
  module Renderers
8
7
  autoload :Controller, "sitepress/renderers/controller"
9
8
  autoload :Server, "sitepress/renderers/server"
10
9
  end
10
+ autoload :RouteConstraint, "sitepress/route_constraint"
11
11
  module BuildPaths
12
12
  autoload :RootPath, "sitepress/build_paths/root_path"
13
13
  autoload :IndexPath, "sitepress/build_paths/index_path"
@@ -17,6 +17,9 @@ module Sitepress
17
17
  # Rescued by ActionController to display page not found error.
18
18
  PageNotFoundError = Class.new(StandardError)
19
19
 
20
+ # Raised when any of the Render subclasses can't render a page.
21
+ RenderingError = Class.new(RuntimeError)
22
+
20
23
  # Make site available via Sitepress.site from Rails app.
21
24
  def self.site
22
25
  configuration.site
@@ -1,20 +1,20 @@
1
1
  module Sitepress
2
2
  module Renderers
3
- # This would be the ideal way to render Sitepress pages, but there's a lot
3
+ # This would be the ideal way to render Sitepress resources, but there's a lot
4
4
  # of hackery involved in getting it to work properly.
5
5
  class Controller
6
- attr_reader :controller, :page
6
+ attr_reader :controller, :resource
7
7
 
8
- def initialize(page, controller = SiteController)
8
+ def initialize(resource, controller = SiteController)
9
9
  @controller = controller
10
- @page = page
10
+ @resource = resource
11
11
  end
12
12
 
13
13
  def render
14
- renderer.render inline: page.body,
15
- type: page.asset.template_extensions.last,
14
+ renderer.render inline: resource.body,
15
+ type: resource.asset.template_extensions.last,
16
16
  layout: resolve_layout,
17
- content_type: page.mime_type.to_s
17
+ content_type: resource.mime_type.to_s
18
18
  end
19
19
 
20
20
  private
@@ -31,15 +31,15 @@ module Sitepress
31
31
  end
32
32
 
33
33
  def renderer
34
- controller.renderer.new("PATH_INFO" => page.request_path)
34
+ controller.renderer.new("PATH_INFO" => resource.request_path)
35
35
  end
36
36
 
37
37
  def resolve_layout
38
- return page.data.fetch("layout") if page.data.key? "layout"
38
+ return resource.data.fetch("layout") if resource.data.key? "layout"
39
39
  return layout unless has_layout_conditions?
40
40
 
41
41
  clause, formats = layout_conditions.first
42
- format = page.format.to_s
42
+ format = resource.format.to_s
43
43
 
44
44
  case clause
45
45
  when :only
@@ -1,29 +1,29 @@
1
1
  module Sitepress
2
2
  module Renderers
3
- # Renders pages by invoking a rack call to the Rails application. From my
3
+ # Renders resources by invoking a rack call to the Rails application. From my
4
4
  # experiments rendering as of 2021, this is the most reliable way to render
5
- # pages. Rendering via `Renderers::Controller` has lots of various subtle issues
5
+ # resources. Rendering via `Renderers::Controller` has lots of various subtle issues
6
6
  # that are surprising. People don't like surprises, so I opted to render through a
7
7
  # slightly heavier stack.
8
8
  class Server
9
- attr_reader :rails_app, :page
9
+ attr_reader :rails_app, :resource
10
10
 
11
- def initialize(page, rails_app = Rails.application)
11
+ def initialize(resource, rails_app = Rails.application)
12
12
  @rails_app = rails_app
13
- @page = page
13
+ @resource = resource
14
14
  end
15
15
 
16
16
  def render
17
17
  code, headers, response = rails_app.routes.call env
18
18
  response.body
19
19
  rescue => e
20
- raise Compiler::RenderingError.new "Error rendering #{page.request_path.inspect} at #{page.asset.path.expand_path.to_s.inspect}:\n#{e.message}"
20
+ raise RenderingError.new "Error rendering #{resource.request_path.inspect} at #{resource.asset.path.expand_path.to_s.inspect}:\n#{e.message}"
21
21
  end
22
22
 
23
23
  private
24
24
  def env
25
25
  {
26
- "PATH_INFO"=> page.request_path,
26
+ "PATH_INFO"=> resource.request_path,
27
27
  "REQUEST_METHOD"=>"GET",
28
28
  "rack.input" => "GET"
29
29
  }
@@ -17,6 +17,7 @@ module Sitepress
17
17
  helper Sitepress::Engine.helpers
18
18
  helper_method :current_page, :site
19
19
  before_action :append_relative_partial_path, only: :show
20
+ after_action :reload_site, only: :show
20
21
  end
21
22
 
22
23
  def show
@@ -50,12 +51,10 @@ module Sitepress
50
51
  end
51
52
 
52
53
  def render_text_resource(resource)
53
- with_sitepress_render_cache do
54
- render inline: resource.body,
55
- type: resource.asset.template_extensions.last,
56
- layout: resource.data.fetch("layout", controller_layout),
57
- content_type: resource.mime_type.to_s
58
- end
54
+ render inline: resource.body,
55
+ type: resource.asset.template_extensions.last,
56
+ layout: resource.data.fetch("layout", controller_layout),
57
+ content_type: resource.mime_type.to_s
59
58
  end
60
59
 
61
60
  def send_binary_resource(resource)
@@ -82,19 +81,6 @@ module Sitepress
82
81
  get params.fetch(:resource_path, ROOT_RESOURCE_PATH)
83
82
  end
84
83
 
85
- # When development environments disable the cache, we still want to turn it
86
- # on during rendering so that view doesn't rebuild the site on each call.
87
- def with_sitepress_render_cache(&block)
88
- cache_resources = site.cache_resources
89
- begin
90
- site.cache_resources = true
91
- yield
92
- ensure
93
- site.cache_resources = cache_resources
94
- site.clear_resources_cache unless site.cache_resources
95
- end
96
- end
97
-
98
84
  # Returns the current layout for the inline Sitepress renderer. This is
99
85
  # exposed via some really convoluted private methods inside of the various
100
86
  # versions of Rails, so I try my best to hack out the path to the layout below.
@@ -134,5 +120,13 @@ module Sitepress
134
120
  supported_extensions.map?(&:to_sym)
135
121
  end
136
122
  end
123
+
124
+ def reload_site
125
+ site.reload! if reload_site?
126
+ end
127
+
128
+ def reload_site?
129
+ !Rails.configuration.cache_classes
130
+ end
137
131
  end
138
132
  end
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
25
25
  spec.add_runtime_dependency "sitepress-core", spec.version
26
26
 
27
27
  # We don't need every single rals rependency, so grab the subset here.
28
- rails_version = ">= 5.0"
28
+ rails_version = ">= 6.0"
29
29
  spec.add_dependency "railties", rails_version
30
30
  spec.add_dependency "actionpack", rails_version
31
31
  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>
@@ -134,3 +134,923 @@ I, [2021-01-26T10:02:33.214604 #50585] INFO -- : Parameters: {"resource_path"
134
134
  I, [2021-01-26T10:02:34.095337 #50585] INFO -- : Rendering inline template within layouts/application
135
135
  I, [2021-01-26T10:02:35.174137 #50585] INFO -- : Rendered inline template within layouts/application (Duration: 1078.7ms | Allocations: 740139)
136
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)