sitepress-rails 2.0.0.beta8 → 2.0.0

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