sitepress-rails 1.0.1 → 2.0.0.beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/concerns/sitepress/site_pages.rb +35 -9
- data/app/controllers/sitepress/site_controller.rb +1 -1
- data/config/routes.rb +5 -0
- data/lib/sitepress/build_paths/directory_index_path.rb +12 -0
- data/lib/sitepress/build_paths/index_path.rb +20 -0
- data/lib/sitepress/build_paths/root_path.rb +40 -0
- data/lib/sitepress/compiler.rb +68 -0
- data/lib/sitepress/engine.rb +43 -10
- data/lib/sitepress/rails.rb +12 -10
- data/lib/sitepress/rails_configuration.rb +6 -5
- data/lib/sitepress/renderers/controller.rb +51 -0
- data/lib/sitepress/renderers/server.rb +25 -0
- data/spec/dummy/log/test.log +2149 -79935
- data/spec/sitepress-rails_spec.rb +1 -25
- data/spec/sitepress/compiler_spec.rb +19 -0
- data/spec/sitepress/sitepress_site_controller_spec.rb +33 -16
- metadata +102 -69
- data/app/helpers/sitepress/application_helper.rb +0 -4
- data/lib/sitepress/extensions/index_request_path.rb +0 -24
- data/lib/sitepress/extensions/partials_remover.rb +0 -19
- data/lib/sitepress/extensions/rails_request_paths.rb +0 -20
- data/lib/sitepress/rails_configuration.rb.orig +0 -41
- data/spec/dummy/db/production.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/production.log +0 -1428
- data/spec/sitepress/extensions/index_request_path_spec.rb +0 -15
- data/spec/sitepress/extensions/partials_remover_spec.rb +0 -12
- data/spec/sitepress/extensions/rails_request_paths_spec.rb +0 -9
@@ -1,19 +0,0 @@
|
|
1
|
-
module Sitepress
|
2
|
-
module Extensions
|
3
|
-
# Removes files beginning with "_" from the resource collection.
|
4
|
-
class PartialsRemover
|
5
|
-
# Partial rails prefix.
|
6
|
-
PARTIAL_PREFIX = "_".freeze
|
7
|
-
|
8
|
-
def process_resources(node)
|
9
|
-
node.flatten.each do |r|
|
10
|
-
r.node.remove if self.class.partial? r.asset.path # Looks like a smiley face, doesn't it?
|
11
|
-
end
|
12
|
-
end
|
13
|
-
|
14
|
-
def self.partial?(path)
|
15
|
-
File.basename(path).starts_with? PARTIAL_PREFIX
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
module Sitepress
|
2
|
-
module Extensions
|
3
|
-
# Removes the file extension from the file so that /hi/there/fun.html can be
|
4
|
-
# resolved via /hi/there/fun.
|
5
|
-
class RailsRequestPaths
|
6
|
-
def process_resources(node)
|
7
|
-
node.flatten.each do |r|
|
8
|
-
asset = r.asset
|
9
|
-
request_path = r.request_path
|
10
|
-
r.node.remove
|
11
|
-
node.add path: self.class.format_path(request_path), asset: asset
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
def self.format_path(request_path)
|
16
|
-
File.join(File.dirname(File.join("/", request_path)), File.basename(request_path, ".*"))
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
require "forwardable"
|
2
|
-
|
3
|
-
module Sitepress
|
4
|
-
# Configuration object for rails application.
|
5
|
-
class RailsConfiguration
|
6
|
-
# Store in ./app/content by default.
|
7
|
-
DEFAULT_SITE_ROOT = "app/content".freeze
|
8
|
-
|
9
|
-
<<<<<<< HEAD
|
10
|
-
attr_accessor :routes, :cache_resources
|
11
|
-
=======
|
12
|
-
attr_accessor :routes
|
13
|
-
attr_writer :site, :parent_engine
|
14
|
-
>>>>>>> Remove redudant method definitions
|
15
|
-
|
16
|
-
# Delegates configuration points into the Sitepress site.
|
17
|
-
extend Forwardable
|
18
|
-
def_delegators :site, :cache_resources, :cache_resources=, :cache_resources?
|
19
|
-
|
20
|
-
# Set defaults.
|
21
|
-
def initialize
|
22
|
-
self.routes = true
|
23
|
-
end
|
24
|
-
|
25
|
-
def parent_engine
|
26
|
-
@parent_engine ||= Rails.application
|
27
|
-
end
|
28
|
-
|
29
|
-
def site
|
30
|
-
@site ||= Site.new(root_path: default_root).tap do |site|
|
31
|
-
site.resources_pipeline << Extensions::PartialsRemover.new
|
32
|
-
site.resources_pipeline << Extensions::RailsRequestPaths.new
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
private
|
37
|
-
def default_root
|
38
|
-
Rails.root.join(DEFAULT_SITE_ROOT)
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end
|
File without changes
|
data/spec/dummy/db/test.sqlite3
DELETED
File without changes
|
@@ -1,1428 +0,0 @@
|
|
1
|
-
I, [2016-09-13T16:58:11.902520 #26007] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-13 16:58:11 -0700
|
2
|
-
I, [2016-09-13T16:58:11.921796 #26007] INFO -- : Processing by BaselineController#show as HTML
|
3
|
-
I, [2016-09-13T16:58:11.928307 #26007] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
4
|
-
I, [2016-09-13T16:58:11.934337 #26007] INFO -- : Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
5
|
-
I, [2016-09-13T16:58:11.935607 #26007] INFO -- : Started GET "/../page-1.html" for 127.0.0.1 at 2016-09-13 16:58:11 -0700
|
6
|
-
I, [2016-09-13T16:58:11.936752 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
7
|
-
I, [2016-09-13T16:58:11.936796 #26007] INFO -- : Parameters: {"resource_path"=>"../page-1.html"}
|
8
|
-
I, [2016-09-13T16:58:13.417699 #26007] INFO -- : Rendered inline template within layouts/application (1476.9ms)
|
9
|
-
I, [2016-09-13T16:58:13.420426 #26007] INFO -- : Completed 200 OK in 1484ms (Views: 1481.5ms | ActiveRecord: 0.0ms)
|
10
|
-
I, [2016-09-13T16:58:13.424266 #26007] INFO -- : Started GET "/../page-9999.html" for 127.0.0.1 at 2016-09-13 16:58:13 -0700
|
11
|
-
I, [2016-09-13T16:58:13.424858 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
12
|
-
I, [2016-09-13T16:58:13.424890 #26007] INFO -- : Parameters: {"resource_path"=>"../page-9999.html"}
|
13
|
-
I, [2016-09-13T16:58:13.630404 #26007] INFO -- : Rendered inline template within layouts/application (205.0ms)
|
14
|
-
I, [2016-09-13T16:58:13.632064 #26007] INFO -- : Completed 200 OK in 207ms (Views: 206.7ms | ActiveRecord: 0.0ms)
|
15
|
-
I, [2016-09-13T16:58:13.916686 #26007] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-13 16:58:13 -0700
|
16
|
-
I, [2016-09-13T16:58:13.917219 #26007] INFO -- : Processing by BaselineController#show as HTML
|
17
|
-
I, [2016-09-13T16:58:13.917574 #26007] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
18
|
-
I, [2016-09-13T16:58:13.917981 #26007] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
19
|
-
I, [2016-09-13T16:58:13.993942 #26007] INFO -- : Started GET "/../page-1.html" for 127.0.0.1 at 2016-09-13 16:58:13 -0700
|
20
|
-
I, [2016-09-13T16:58:13.994449 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
21
|
-
I, [2016-09-13T16:58:13.994481 #26007] INFO -- : Parameters: {"resource_path"=>"../page-1.html"}
|
22
|
-
I, [2016-09-13T16:58:14.151352 #26007] INFO -- : Rendered inline template within layouts/application (156.4ms)
|
23
|
-
I, [2016-09-13T16:58:14.152197 #26007] INFO -- : Completed 200 OK in 158ms (Views: 157.4ms | ActiveRecord: 0.0ms)
|
24
|
-
I, [2016-09-13T16:58:14.257780 #26007] INFO -- : Started GET "/../page-9999.html" for 127.0.0.1 at 2016-09-13 16:58:14 -0700
|
25
|
-
I, [2016-09-13T16:58:14.258254 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
26
|
-
I, [2016-09-13T16:58:14.258285 #26007] INFO -- : Parameters: {"resource_path"=>"../page-9999.html"}
|
27
|
-
I, [2016-09-13T16:58:14.415785 #26007] INFO -- : Rendered inline template within layouts/application (156.9ms)
|
28
|
-
I, [2016-09-13T16:58:14.417221 #26007] INFO -- : Completed 200 OK in 159ms (Views: 158.5ms | ActiveRecord: 0.0ms)
|
29
|
-
I, [2016-09-13T16:58:18.063675 #26007] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-13 16:58:18 -0700
|
30
|
-
I, [2016-09-13T16:58:18.064204 #26007] INFO -- : Processing by BaselineController#show as HTML
|
31
|
-
I, [2016-09-13T16:58:18.064544 #26007] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
32
|
-
I, [2016-09-13T16:58:18.064955 #26007] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
33
|
-
I, [2016-09-13T16:58:18.065713 #26007] INFO -- : Started GET "/../page-1.html" for 127.0.0.1 at 2016-09-13 16:58:18 -0700
|
34
|
-
I, [2016-09-13T16:58:18.066063 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
35
|
-
I, [2016-09-13T16:58:18.066090 #26007] INFO -- : Parameters: {"resource_path"=>"../page-1.html"}
|
36
|
-
I, [2016-09-13T16:58:25.162193 #26007] INFO -- : Rendered inline template within layouts/application (5157.5ms)
|
37
|
-
I, [2016-09-13T16:58:25.164008 #26007] INFO -- : Completed 200 OK in 7098ms (Views: 5159.3ms | ActiveRecord: 0.0ms)
|
38
|
-
I, [2016-09-13T16:58:25.173816 #26007] INFO -- : Started GET "/../page-9999.html" for 127.0.0.1 at 2016-09-13 16:58:25 -0700
|
39
|
-
I, [2016-09-13T16:58:25.174616 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
40
|
-
I, [2016-09-13T16:58:25.174666 #26007] INFO -- : Parameters: {"resource_path"=>"../page-9999.html"}
|
41
|
-
I, [2016-09-13T16:58:32.247642 #26007] INFO -- : Rendered inline template within layouts/application (5119.9ms)
|
42
|
-
I, [2016-09-13T16:58:32.249254 #26007] INFO -- : Completed 200 OK in 7074ms (Views: 5121.5ms | ActiveRecord: 0.0ms)
|
43
|
-
I, [2016-09-13T16:58:34.863167 #26007] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-13 16:58:34 -0700
|
44
|
-
I, [2016-09-13T16:58:34.863822 #26007] INFO -- : Processing by BaselineController#show as HTML
|
45
|
-
I, [2016-09-13T16:58:34.864187 #26007] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
46
|
-
I, [2016-09-13T16:58:34.864610 #26007] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
47
|
-
I, [2016-09-13T16:58:34.998955 #26007] INFO -- : Started GET "/../page-1.html" for 127.0.0.1 at 2016-09-13 16:58:34 -0700
|
48
|
-
I, [2016-09-13T16:58:34.999467 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
49
|
-
I, [2016-09-13T16:58:34.999500 #26007] INFO -- : Parameters: {"resource_path"=>"../page-1.html"}
|
50
|
-
I, [2016-09-13T16:58:41.166021 #26007] INFO -- : Rendered inline template within layouts/application (4726.4ms)
|
51
|
-
I, [2016-09-13T16:58:41.166922 #26007] INFO -- : Completed 200 OK in 6167ms (Views: 4727.4ms | ActiveRecord: 0.0ms)
|
52
|
-
I, [2016-09-13T16:58:41.412058 #26007] INFO -- : Started GET "/../page-9999.html" for 127.0.0.1 at 2016-09-13 16:58:41 -0700
|
53
|
-
I, [2016-09-13T16:58:41.412664 #26007] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
54
|
-
I, [2016-09-13T16:58:41.412698 #26007] INFO -- : Parameters: {"resource_path"=>"../page-9999.html"}
|
55
|
-
I, [2016-09-13T16:58:48.011046 #26007] INFO -- : Rendered inline template within layouts/application (5106.9ms)
|
56
|
-
I, [2016-09-13T16:58:48.012631 #26007] INFO -- : Completed 200 OK in 6600ms (Views: 5108.4ms | ActiveRecord: 0.0ms)
|
57
|
-
I, [2016-09-14T21:57:08.670476 #62571] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-14 21:57:08 -0700
|
58
|
-
I, [2016-09-14T21:57:08.685307 #62571] INFO -- : Processing by BaselineController#show as HTML
|
59
|
-
I, [2016-09-14T21:57:08.691842 #62571] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
60
|
-
I, [2016-09-14T21:57:08.698528 #62571] INFO -- : Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
61
|
-
I, [2016-09-14T21:57:08.700315 #62571] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-14 21:57:08 -0700
|
62
|
-
I, [2016-09-14T21:57:08.701771 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
63
|
-
I, [2016-09-14T21:57:08.701821 #62571] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
64
|
-
I, [2016-09-14T21:57:10.574728 #62571] INFO -- : Rendered inline template within layouts/application (1868.3ms)
|
65
|
-
I, [2016-09-14T21:57:10.577719 #62571] INFO -- : Completed 200 OK in 1876ms (Views: 1873.3ms | ActiveRecord: 0.0ms)
|
66
|
-
I, [2016-09-14T21:57:10.581418 #62571] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-14 21:57:10 -0700
|
67
|
-
I, [2016-09-14T21:57:10.581956 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
68
|
-
I, [2016-09-14T21:57:10.581998 #62571] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
69
|
-
I, [2016-09-14T21:57:10.737653 #62571] INFO -- : Rendered inline template within layouts/application (155.1ms)
|
70
|
-
I, [2016-09-14T21:57:10.746699 #62571] INFO -- : Completed 200 OK in 165ms (Views: 156.9ms | ActiveRecord: 0.0ms)
|
71
|
-
I, [2016-09-14T21:57:11.002500 #62571] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-14 21:57:11 -0700
|
72
|
-
I, [2016-09-14T21:57:11.003088 #62571] INFO -- : Processing by BaselineController#show as HTML
|
73
|
-
I, [2016-09-14T21:57:11.003537 #62571] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
74
|
-
I, [2016-09-14T21:57:11.004009 #62571] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
75
|
-
I, [2016-09-14T21:57:11.078020 #62571] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-14 21:57:11 -0700
|
76
|
-
I, [2016-09-14T21:57:11.078594 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
77
|
-
I, [2016-09-14T21:57:11.078636 #62571] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
78
|
-
I, [2016-09-14T21:57:11.235959 #62571] INFO -- : Rendered inline template within layouts/application (156.9ms)
|
79
|
-
I, [2016-09-14T21:57:11.236825 #62571] INFO -- : Completed 200 OK in 158ms (Views: 157.9ms | ActiveRecord: 0.0ms)
|
80
|
-
I, [2016-09-14T21:57:11.346614 #62571] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-14 21:57:11 -0700
|
81
|
-
I, [2016-09-14T21:57:11.347535 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
82
|
-
I, [2016-09-14T21:57:11.347632 #62571] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
83
|
-
I, [2016-09-14T21:57:11.499488 #62571] INFO -- : Rendered inline template within layouts/application (151.4ms)
|
84
|
-
I, [2016-09-14T21:57:11.500945 #62571] INFO -- : Completed 200 OK in 153ms (Views: 153.0ms | ActiveRecord: 0.0ms)
|
85
|
-
I, [2016-09-14T21:57:15.604550 #62571] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-14 21:57:15 -0700
|
86
|
-
I, [2016-09-14T21:57:15.605153 #62571] INFO -- : Processing by BaselineController#show as HTML
|
87
|
-
I, [2016-09-14T21:57:15.605755 #62571] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
88
|
-
I, [2016-09-14T21:57:15.606764 #62571] INFO -- : Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
89
|
-
I, [2016-09-14T21:57:15.608777 #62571] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-14 21:57:15 -0700
|
90
|
-
I, [2016-09-14T21:57:15.609377 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
91
|
-
I, [2016-09-14T21:57:15.609433 #62571] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
92
|
-
I, [2016-09-14T21:57:23.854355 #62571] INFO -- : Rendered inline template within layouts/application (5947.2ms)
|
93
|
-
I, [2016-09-14T21:57:23.861070 #62571] INFO -- : Completed 200 OK in 8251ms (Views: 5953.8ms | ActiveRecord: 0.0ms)
|
94
|
-
I, [2016-09-14T21:57:23.880755 #62571] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-14 21:57:23 -0700
|
95
|
-
I, [2016-09-14T21:57:23.881425 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
96
|
-
I, [2016-09-14T21:57:23.881476 #62571] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
97
|
-
I, [2016-09-14T21:57:32.491637 #62571] INFO -- : Rendered inline template within layouts/application (5802.1ms)
|
98
|
-
I, [2016-09-14T21:57:32.494498 #62571] INFO -- : Completed 200 OK in 8613ms (Views: 5805.5ms | ActiveRecord: 0.0ms)
|
99
|
-
I, [2016-09-14T21:57:36.001627 #62571] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-14 21:57:36 -0700
|
100
|
-
I, [2016-09-14T21:57:36.002562 #62571] INFO -- : Processing by BaselineController#show as HTML
|
101
|
-
I, [2016-09-14T21:57:36.002994 #62571] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
102
|
-
I, [2016-09-14T21:57:36.003444 #62571] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
103
|
-
I, [2016-09-14T21:57:36.152026 #62571] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-14 21:57:36 -0700
|
104
|
-
I, [2016-09-14T21:57:36.152644 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
105
|
-
I, [2016-09-14T21:57:36.152688 #62571] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
106
|
-
I, [2016-09-14T21:57:43.355441 #62571] INFO -- : Rendered inline template within layouts/application (5519.6ms)
|
107
|
-
I, [2016-09-14T21:57:43.356883 #62571] INFO -- : Completed 200 OK in 7204ms (Views: 5521.1ms | ActiveRecord: 0.0ms)
|
108
|
-
I, [2016-09-14T21:57:43.774459 #62571] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-14 21:57:43 -0700
|
109
|
-
I, [2016-09-14T21:57:43.775110 #62571] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
110
|
-
I, [2016-09-14T21:57:43.775150 #62571] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
111
|
-
I, [2016-09-14T21:57:50.829540 #62571] INFO -- : Rendered inline template within layouts/application (5198.1ms)
|
112
|
-
I, [2016-09-14T21:57:50.831001 #62571] INFO -- : Completed 200 OK in 7056ms (Views: 5199.5ms | ActiveRecord: 0.0ms)
|
113
|
-
I, [2016-09-19T15:57:30.416165 #76522] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-19 15:57:30 -0700
|
114
|
-
I, [2016-09-19T15:57:30.427908 #76522] INFO -- : Processing by BaselineController#show as HTML
|
115
|
-
I, [2016-09-19T15:57:30.436841 #76522] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.9ms)
|
116
|
-
I, [2016-09-19T15:57:30.443719 #76522] INFO -- : Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
|
117
|
-
I, [2016-09-19T15:57:30.445425 #76522] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-19 15:57:30 -0700
|
118
|
-
I, [2016-09-19T15:57:30.446471 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
119
|
-
I, [2016-09-19T15:57:30.446507 #76522] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
120
|
-
I, [2016-09-19T15:57:35.223674 #76522] INFO -- : Rendered inline template within layouts/application (4772.7ms)
|
121
|
-
I, [2016-09-19T15:57:35.226310 #76522] INFO -- : Completed 200 OK in 4780ms (Views: 4776.7ms | ActiveRecord: 0.0ms)
|
122
|
-
I, [2016-09-19T15:57:35.229883 #76522] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-19 15:57:35 -0700
|
123
|
-
I, [2016-09-19T15:57:35.230414 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
124
|
-
I, [2016-09-19T15:57:35.230455 #76522] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
125
|
-
I, [2016-09-19T15:57:35.378637 #76522] INFO -- : Rendered inline template within layouts/application (147.6ms)
|
126
|
-
I, [2016-09-19T15:57:35.387303 #76522] INFO -- : Completed 200 OK in 157ms (Views: 149.2ms | ActiveRecord: 0.0ms)
|
127
|
-
I, [2016-09-19T15:57:35.644031 #76522] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-19 15:57:35 -0700
|
128
|
-
I, [2016-09-19T15:57:35.644659 #76522] INFO -- : Processing by BaselineController#show as HTML
|
129
|
-
I, [2016-09-19T15:57:35.645102 #76522] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
130
|
-
I, [2016-09-19T15:57:35.645601 #76522] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
131
|
-
I, [2016-09-19T15:57:35.720910 #76522] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-19 15:57:35 -0700
|
132
|
-
I, [2016-09-19T15:57:35.721500 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
133
|
-
I, [2016-09-19T15:57:35.721549 #76522] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
134
|
-
I, [2016-09-19T15:57:35.866085 #76522] INFO -- : Rendered inline template within layouts/application (144.1ms)
|
135
|
-
I, [2016-09-19T15:57:35.867023 #76522] INFO -- : Completed 200 OK in 145ms (Views: 145.0ms | ActiveRecord: 0.0ms)
|
136
|
-
I, [2016-09-19T15:57:35.969627 #76522] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-19 15:57:35 -0700
|
137
|
-
I, [2016-09-19T15:57:35.970102 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
138
|
-
I, [2016-09-19T15:57:35.970134 #76522] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
139
|
-
I, [2016-09-19T15:57:36.116802 #76522] INFO -- : Rendered inline template within layouts/application (146.3ms)
|
140
|
-
I, [2016-09-19T15:57:36.118549 #76522] INFO -- : Completed 200 OK in 148ms (Views: 148.1ms | ActiveRecord: 0.0ms)
|
141
|
-
I, [2016-09-19T15:57:39.371086 #76522] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-19 15:57:39 -0700
|
142
|
-
I, [2016-09-19T15:57:39.371587 #76522] INFO -- : Processing by BaselineController#show as HTML
|
143
|
-
I, [2016-09-19T15:57:39.372218 #76522] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
144
|
-
I, [2016-09-19T15:57:39.372903 #76522] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
145
|
-
I, [2016-09-19T15:57:39.373792 #76522] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-19 15:57:39 -0700
|
146
|
-
I, [2016-09-19T15:57:39.374229 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
147
|
-
I, [2016-09-19T15:57:39.374260 #76522] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
148
|
-
I, [2016-09-19T15:57:47.718759 #76522] INFO -- : Rendered inline template within layouts/application (6820.3ms)
|
149
|
-
I, [2016-09-19T15:57:47.720921 #76522] INFO -- : Completed 200 OK in 8347ms (Views: 6822.3ms | ActiveRecord: 0.0ms)
|
150
|
-
I, [2016-09-19T15:57:47.724343 #76522] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-19 15:57:47 -0700
|
151
|
-
I, [2016-09-19T15:57:47.725015 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
152
|
-
I, [2016-09-19T15:57:47.725048 #76522] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
153
|
-
I, [2016-09-19T15:57:54.268420 #76522] INFO -- : Rendered inline template within layouts/application (4640.4ms)
|
154
|
-
I, [2016-09-19T15:57:54.270469 #76522] INFO -- : Completed 200 OK in 6545ms (Views: 4642.3ms | ActiveRecord: 0.0ms)
|
155
|
-
I, [2016-09-19T15:57:56.559254 #76522] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-19 15:57:56 -0700
|
156
|
-
I, [2016-09-19T15:57:56.559890 #76522] INFO -- : Processing by BaselineController#show as HTML
|
157
|
-
I, [2016-09-19T15:57:56.560326 #76522] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
158
|
-
I, [2016-09-19T15:57:56.560824 #76522] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
159
|
-
I, [2016-09-19T15:57:56.697936 #76522] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-19 15:57:56 -0700
|
160
|
-
I, [2016-09-19T15:57:56.698467 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
161
|
-
I, [2016-09-19T15:57:56.698500 #76522] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
162
|
-
I, [2016-09-19T15:58:02.770170 #76522] INFO -- : Rendered inline template within layouts/application (4646.5ms)
|
163
|
-
I, [2016-09-19T15:58:02.771835 #76522] INFO -- : Completed 200 OK in 6073ms (Views: 4648.2ms | ActiveRecord: 0.0ms)
|
164
|
-
I, [2016-09-19T15:58:03.187059 #76522] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-19 15:58:03 -0700
|
165
|
-
I, [2016-09-19T15:58:03.187619 #76522] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
166
|
-
I, [2016-09-19T15:58:03.187666 #76522] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
167
|
-
I, [2016-09-19T15:58:09.666117 #76522] INFO -- : Rendered inline template within layouts/application (4993.3ms)
|
168
|
-
I, [2016-09-19T15:58:09.668224 #76522] INFO -- : Completed 200 OK in 6480ms (Views: 4995.4ms | ActiveRecord: 0.0ms)
|
169
|
-
I, [2016-09-20T11:11:09.218771 #4395] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-20 11:11:09 -0700
|
170
|
-
I, [2016-09-20T11:11:09.231315 #4395] INFO -- : Processing by BaselineController#show as HTML
|
171
|
-
I, [2016-09-20T11:11:09.237263 #4395] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
172
|
-
I, [2016-09-20T11:11:09.243466 #4395] INFO -- : Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
173
|
-
I, [2016-09-20T11:11:09.244665 #4395] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-20 11:11:09 -0700
|
174
|
-
I, [2016-09-20T11:11:09.245675 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
175
|
-
I, [2016-09-20T11:11:09.245710 #4395] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
176
|
-
I, [2016-09-20T11:11:14.216358 #4395] INFO -- : Rendered inline template within layouts/application (4966.2ms)
|
177
|
-
I, [2016-09-20T11:11:14.218394 #4395] INFO -- : Completed 200 OK in 4973ms (Views: 4969.6ms | ActiveRecord: 0.0ms)
|
178
|
-
I, [2016-09-20T11:11:14.221686 #4395] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-20 11:11:14 -0700
|
179
|
-
I, [2016-09-20T11:11:14.222207 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
180
|
-
I, [2016-09-20T11:11:14.222245 #4395] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
181
|
-
I, [2016-09-20T11:11:14.374167 #4395] INFO -- : Rendered inline template within layouts/application (151.4ms)
|
182
|
-
I, [2016-09-20T11:11:14.382594 #4395] INFO -- : Completed 200 OK in 160ms (Views: 153.0ms | ActiveRecord: 0.0ms)
|
183
|
-
I, [2016-09-20T11:11:14.661926 #4395] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-20 11:11:14 -0700
|
184
|
-
I, [2016-09-20T11:11:14.662468 #4395] INFO -- : Processing by BaselineController#show as HTML
|
185
|
-
I, [2016-09-20T11:11:14.662828 #4395] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
186
|
-
I, [2016-09-20T11:11:14.663238 #4395] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
187
|
-
I, [2016-09-20T11:11:14.748921 #4395] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-20 11:11:14 -0700
|
188
|
-
I, [2016-09-20T11:11:14.749655 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
189
|
-
I, [2016-09-20T11:11:14.749693 #4395] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
190
|
-
I, [2016-09-20T11:11:14.924537 #4395] INFO -- : Rendered inline template within layouts/application (174.4ms)
|
191
|
-
I, [2016-09-20T11:11:14.925529 #4395] INFO -- : Completed 200 OK in 176ms (Views: 175.5ms | ActiveRecord: 0.0ms)
|
192
|
-
I, [2016-09-20T11:11:15.033559 #4395] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-20 11:11:15 -0700
|
193
|
-
I, [2016-09-20T11:11:15.034089 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
194
|
-
I, [2016-09-20T11:11:15.034134 #4395] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
195
|
-
I, [2016-09-20T11:11:15.185834 #4395] INFO -- : Rendered inline template within layouts/application (151.3ms)
|
196
|
-
I, [2016-09-20T11:11:15.187265 #4395] INFO -- : Completed 200 OK in 153ms (Views: 152.8ms | ActiveRecord: 0.0ms)
|
197
|
-
I, [2016-09-20T11:11:18.370558 #4395] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-20 11:11:18 -0700
|
198
|
-
I, [2016-09-20T11:11:18.371106 #4395] INFO -- : Processing by BaselineController#show as HTML
|
199
|
-
I, [2016-09-20T11:11:18.371512 #4395] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
200
|
-
I, [2016-09-20T11:11:18.372085 #4395] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
201
|
-
I, [2016-09-20T11:11:18.372908 #4395] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-20 11:11:18 -0700
|
202
|
-
I, [2016-09-20T11:11:18.373420 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
203
|
-
I, [2016-09-20T11:11:18.373462 #4395] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
204
|
-
I, [2016-09-20T11:11:27.324751 #4395] INFO -- : Rendered inline template within layouts/application (7467.6ms)
|
205
|
-
I, [2016-09-20T11:11:27.326871 #4395] INFO -- : Completed 200 OK in 8953ms (Views: 7469.6ms | ActiveRecord: 0.0ms)
|
206
|
-
I, [2016-09-20T11:11:27.330796 #4395] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-20 11:11:27 -0700
|
207
|
-
I, [2016-09-20T11:11:27.331509 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
208
|
-
I, [2016-09-20T11:11:27.331544 #4395] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
209
|
-
I, [2016-09-20T11:11:35.826981 #4395] INFO -- : Rendered inline template within layouts/application (6671.1ms)
|
210
|
-
I, [2016-09-20T11:11:35.829167 #4395] INFO -- : Completed 200 OK in 8498ms (Views: 6673.2ms | ActiveRecord: 0.0ms)
|
211
|
-
I, [2016-09-20T11:11:38.101178 #4395] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-20 11:11:38 -0700
|
212
|
-
I, [2016-09-20T11:11:38.101774 #4395] INFO -- : Processing by BaselineController#show as HTML
|
213
|
-
I, [2016-09-20T11:11:38.102190 #4395] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
214
|
-
I, [2016-09-20T11:11:38.102687 #4395] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
215
|
-
I, [2016-09-20T11:11:38.235708 #4395] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-20 11:11:38 -0700
|
216
|
-
I, [2016-09-20T11:11:38.236209 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
217
|
-
I, [2016-09-20T11:11:38.236249 #4395] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
218
|
-
I, [2016-09-20T11:11:44.222773 #4395] INFO -- : Rendered inline template within layouts/application (4555.0ms)
|
219
|
-
I, [2016-09-20T11:11:44.223735 #4395] INFO -- : Completed 200 OK in 5987ms (Views: 4556.0ms | ActiveRecord: 0.0ms)
|
220
|
-
I, [2016-09-20T11:11:44.628639 #4395] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-20 11:11:44 -0700
|
221
|
-
I, [2016-09-20T11:11:44.629132 #4395] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
222
|
-
I, [2016-09-20T11:11:44.629178 #4395] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
223
|
-
I, [2016-09-20T11:11:50.802601 #4395] INFO -- : Rendered inline template within layouts/application (4707.2ms)
|
224
|
-
I, [2016-09-20T11:11:50.804331 #4395] INFO -- : Completed 200 OK in 6175ms (Views: 4708.9ms | ActiveRecord: 0.0ms)
|
225
|
-
I, [2016-10-29T23:49:54.362385 #68323] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-29 23:49:54 -0700
|
226
|
-
I, [2016-10-29T23:49:54.380847 #68323] INFO -- : Processing by BaselineController#show as HTML
|
227
|
-
I, [2016-10-29T23:49:54.387484 #68323] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.6ms)
|
228
|
-
I, [2016-10-29T23:49:54.395202 #68323] INFO -- : Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)
|
229
|
-
I, [2016-10-29T23:49:54.397160 #68323] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-29 23:49:54 -0700
|
230
|
-
I, [2016-10-29T23:49:54.398249 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
231
|
-
I, [2016-10-29T23:49:54.398282 #68323] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
232
|
-
I, [2016-10-29T23:49:58.180602 #68323] INFO -- : Rendered inline template within layouts/application (3776.2ms)
|
233
|
-
I, [2016-10-29T23:49:58.184399 #68323] INFO -- : Completed 200 OK in 3786ms (Views: 3781.9ms | ActiveRecord: 0.0ms)
|
234
|
-
I, [2016-10-29T23:49:58.187623 #68323] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-29 23:49:58 -0700
|
235
|
-
I, [2016-10-29T23:49:58.188097 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
236
|
-
I, [2016-10-29T23:49:58.188126 #68323] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
237
|
-
I, [2016-10-29T23:49:58.383748 #68323] INFO -- : Rendered inline template within layouts/application (195.1ms)
|
238
|
-
I, [2016-10-29T23:49:58.385815 #68323] INFO -- : Completed 200 OK in 197ms (Views: 197.1ms | ActiveRecord: 0.0ms)
|
239
|
-
I, [2016-10-29T23:49:58.633320 #68323] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-29 23:49:58 -0700
|
240
|
-
I, [2016-10-29T23:49:58.633962 #68323] INFO -- : Processing by BaselineController#show as HTML
|
241
|
-
I, [2016-10-29T23:49:58.634418 #68323] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
242
|
-
I, [2016-10-29T23:49:58.634935 #68323] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
243
|
-
I, [2016-10-29T23:49:58.707851 #68323] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-29 23:49:58 -0700
|
244
|
-
I, [2016-10-29T23:49:58.708452 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
245
|
-
I, [2016-10-29T23:49:58.708501 #68323] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
246
|
-
I, [2016-10-29T23:49:58.872621 #68323] INFO -- : Rendered inline template within layouts/application (163.6ms)
|
247
|
-
I, [2016-10-29T23:49:58.873604 #68323] INFO -- : Completed 200 OK in 165ms (Views: 164.7ms | ActiveRecord: 0.0ms)
|
248
|
-
I, [2016-10-29T23:49:58.977512 #68323] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-29 23:49:58 -0700
|
249
|
-
I, [2016-10-29T23:49:58.977982 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
250
|
-
I, [2016-10-29T23:49:58.978013 #68323] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
251
|
-
I, [2016-10-29T23:49:59.148306 #68323] INFO -- : Rendered inline template within layouts/application (169.9ms)
|
252
|
-
I, [2016-10-29T23:49:59.149883 #68323] INFO -- : Completed 200 OK in 172ms (Views: 171.6ms | ActiveRecord: 0.0ms)
|
253
|
-
I, [2016-10-29T23:50:02.722173 #68323] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-29 23:50:02 -0700
|
254
|
-
I, [2016-10-29T23:50:02.724201 #68323] INFO -- : Processing by BaselineController#show as HTML
|
255
|
-
I, [2016-10-29T23:50:02.724676 #68323] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
256
|
-
I, [2016-10-29T23:50:02.725198 #68323] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
257
|
-
I, [2016-10-29T23:50:02.726950 #68323] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-29 23:50:02 -0700
|
258
|
-
I, [2016-10-29T23:50:02.727865 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
259
|
-
I, [2016-10-29T23:50:02.727927 #68323] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
260
|
-
I, [2016-10-29T23:50:11.512450 #68323] INFO -- : Rendered inline template within layouts/application (6957.0ms)
|
261
|
-
I, [2016-10-29T23:50:11.514369 #68323] INFO -- : Completed 200 OK in 8786ms (Views: 6958.8ms | ActiveRecord: 0.0ms)
|
262
|
-
I, [2016-10-29T23:50:11.518650 #68323] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-29 23:50:11 -0700
|
263
|
-
I, [2016-10-29T23:50:11.519150 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
264
|
-
I, [2016-10-29T23:50:11.519191 #68323] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
265
|
-
I, [2016-10-29T23:50:19.784025 #68323] INFO -- : Rendered inline template within layouts/application (6233.8ms)
|
266
|
-
I, [2016-10-29T23:50:19.785965 #68323] INFO -- : Completed 200 OK in 8267ms (Views: 6235.6ms | ActiveRecord: 0.0ms)
|
267
|
-
I, [2016-10-29T23:50:22.503251 #68323] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-29 23:50:22 -0700
|
268
|
-
I, [2016-10-29T23:50:22.503887 #68323] INFO -- : Processing by BaselineController#show as HTML
|
269
|
-
I, [2016-10-29T23:50:22.504465 #68323] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
270
|
-
I, [2016-10-29T23:50:22.505013 #68323] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
271
|
-
I, [2016-10-29T23:50:22.648979 #68323] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-29 23:50:22 -0700
|
272
|
-
I, [2016-10-29T23:50:22.649609 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
273
|
-
I, [2016-10-29T23:50:22.649660 #68323] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
274
|
-
I, [2016-10-29T23:50:30.855722 #68323] INFO -- : Rendered inline template within layouts/application (6512.2ms)
|
275
|
-
I, [2016-10-29T23:50:30.857456 #68323] INFO -- : Completed 200 OK in 8208ms (Views: 6513.8ms | ActiveRecord: 0.0ms)
|
276
|
-
I, [2016-10-29T23:50:31.294130 #68323] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-29 23:50:31 -0700
|
277
|
-
I, [2016-10-29T23:50:31.294652 #68323] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
278
|
-
I, [2016-10-29T23:50:31.294686 #68323] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
279
|
-
I, [2016-10-29T23:50:38.227826 #68323] INFO -- : Rendered inline template within layouts/application (5214.0ms)
|
280
|
-
I, [2016-10-29T23:50:38.229985 #68323] INFO -- : Completed 200 OK in 6935ms (Views: 5216.1ms | ActiveRecord: 0.0ms)
|
281
|
-
I, [2016-10-30T00:54:22.751657 #72487] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-30 00:54:22 -0700
|
282
|
-
I, [2016-10-30T00:54:22.763592 #72487] INFO -- : Processing by BaselineController#show as HTML
|
283
|
-
I, [2016-10-30T00:54:22.770202 #72487] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
284
|
-
I, [2016-10-30T00:54:22.777869 #72487] INFO -- : Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms)
|
285
|
-
I, [2016-10-30T00:54:22.779168 #72487] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-30 00:54:22 -0700
|
286
|
-
I, [2016-10-30T00:54:22.780188 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
287
|
-
I, [2016-10-30T00:54:22.780226 #72487] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
288
|
-
I, [2016-10-30T00:54:24.345621 #72487] INFO -- : Rendered inline template within layouts/application (1559.0ms)
|
289
|
-
I, [2016-10-30T00:54:24.347702 #72487] INFO -- : Completed 200 OK in 1567ms (Views: 1563.5ms | ActiveRecord: 0.0ms)
|
290
|
-
I, [2016-10-30T00:54:24.351122 #72487] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-30 00:54:24 -0700
|
291
|
-
I, [2016-10-30T00:54:24.351649 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
292
|
-
I, [2016-10-30T00:54:24.351681 #72487] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
293
|
-
I, [2016-10-30T00:54:24.531395 #72487] INFO -- : Rendered inline template within layouts/application (179.2ms)
|
294
|
-
I, [2016-10-30T00:54:24.533218 #72487] INFO -- : Completed 200 OK in 181ms (Views: 181.1ms | ActiveRecord: 0.0ms)
|
295
|
-
I, [2016-10-30T00:54:24.795317 #72487] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-30 00:54:24 -0700
|
296
|
-
I, [2016-10-30T00:54:24.795868 #72487] INFO -- : Processing by BaselineController#show as HTML
|
297
|
-
I, [2016-10-30T00:54:24.796234 #72487] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
298
|
-
I, [2016-10-30T00:54:24.796642 #72487] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
299
|
-
I, [2016-10-30T00:54:24.870043 #72487] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-30 00:54:24 -0700
|
300
|
-
I, [2016-10-30T00:54:24.870538 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
301
|
-
I, [2016-10-30T00:54:24.870569 #72487] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
302
|
-
I, [2016-10-30T00:54:25.026009 #72487] INFO -- : Rendered inline template within layouts/application (155.0ms)
|
303
|
-
I, [2016-10-30T00:54:25.026925 #72487] INFO -- : Completed 200 OK in 156ms (Views: 156.1ms | ActiveRecord: 0.0ms)
|
304
|
-
I, [2016-10-30T00:54:25.134389 #72487] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-30 00:54:25 -0700
|
305
|
-
I, [2016-10-30T00:54:25.134873 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
306
|
-
I, [2016-10-30T00:54:25.134905 #72487] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
307
|
-
I, [2016-10-30T00:54:25.298070 #72487] INFO -- : Rendered inline template within layouts/application (162.8ms)
|
308
|
-
I, [2016-10-30T00:54:25.299722 #72487] INFO -- : Completed 200 OK in 165ms (Views: 164.5ms | ActiveRecord: 0.0ms)
|
309
|
-
I, [2016-10-30T00:54:28.651445 #72487] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-30 00:54:28 -0700
|
310
|
-
I, [2016-10-30T00:54:28.651950 #72487] INFO -- : Processing by BaselineController#show as HTML
|
311
|
-
I, [2016-10-30T00:54:28.652333 #72487] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
312
|
-
I, [2016-10-30T00:54:28.652756 #72487] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
313
|
-
I, [2016-10-30T00:54:28.653554 #72487] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-30 00:54:28 -0700
|
314
|
-
I, [2016-10-30T00:54:28.653915 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
315
|
-
I, [2016-10-30T00:54:28.653944 #72487] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
316
|
-
I, [2016-10-30T00:54:34.830068 #72487] INFO -- : Rendered inline template within layouts/application (4576.3ms)
|
317
|
-
I, [2016-10-30T00:54:34.832079 #72487] INFO -- : Completed 200 OK in 6178ms (Views: 4578.2ms | ActiveRecord: 0.0ms)
|
318
|
-
I, [2016-10-30T00:54:34.835862 #72487] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-30 00:54:34 -0700
|
319
|
-
I, [2016-10-30T00:54:34.836323 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
320
|
-
I, [2016-10-30T00:54:34.836355 #72487] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
321
|
-
I, [2016-10-30T00:54:41.661426 #72487] INFO -- : Rendered inline template within layouts/application (4953.2ms)
|
322
|
-
I, [2016-10-30T00:54:41.663455 #72487] INFO -- : Completed 200 OK in 6827ms (Views: 4955.1ms | ActiveRecord: 0.0ms)
|
323
|
-
I, [2016-10-30T00:54:44.023022 #72487] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-10-30 00:54:44 -0700
|
324
|
-
I, [2016-10-30T00:54:44.023638 #72487] INFO -- : Processing by BaselineController#show as HTML
|
325
|
-
I, [2016-10-30T00:54:44.024159 #72487] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
326
|
-
I, [2016-10-30T00:54:44.024739 #72487] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
327
|
-
I, [2016-10-30T00:54:44.171429 #72487] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-10-30 00:54:44 -0700
|
328
|
-
I, [2016-10-30T00:54:44.172028 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
329
|
-
I, [2016-10-30T00:54:44.172065 #72487] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
330
|
-
I, [2016-10-30T00:54:50.314328 #72487] INFO -- : Rendered inline template within layouts/application (4660.7ms)
|
331
|
-
I, [2016-10-30T00:54:50.315375 #72487] INFO -- : Completed 200 OK in 6143ms (Views: 4661.9ms | ActiveRecord: 0.0ms)
|
332
|
-
I, [2016-10-30T00:54:50.747096 #72487] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-10-30 00:54:50 -0700
|
333
|
-
I, [2016-10-30T00:54:50.747688 #72487] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
334
|
-
I, [2016-10-30T00:54:50.747736 #72487] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
335
|
-
I, [2016-10-30T00:54:57.255036 #72487] INFO -- : Rendered inline template within layouts/application (4906.7ms)
|
336
|
-
I, [2016-10-30T00:54:57.256676 #72487] INFO -- : Completed 200 OK in 6509ms (Views: 4908.3ms | ActiveRecord: 0.0ms)
|
337
|
-
I, [2016-11-04T14:26:01.023011 #33176] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-11-04 14:26:01 -0700
|
338
|
-
I, [2016-11-04T14:26:01.037152 #33176] INFO -- : Processing by BaselineController#show as HTML
|
339
|
-
I, [2016-11-04T14:26:01.044659 #33176] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
340
|
-
I, [2016-11-04T14:26:01.051659 #33176] INFO -- : Completed 200 OK in 14ms (Views: 14.1ms | ActiveRecord: 0.0ms)
|
341
|
-
I, [2016-11-04T14:26:01.054928 #33176] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-11-04 14:26:01 -0700
|
342
|
-
I, [2016-11-04T14:26:01.056223 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
343
|
-
I, [2016-11-04T14:26:01.056265 #33176] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
344
|
-
I, [2016-11-04T14:26:02.533755 #33176] INFO -- : Rendered inline template within layouts/application (1472.3ms)
|
345
|
-
I, [2016-11-04T14:26:02.536156 #33176] INFO -- : Completed 200 OK in 1480ms (Views: 1477.3ms | ActiveRecord: 0.0ms)
|
346
|
-
I, [2016-11-04T14:26:02.539657 #33176] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-11-04 14:26:02 -0700
|
347
|
-
I, [2016-11-04T14:26:02.540346 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
348
|
-
I, [2016-11-04T14:26:02.540382 #33176] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
349
|
-
I, [2016-11-04T14:26:02.898415 #33176] INFO -- : Rendered inline template within layouts/application (357.1ms)
|
350
|
-
I, [2016-11-04T14:26:02.899834 #33176] INFO -- : Completed 200 OK in 359ms (Views: 359.0ms | ActiveRecord: 0.0ms)
|
351
|
-
I, [2016-11-04T14:26:03.123811 #33176] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-11-04 14:26:03 -0700
|
352
|
-
I, [2016-11-04T14:26:03.124455 #33176] INFO -- : Processing by BaselineController#show as HTML
|
353
|
-
I, [2016-11-04T14:26:03.124832 #33176] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
354
|
-
I, [2016-11-04T14:26:03.125392 #33176] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
355
|
-
I, [2016-11-04T14:26:03.193300 #33176] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-11-04 14:26:03 -0700
|
356
|
-
I, [2016-11-04T14:26:03.193796 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
357
|
-
I, [2016-11-04T14:26:03.193828 #33176] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
358
|
-
I, [2016-11-04T14:26:03.393249 #33176] INFO -- : Rendered inline template within layouts/application (199.0ms)
|
359
|
-
I, [2016-11-04T14:26:03.394013 #33176] INFO -- : Completed 200 OK in 200ms (Views: 199.9ms | ActiveRecord: 0.0ms)
|
360
|
-
I, [2016-11-04T14:26:03.473757 #33176] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-11-04 14:26:03 -0700
|
361
|
-
I, [2016-11-04T14:26:03.474371 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
362
|
-
I, [2016-11-04T14:26:03.474409 #33176] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
363
|
-
I, [2016-11-04T14:26:03.670317 #33176] INFO -- : Rendered inline template within layouts/application (195.5ms)
|
364
|
-
I, [2016-11-04T14:26:03.671044 #33176] INFO -- : Completed 200 OK in 197ms (Views: 196.3ms | ActiveRecord: 0.0ms)
|
365
|
-
I, [2016-11-04T14:26:07.409683 #33176] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-11-04 14:26:07 -0700
|
366
|
-
I, [2016-11-04T14:26:07.410324 #33176] INFO -- : Processing by BaselineController#show as HTML
|
367
|
-
I, [2016-11-04T14:26:07.410705 #33176] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
368
|
-
I, [2016-11-04T14:26:07.411154 #33176] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
369
|
-
I, [2016-11-04T14:26:07.412192 #33176] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-11-04 14:26:07 -0700
|
370
|
-
I, [2016-11-04T14:26:09.775058 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
371
|
-
I, [2016-11-04T14:26:09.775117 #33176] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
372
|
-
I, [2016-11-04T14:26:19.754950 #33176] INFO -- : Rendered inline template within layouts/application (7510.0ms)
|
373
|
-
I, [2016-11-04T14:26:19.756618 #33176] INFO -- : Completed 200 OK in 9981ms (Views: 7511.8ms | ActiveRecord: 0.0ms)
|
374
|
-
I, [2016-11-04T14:26:19.760259 #33176] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-11-04 14:26:19 -0700
|
375
|
-
I, [2016-11-04T14:26:21.871391 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
376
|
-
I, [2016-11-04T14:26:21.871463 #33176] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
377
|
-
I, [2016-11-04T14:26:31.559809 #33176] INFO -- : Rendered inline template within layouts/application (7949.0ms)
|
378
|
-
I, [2016-11-04T14:26:31.560950 #33176] INFO -- : Completed 200 OK in 9689ms (Views: 7950.3ms | ActiveRecord: 0.0ms)
|
379
|
-
I, [2016-11-04T14:26:36.741458 #33176] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-11-04 14:26:36 -0700
|
380
|
-
I, [2016-11-04T14:26:36.742048 #33176] INFO -- : Processing by BaselineController#show as HTML
|
381
|
-
I, [2016-11-04T14:26:36.742402 #33176] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
382
|
-
I, [2016-11-04T14:26:36.742845 #33176] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
383
|
-
I, [2016-11-04T14:26:36.885105 #33176] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-11-04 14:26:36 -0700
|
384
|
-
I, [2016-11-04T14:26:39.958111 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
385
|
-
I, [2016-11-04T14:26:39.958187 #33176] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
386
|
-
I, [2016-11-04T14:26:49.226907 #33176] INFO -- : Rendered inline template within layouts/application (7301.4ms)
|
387
|
-
I, [2016-11-04T14:26:49.227823 #33176] INFO -- : Completed 200 OK in 9270ms (Views: 7302.6ms | ActiveRecord: 0.0ms)
|
388
|
-
I, [2016-11-04T14:26:49.694364 #33176] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-11-04 14:26:49 -0700
|
389
|
-
I, [2016-11-04T14:26:51.740173 #33176] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
390
|
-
I, [2016-11-04T14:26:51.740236 #33176] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
391
|
-
I, [2016-11-04T14:27:02.514913 #33176] INFO -- : Rendered inline template within layouts/application (8493.2ms)
|
392
|
-
I, [2016-11-04T14:27:02.515947 #33176] INFO -- : Completed 200 OK in 10776ms (Views: 8494.3ms | ActiveRecord: 0.0ms)
|
393
|
-
I, [2017-03-08T21:26:42.038660 #8168] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 21:26:42 -0800
|
394
|
-
I, [2017-03-08T21:26:42.058367 #8168] INFO -- : Processing by BaselineController#show as HTML
|
395
|
-
I, [2017-03-08T21:26:42.066647 #8168] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
396
|
-
I, [2017-03-08T21:26:42.074361 #8168] INFO -- : Completed 200 OK in 15ms (Views: 15.3ms | ActiveRecord: 0.0ms)
|
397
|
-
I, [2017-03-08T21:26:42.076634 #8168] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 21:26:42 -0800
|
398
|
-
I, [2017-03-08T21:26:42.077381 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
399
|
-
I, [2017-03-08T21:26:42.077440 #8168] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
400
|
-
I, [2017-03-08T21:26:43.391775 #8168] INFO -- : Rendered inline template within layouts/application (1309.0ms)
|
401
|
-
I, [2017-03-08T21:26:43.395576 #8168] INFO -- : Completed 200 OK in 1318ms (Views: 1314.6ms | ActiveRecord: 0.0ms)
|
402
|
-
I, [2017-03-08T21:26:43.399057 #8168] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 21:26:43 -0800
|
403
|
-
I, [2017-03-08T21:26:43.399540 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
404
|
-
I, [2017-03-08T21:26:43.399568 #8168] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
405
|
-
I, [2017-03-08T21:26:43.605272 #8168] INFO -- : Rendered inline template within layouts/application (205.2ms)
|
406
|
-
I, [2017-03-08T21:26:43.607470 #8168] INFO -- : Completed 200 OK in 208ms (Views: 207.5ms | ActiveRecord: 0.0ms)
|
407
|
-
I, [2017-03-08T21:26:43.769832 #8168] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 21:26:43 -0800
|
408
|
-
I, [2017-03-08T21:26:43.770561 #8168] INFO -- : Processing by BaselineController#show as HTML
|
409
|
-
I, [2017-03-08T21:26:43.771063 #8168] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
410
|
-
I, [2017-03-08T21:26:43.772226 #8168] INFO -- : Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
411
|
-
I, [2017-03-08T21:26:43.842965 #8168] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 21:26:43 -0800
|
412
|
-
I, [2017-03-08T21:26:43.843533 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
413
|
-
I, [2017-03-08T21:26:43.843575 #8168] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
414
|
-
I, [2017-03-08T21:26:44.015414 #8168] INFO -- : Rendered inline template within layouts/application (171.3ms)
|
415
|
-
I, [2017-03-08T21:26:44.016602 #8168] INFO -- : Completed 200 OK in 173ms (Views: 172.7ms | ActiveRecord: 0.0ms)
|
416
|
-
I, [2017-03-08T21:26:44.079338 #8168] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 21:26:44 -0800
|
417
|
-
I, [2017-03-08T21:26:44.079835 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
418
|
-
I, [2017-03-08T21:26:44.079866 #8168] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
419
|
-
I, [2017-03-08T21:26:44.216008 #8168] INFO -- : Rendered inline template within layouts/application (135.8ms)
|
420
|
-
I, [2017-03-08T21:26:44.217761 #8168] INFO -- : Completed 200 OK in 138ms (Views: 137.6ms | ActiveRecord: 0.0ms)
|
421
|
-
I, [2017-03-08T21:26:47.059366 #8168] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 21:26:47 -0800
|
422
|
-
I, [2017-03-08T21:26:47.059896 #8168] INFO -- : Processing by BaselineController#show as HTML
|
423
|
-
I, [2017-03-08T21:26:47.060719 #8168] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.5ms)
|
424
|
-
I, [2017-03-08T21:26:47.061149 #8168] INFO -- : Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
425
|
-
I, [2017-03-08T21:26:47.063290 #8168] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 21:26:47 -0800
|
426
|
-
I, [2017-03-08T21:26:48.774180 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
427
|
-
I, [2017-03-08T21:26:48.774282 #8168] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
428
|
-
I, [2017-03-08T21:26:50.269667 #8168] INFO -- : Rendered inline template within layouts/application (1494.5ms)
|
429
|
-
I, [2017-03-08T21:26:50.271597 #8168] INFO -- : Completed 200 OK in 1497ms (Views: 1496.5ms | ActiveRecord: 0.0ms)
|
430
|
-
I, [2017-03-08T21:26:50.274870 #8168] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 21:26:50 -0800
|
431
|
-
I, [2017-03-08T21:26:51.743544 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
432
|
-
I, [2017-03-08T21:26:51.743610 #8168] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
433
|
-
I, [2017-03-08T21:26:53.277802 #8168] INFO -- : Rendered inline template within layouts/application (1533.5ms)
|
434
|
-
I, [2017-03-08T21:26:53.279723 #8168] INFO -- : Completed 200 OK in 1536ms (Views: 1535.6ms | ActiveRecord: 0.0ms)
|
435
|
-
I, [2017-03-08T21:26:56.642325 #8168] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 21:26:56 -0800
|
436
|
-
I, [2017-03-08T21:26:56.643001 #8168] INFO -- : Processing by BaselineController#show as HTML
|
437
|
-
I, [2017-03-08T21:26:56.643427 #8168] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
438
|
-
I, [2017-03-08T21:26:56.643882 #8168] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
439
|
-
I, [2017-03-08T21:26:56.765558 #8168] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 21:26:56 -0800
|
440
|
-
I, [2017-03-08T21:26:57.988911 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
441
|
-
I, [2017-03-08T21:26:57.988969 #8168] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
442
|
-
I, [2017-03-08T21:26:59.335620 #8168] INFO -- : Rendered inline template within layouts/application (1345.8ms)
|
443
|
-
I, [2017-03-08T21:26:59.338925 #8168] INFO -- : Completed 200 OK in 1350ms (Views: 1349.3ms | ActiveRecord: 0.0ms)
|
444
|
-
I, [2017-03-08T21:26:59.494039 #8168] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 21:26:59 -0800
|
445
|
-
I, [2017-03-08T21:27:00.902077 #8168] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
446
|
-
I, [2017-03-08T21:27:00.902152 #8168] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
447
|
-
I, [2017-03-08T21:27:02.248228 #8168] INFO -- : Rendered inline template within layouts/application (1345.4ms)
|
448
|
-
I, [2017-03-08T21:27:02.249696 #8168] INFO -- : Completed 200 OK in 1347ms (Views: 1346.9ms | ActiveRecord: 0.0ms)
|
449
|
-
I, [2017-03-08T22:47:55.604794 #12879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 22:47:55 -0800
|
450
|
-
I, [2017-03-08T22:47:55.627359 #12879] INFO -- : Processing by BaselineController#show as HTML
|
451
|
-
I, [2017-03-08T22:47:55.636452 #12879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
452
|
-
I, [2017-03-08T22:47:55.645366 #12879] INFO -- : Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms)
|
453
|
-
I, [2017-03-08T22:47:55.647562 #12879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 22:47:55 -0800
|
454
|
-
I, [2017-03-08T22:47:55.648393 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
455
|
-
I, [2017-03-08T22:47:55.648430 #12879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
456
|
-
I, [2017-03-08T22:47:56.969401 #12879] INFO -- : Rendered inline template within layouts/application (1315.5ms)
|
457
|
-
I, [2017-03-08T22:47:56.971830 #12879] INFO -- : Completed 200 OK in 1323ms (Views: 1320.1ms | ActiveRecord: 0.0ms)
|
458
|
-
I, [2017-03-08T22:47:56.975085 #12879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 22:47:56 -0800
|
459
|
-
I, [2017-03-08T22:47:56.975522 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
460
|
-
I, [2017-03-08T22:47:56.975551 #12879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
461
|
-
I, [2017-03-08T22:47:57.213552 #12879] INFO -- : Rendered inline template within layouts/application (237.5ms)
|
462
|
-
I, [2017-03-08T22:47:57.216279 #12879] INFO -- : Completed 200 OK in 241ms (Views: 240.4ms | ActiveRecord: 0.0ms)
|
463
|
-
I, [2017-03-08T22:47:57.413044 #12879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 22:47:57 -0800
|
464
|
-
I, [2017-03-08T22:47:57.413647 #12879] INFO -- : Processing by BaselineController#show as HTML
|
465
|
-
I, [2017-03-08T22:47:57.414041 #12879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
466
|
-
I, [2017-03-08T22:47:57.414479 #12879] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
467
|
-
I, [2017-03-08T22:47:57.490869 #12879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 22:47:57 -0800
|
468
|
-
I, [2017-03-08T22:47:57.492158 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
469
|
-
I, [2017-03-08T22:47:57.492212 #12879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
470
|
-
I, [2017-03-08T22:47:57.671113 #12879] INFO -- : Rendered inline template within layouts/application (178.4ms)
|
471
|
-
I, [2017-03-08T22:47:57.672356 #12879] INFO -- : Completed 200 OK in 180ms (Views: 179.8ms | ActiveRecord: 0.0ms)
|
472
|
-
I, [2017-03-08T22:47:57.741005 #12879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 22:47:57 -0800
|
473
|
-
I, [2017-03-08T22:47:57.741595 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
474
|
-
I, [2017-03-08T22:47:57.741638 #12879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
475
|
-
I, [2017-03-08T22:47:57.905622 #12879] INFO -- : Rendered inline template within layouts/application (163.5ms)
|
476
|
-
I, [2017-03-08T22:47:57.907333 #12879] INFO -- : Completed 200 OK in 166ms (Views: 165.4ms | ActiveRecord: 0.0ms)
|
477
|
-
I, [2017-03-08T22:48:00.907282 #12879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 22:48:00 -0800
|
478
|
-
I, [2017-03-08T22:48:00.907978 #12879] INFO -- : Processing by BaselineController#show as HTML
|
479
|
-
I, [2017-03-08T22:48:00.908348 #12879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
480
|
-
I, [2017-03-08T22:48:00.908805 #12879] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
481
|
-
I, [2017-03-08T22:48:00.909637 #12879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 22:48:00 -0800
|
482
|
-
I, [2017-03-08T22:48:02.466430 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
483
|
-
I, [2017-03-08T22:48:02.466518 #12879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
484
|
-
I, [2017-03-08T22:48:03.804547 #12879] INFO -- : Rendered inline template within layouts/application (1337.1ms)
|
485
|
-
I, [2017-03-08T22:48:03.805936 #12879] INFO -- : Completed 200 OK in 1339ms (Views: 1338.7ms | ActiveRecord: 0.0ms)
|
486
|
-
I, [2017-03-08T22:48:03.809881 #12879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 22:48:03 -0800
|
487
|
-
I, [2017-03-08T22:48:05.415922 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
488
|
-
I, [2017-03-08T22:48:05.415984 #12879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
489
|
-
I, [2017-03-08T22:48:06.844113 #12879] INFO -- : Rendered inline template within layouts/application (1427.4ms)
|
490
|
-
I, [2017-03-08T22:48:06.848130 #12879] INFO -- : Completed 200 OK in 1432ms (Views: 1431.5ms | ActiveRecord: 0.0ms)
|
491
|
-
I, [2017-03-08T22:48:10.211759 #12879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-08 22:48:10 -0800
|
492
|
-
I, [2017-03-08T22:48:10.214223 #12879] INFO -- : Processing by BaselineController#show as HTML
|
493
|
-
I, [2017-03-08T22:48:10.214707 #12879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
494
|
-
I, [2017-03-08T22:48:10.215191 #12879] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
495
|
-
I, [2017-03-08T22:48:10.344813 #12879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-08 22:48:10 -0800
|
496
|
-
I, [2017-03-08T22:48:11.586890 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
497
|
-
I, [2017-03-08T22:48:11.586961 #12879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
498
|
-
I, [2017-03-08T22:48:12.946246 #12879] INFO -- : Rendered inline template within layouts/application (1358.5ms)
|
499
|
-
I, [2017-03-08T22:48:12.947624 #12879] INFO -- : Completed 200 OK in 1361ms (Views: 1360.0ms | ActiveRecord: 0.0ms)
|
500
|
-
I, [2017-03-08T22:48:13.171778 #12879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-08 22:48:13 -0800
|
501
|
-
I, [2017-03-08T22:48:14.430945 #12879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
502
|
-
I, [2017-03-08T22:48:14.431052 #12879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
503
|
-
I, [2017-03-08T22:48:15.613526 #12879] INFO -- : Rendered inline template within layouts/application (1181.9ms)
|
504
|
-
I, [2017-03-08T22:48:15.615307 #12879] INFO -- : Completed 200 OK in 1184ms (Views: 1183.7ms | ActiveRecord: 0.0ms)
|
505
|
-
I, [2017-03-10T13:23:42.014551 #16174] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 13:23:42 -0800
|
506
|
-
I, [2017-03-10T13:23:42.037505 #16174] INFO -- : Processing by BaselineController#show as HTML
|
507
|
-
I, [2017-03-10T13:23:42.046640 #16174] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
508
|
-
I, [2017-03-10T13:23:42.054611 #16174] INFO -- : Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms)
|
509
|
-
I, [2017-03-10T13:23:42.055856 #16174] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 13:23:42 -0800
|
510
|
-
I, [2017-03-10T13:23:42.056808 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
511
|
-
I, [2017-03-10T13:23:42.056867 #16174] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
512
|
-
I, [2017-03-10T13:23:43.543505 #16174] INFO -- : Rendered inline template within layouts/application (1480.9ms)
|
513
|
-
I, [2017-03-10T13:23:43.546669 #16174] INFO -- : Completed 200 OK in 1490ms (Views: 1486.0ms | ActiveRecord: 0.0ms)
|
514
|
-
I, [2017-03-10T13:23:43.550769 #16174] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 13:23:43 -0800
|
515
|
-
I, [2017-03-10T13:23:43.551620 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
516
|
-
I, [2017-03-10T13:23:43.551665 #16174] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
517
|
-
I, [2017-03-10T13:23:43.802305 #16174] INFO -- : Rendered inline template within layouts/application (250.0ms)
|
518
|
-
I, [2017-03-10T13:23:43.804745 #16174] INFO -- : Completed 200 OK in 253ms (Views: 252.6ms | ActiveRecord: 0.0ms)
|
519
|
-
I, [2017-03-10T13:23:44.035817 #16174] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 13:23:44 -0800
|
520
|
-
I, [2017-03-10T13:23:44.036476 #16174] INFO -- : Processing by BaselineController#show as HTML
|
521
|
-
I, [2017-03-10T13:23:44.036910 #16174] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
522
|
-
I, [2017-03-10T13:23:44.037390 #16174] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
523
|
-
I, [2017-03-10T13:23:44.112845 #16174] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 13:23:44 -0800
|
524
|
-
I, [2017-03-10T13:23:44.113725 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
525
|
-
I, [2017-03-10T13:23:44.113773 #16174] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
526
|
-
I, [2017-03-10T13:23:44.302649 #16174] INFO -- : Rendered inline template within layouts/application (188.3ms)
|
527
|
-
I, [2017-03-10T13:23:44.304034 #16174] INFO -- : Completed 200 OK in 190ms (Views: 189.9ms | ActiveRecord: 0.0ms)
|
528
|
-
I, [2017-03-10T13:23:44.378118 #16174] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 13:23:44 -0800
|
529
|
-
I, [2017-03-10T13:23:44.378820 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
530
|
-
I, [2017-03-10T13:23:44.378863 #16174] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
531
|
-
I, [2017-03-10T13:23:44.581981 #16174] INFO -- : Rendered inline template within layouts/application (202.6ms)
|
532
|
-
I, [2017-03-10T13:23:44.583938 #16174] INFO -- : Completed 200 OK in 205ms (Views: 204.7ms | ActiveRecord: 0.0ms)
|
533
|
-
I, [2017-03-10T13:23:47.787806 #16174] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 13:23:47 -0800
|
534
|
-
I, [2017-03-10T13:23:47.788761 #16174] INFO -- : Processing by BaselineController#show as HTML
|
535
|
-
I, [2017-03-10T13:23:47.789230 #16174] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
536
|
-
I, [2017-03-10T13:23:47.789770 #16174] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
537
|
-
I, [2017-03-10T13:23:47.790851 #16174] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 13:23:47 -0800
|
538
|
-
I, [2017-03-10T13:23:49.500337 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
539
|
-
I, [2017-03-10T13:23:49.500409 #16174] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
540
|
-
I, [2017-03-10T13:23:51.070477 #16174] INFO -- : Rendered inline template within layouts/application (1569.4ms)
|
541
|
-
I, [2017-03-10T13:23:51.071823 #16174] INFO -- : Completed 200 OK in 1571ms (Views: 1570.8ms | ActiveRecord: 0.0ms)
|
542
|
-
I, [2017-03-10T13:23:51.076167 #16174] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 13:23:51 -0800
|
543
|
-
I, [2017-03-10T13:23:52.654243 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
544
|
-
I, [2017-03-10T13:23:52.654311 #16174] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
545
|
-
I, [2017-03-10T13:23:54.015080 #16174] INFO -- : Rendered inline template within layouts/application (1360.1ms)
|
546
|
-
I, [2017-03-10T13:23:54.016991 #16174] INFO -- : Completed 200 OK in 1363ms (Views: 1362.1ms | ActiveRecord: 0.0ms)
|
547
|
-
I, [2017-03-10T13:23:57.458042 #16174] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 13:23:57 -0800
|
548
|
-
I, [2017-03-10T13:23:57.458688 #16174] INFO -- : Processing by BaselineController#show as HTML
|
549
|
-
I, [2017-03-10T13:23:57.459115 #16174] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
550
|
-
I, [2017-03-10T13:23:57.459593 #16174] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
551
|
-
I, [2017-03-10T13:23:57.606069 #16174] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 13:23:57 -0800
|
552
|
-
I, [2017-03-10T13:23:58.920081 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
553
|
-
I, [2017-03-10T13:23:58.920169 #16174] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
554
|
-
I, [2017-03-10T13:24:00.325984 #16174] INFO -- : Rendered inline template within layouts/application (1404.9ms)
|
555
|
-
I, [2017-03-10T13:24:00.327492 #16174] INFO -- : Completed 200 OK in 1407ms (Views: 1406.4ms | ActiveRecord: 0.0ms)
|
556
|
-
I, [2017-03-10T13:24:00.682986 #16174] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 13:24:00 -0800
|
557
|
-
I, [2017-03-10T13:24:02.170060 #16174] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
558
|
-
I, [2017-03-10T13:24:02.170139 #16174] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
559
|
-
I, [2017-03-10T13:24:03.496945 #16174] INFO -- : Rendered inline template within layouts/application (1325.8ms)
|
560
|
-
I, [2017-03-10T13:24:03.499932 #16174] INFO -- : Completed 200 OK in 1330ms (Views: 1328.9ms | ActiveRecord: 0.0ms)
|
561
|
-
I, [2017-03-10T14:49:19.553910 #18879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:49:19 -0800
|
562
|
-
I, [2017-03-10T14:49:19.577433 #18879] INFO -- : Processing by BaselineController#show as HTML
|
563
|
-
I, [2017-03-10T14:49:19.587747 #18879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
564
|
-
I, [2017-03-10T14:49:19.598151 #18879] INFO -- : Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms)
|
565
|
-
I, [2017-03-10T14:49:19.599822 #18879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:49:19 -0800
|
566
|
-
I, [2017-03-10T14:49:19.600896 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
567
|
-
I, [2017-03-10T14:49:19.600967 #18879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
568
|
-
I, [2017-03-10T14:49:20.968602 #18879] INFO -- : Rendered inline template within layouts/application (1359.8ms)
|
569
|
-
I, [2017-03-10T14:49:20.972070 #18879] INFO -- : Completed 200 OK in 1371ms (Views: 1366.1ms | ActiveRecord: 0.0ms)
|
570
|
-
I, [2017-03-10T14:49:20.975946 #18879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:49:20 -0800
|
571
|
-
I, [2017-03-10T14:49:20.976710 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
572
|
-
I, [2017-03-10T14:49:20.976757 #18879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
573
|
-
I, [2017-03-10T14:49:21.214464 #18879] INFO -- : Rendered inline template within layouts/application (236.7ms)
|
574
|
-
I, [2017-03-10T14:49:21.217344 #18879] INFO -- : Completed 200 OK in 240ms (Views: 239.7ms | ActiveRecord: 0.0ms)
|
575
|
-
I, [2017-03-10T14:49:21.424744 #18879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:49:21 -0800
|
576
|
-
I, [2017-03-10T14:49:21.425392 #18879] INFO -- : Processing by BaselineController#show as HTML
|
577
|
-
I, [2017-03-10T14:49:21.425807 #18879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
578
|
-
I, [2017-03-10T14:49:21.426287 #18879] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
579
|
-
I, [2017-03-10T14:49:21.481376 #18879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:49:21 -0800
|
580
|
-
I, [2017-03-10T14:49:21.482147 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
581
|
-
I, [2017-03-10T14:49:21.482209 #18879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
582
|
-
I, [2017-03-10T14:49:21.677494 #18879] INFO -- : Rendered inline template within layouts/application (194.6ms)
|
583
|
-
I, [2017-03-10T14:49:21.679048 #18879] INFO -- : Completed 200 OK in 197ms (Views: 196.3ms | ActiveRecord: 0.0ms)
|
584
|
-
I, [2017-03-10T14:49:21.758700 #18879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:49:21 -0800
|
585
|
-
I, [2017-03-10T14:49:21.759295 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
586
|
-
I, [2017-03-10T14:49:21.759334 #18879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
587
|
-
I, [2017-03-10T14:49:21.945048 #18879] INFO -- : Rendered inline template within layouts/application (185.3ms)
|
588
|
-
I, [2017-03-10T14:49:21.947185 #18879] INFO -- : Completed 200 OK in 188ms (Views: 187.5ms | ActiveRecord: 0.0ms)
|
589
|
-
I, [2017-03-10T14:49:25.211224 #18879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:49:25 -0800
|
590
|
-
I, [2017-03-10T14:49:25.212913 #18879] INFO -- : Processing by BaselineController#show as HTML
|
591
|
-
I, [2017-03-10T14:49:25.213797 #18879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
592
|
-
I, [2017-03-10T14:49:25.214435 #18879] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
593
|
-
I, [2017-03-10T14:49:25.215538 #18879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:49:25 -0800
|
594
|
-
I, [2017-03-10T14:49:27.081235 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
595
|
-
I, [2017-03-10T14:49:27.081358 #18879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
596
|
-
I, [2017-03-10T14:49:29.187210 #18879] INFO -- : Rendered inline template within layouts/application (2105.1ms)
|
597
|
-
I, [2017-03-10T14:49:29.188469 #18879] INFO -- : Completed 200 OK in 2107ms (Views: 2106.5ms | ActiveRecord: 0.0ms)
|
598
|
-
I, [2017-03-10T14:49:29.192475 #18879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:49:29 -0800
|
599
|
-
I, [2017-03-10T14:49:31.136015 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
600
|
-
I, [2017-03-10T14:49:31.136084 #18879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
601
|
-
I, [2017-03-10T14:49:32.690904 #18879] INFO -- : Rendered inline template within layouts/application (1553.9ms)
|
602
|
-
I, [2017-03-10T14:49:32.692608 #18879] INFO -- : Completed 200 OK in 1556ms (Views: 1555.9ms | ActiveRecord: 0.0ms)
|
603
|
-
I, [2017-03-10T14:49:36.224517 #18879] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:49:36 -0800
|
604
|
-
I, [2017-03-10T14:49:36.225178 #18879] INFO -- : Processing by BaselineController#show as HTML
|
605
|
-
I, [2017-03-10T14:49:36.225592 #18879] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
606
|
-
I, [2017-03-10T14:49:36.226061 #18879] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
607
|
-
I, [2017-03-10T14:49:36.373442 #18879] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:49:36 -0800
|
608
|
-
I, [2017-03-10T14:49:38.065435 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
609
|
-
I, [2017-03-10T14:49:38.066989 #18879] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
610
|
-
I, [2017-03-10T14:49:39.293263 #18879] INFO -- : Rendered inline template within layouts/application (1225.6ms)
|
611
|
-
I, [2017-03-10T14:49:39.294864 #18879] INFO -- : Completed 200 OK in 1228ms (Views: 1227.3ms | ActiveRecord: 0.0ms)
|
612
|
-
I, [2017-03-10T14:49:39.565919 #18879] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:49:39 -0800
|
613
|
-
I, [2017-03-10T14:49:41.229677 #18879] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
614
|
-
I, [2017-03-10T14:49:41.229742 #18879] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
615
|
-
I, [2017-03-10T14:49:42.748246 #18879] INFO -- : Rendered inline template within layouts/application (1517.8ms)
|
616
|
-
I, [2017-03-10T14:49:42.751011 #18879] INFO -- : Completed 200 OK in 1521ms (Views: 1520.7ms | ActiveRecord: 0.0ms)
|
617
|
-
I, [2017-03-10T14:50:09.856972 #19029] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:50:09 -0800
|
618
|
-
I, [2017-03-10T14:50:09.878670 #19029] INFO -- : Processing by BaselineController#show as HTML
|
619
|
-
I, [2017-03-10T14:50:09.886689 #19029] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
620
|
-
I, [2017-03-10T14:50:09.887255 #19029] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
621
|
-
I, [2017-03-10T14:50:09.899322 #19029] INFO -- : Completed 200 OK in 20ms (Views: 17.6ms)
|
622
|
-
I, [2017-03-10T14:50:09.901711 #19029] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:50:09 -0800
|
623
|
-
I, [2017-03-10T14:50:09.902558 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
624
|
-
I, [2017-03-10T14:50:09.902596 #19029] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
625
|
-
I, [2017-03-10T14:50:09.907874 #19029] INFO -- : Rendering inline template within layouts/application
|
626
|
-
I, [2017-03-10T14:50:11.250926 #19029] INFO -- : Rendered inline template within layouts/application (1342.9ms)
|
627
|
-
I, [2017-03-10T14:50:11.253699 #19029] INFO -- : Completed 200 OK in 1351ms (Views: 1346.4ms)
|
628
|
-
I, [2017-03-10T14:50:11.259185 #19029] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:50:11 -0800
|
629
|
-
I, [2017-03-10T14:50:11.259793 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
630
|
-
I, [2017-03-10T14:50:11.259829 #19029] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
631
|
-
I, [2017-03-10T14:50:11.260483 #19029] INFO -- : Rendering inline template within layouts/application
|
632
|
-
I, [2017-03-10T14:50:11.498832 #19029] INFO -- : Rendered inline template within layouts/application (238.3ms)
|
633
|
-
I, [2017-03-10T14:50:11.501735 #19029] INFO -- : Completed 200 OK in 242ms (Views: 241.4ms)
|
634
|
-
I, [2017-03-10T14:50:11.730780 #19029] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:50:11 -0800
|
635
|
-
I, [2017-03-10T14:50:11.731450 #19029] INFO -- : Processing by BaselineController#show as HTML
|
636
|
-
I, [2017-03-10T14:50:11.731905 #19029] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
637
|
-
I, [2017-03-10T14:50:11.732004 #19029] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
638
|
-
I, [2017-03-10T14:50:11.732495 #19029] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
|
639
|
-
I, [2017-03-10T14:50:11.793177 #19029] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:50:11 -0800
|
640
|
-
I, [2017-03-10T14:50:11.794013 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
641
|
-
I, [2017-03-10T14:50:11.794061 #19029] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
642
|
-
I, [2017-03-10T14:50:11.794682 #19029] INFO -- : Rendering inline template within layouts/application
|
643
|
-
I, [2017-03-10T14:50:12.050531 #19029] INFO -- : Rendered inline template within layouts/application (255.5ms)
|
644
|
-
I, [2017-03-10T14:50:12.054717 #19029] INFO -- : Completed 200 OK in 261ms (Views: 260.2ms)
|
645
|
-
I, [2017-03-10T14:50:12.200153 #19029] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:50:12 -0800
|
646
|
-
I, [2017-03-10T14:50:12.200717 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
647
|
-
I, [2017-03-10T14:50:12.200756 #19029] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
648
|
-
I, [2017-03-10T14:50:12.201335 #19029] INFO -- : Rendering inline template within layouts/application
|
649
|
-
I, [2017-03-10T14:50:12.379803 #19029] INFO -- : Rendered inline template within layouts/application (178.4ms)
|
650
|
-
I, [2017-03-10T14:50:12.382137 #19029] INFO -- : Completed 200 OK in 181ms (Views: 181.0ms)
|
651
|
-
I, [2017-03-10T14:50:16.127394 #19029] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:50:16 -0800
|
652
|
-
I, [2017-03-10T14:50:16.128142 #19029] INFO -- : Processing by BaselineController#show as HTML
|
653
|
-
I, [2017-03-10T14:50:16.128773 #19029] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
654
|
-
I, [2017-03-10T14:50:16.128936 #19029] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
655
|
-
I, [2017-03-10T14:50:16.129548 #19029] INFO -- : Completed 200 OK in 1ms (Views: 1.1ms)
|
656
|
-
I, [2017-03-10T14:50:16.131059 #19029] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:50:16 -0800
|
657
|
-
I, [2017-03-10T14:50:17.835470 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
658
|
-
I, [2017-03-10T14:50:17.835541 #19029] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
659
|
-
I, [2017-03-10T14:50:17.836347 #19029] INFO -- : Rendering inline template within layouts/application
|
660
|
-
I, [2017-03-10T14:50:19.235505 #19029] INFO -- : Rendered inline template within layouts/application (1399.0ms)
|
661
|
-
I, [2017-03-10T14:50:19.236668 #19029] INFO -- : Completed 200 OK in 1401ms (Views: 1400.4ms)
|
662
|
-
I, [2017-03-10T14:50:19.243163 #19029] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:50:19 -0800
|
663
|
-
I, [2017-03-10T14:50:20.895013 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
664
|
-
I, [2017-03-10T14:50:20.895084 #19029] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
665
|
-
I, [2017-03-10T14:50:20.896051 #19029] INFO -- : Rendering inline template within layouts/application
|
666
|
-
I, [2017-03-10T14:50:22.306287 #19029] INFO -- : Rendered inline template within layouts/application (1410.1ms)
|
667
|
-
I, [2017-03-10T14:50:22.307272 #19029] INFO -- : Completed 200 OK in 1412ms (Views: 1411.4ms)
|
668
|
-
I, [2017-03-10T14:50:26.686768 #19029] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:50:26 -0800
|
669
|
-
I, [2017-03-10T14:50:26.687398 #19029] INFO -- : Processing by BaselineController#show as HTML
|
670
|
-
I, [2017-03-10T14:50:26.687843 #19029] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
671
|
-
I, [2017-03-10T14:50:26.687937 #19029] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
672
|
-
I, [2017-03-10T14:50:26.688406 #19029] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
|
673
|
-
I, [2017-03-10T14:50:26.830210 #19029] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:50:26 -0800
|
674
|
-
I, [2017-03-10T14:50:28.460411 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
675
|
-
I, [2017-03-10T14:50:28.460487 #19029] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
676
|
-
I, [2017-03-10T14:50:28.461519 #19029] INFO -- : Rendering inline template within layouts/application
|
677
|
-
I, [2017-03-10T14:50:30.126452 #19029] INFO -- : Rendered inline template within layouts/application (1664.8ms)
|
678
|
-
I, [2017-03-10T14:50:30.127806 #19029] INFO -- : Completed 200 OK in 1667ms (Views: 1666.4ms)
|
679
|
-
I, [2017-03-10T14:50:30.477009 #19029] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:50:30 -0800
|
680
|
-
I, [2017-03-10T14:50:32.420000 #19029] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
681
|
-
I, [2017-03-10T14:50:32.420093 #19029] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
682
|
-
I, [2017-03-10T14:50:32.421215 #19029] INFO -- : Rendering inline template within layouts/application
|
683
|
-
I, [2017-03-10T14:50:34.437150 #19029] INFO -- : Rendered inline template within layouts/application (2015.8ms)
|
684
|
-
I, [2017-03-10T14:50:34.438563 #19029] INFO -- : Completed 200 OK in 2018ms (Views: 2017.5ms)
|
685
|
-
I, [2017-03-10T14:54:09.735213 #19264] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:54:09 -0800
|
686
|
-
I, [2017-03-10T14:54:09.755085 #19264] INFO -- : Processing by BaselineController#show as HTML
|
687
|
-
I, [2017-03-10T14:54:09.764696 #19264] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.5ms)
|
688
|
-
I, [2017-03-10T14:54:09.775560 #19264] INFO -- : Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
|
689
|
-
I, [2017-03-10T14:54:09.777044 #19264] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:54:09 -0800
|
690
|
-
I, [2017-03-10T14:54:09.778234 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
691
|
-
I, [2017-03-10T14:54:09.778292 #19264] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
692
|
-
I, [2017-03-10T14:54:11.207740 #19264] INFO -- : Rendered inline template within layouts/application (1421.3ms)
|
693
|
-
I, [2017-03-10T14:54:11.210775 #19264] INFO -- : Completed 200 OK in 1432ms (Views: 1428.3ms | ActiveRecord: 0.0ms)
|
694
|
-
I, [2017-03-10T14:54:11.214998 #19264] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:54:11 -0800
|
695
|
-
I, [2017-03-10T14:54:11.215613 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
696
|
-
I, [2017-03-10T14:54:11.215653 #19264] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
697
|
-
I, [2017-03-10T14:54:11.447910 #19264] INFO -- : Rendered inline template within layouts/application (231.6ms)
|
698
|
-
I, [2017-03-10T14:54:11.450268 #19264] INFO -- : Completed 200 OK in 235ms (Views: 234.1ms | ActiveRecord: 0.0ms)
|
699
|
-
I, [2017-03-10T14:54:11.659372 #19264] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:54:11 -0800
|
700
|
-
I, [2017-03-10T14:54:11.660046 #19264] INFO -- : Processing by BaselineController#show as HTML
|
701
|
-
I, [2017-03-10T14:54:11.660494 #19264] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
702
|
-
I, [2017-03-10T14:54:11.661005 #19264] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
703
|
-
I, [2017-03-10T14:54:11.715998 #19264] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:54:11 -0800
|
704
|
-
I, [2017-03-10T14:54:11.718338 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
705
|
-
I, [2017-03-10T14:54:11.718388 #19264] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
706
|
-
I, [2017-03-10T14:54:11.903008 #19264] INFO -- : Rendered inline template within layouts/application (184.1ms)
|
707
|
-
I, [2017-03-10T14:54:11.904427 #19264] INFO -- : Completed 200 OK in 186ms (Views: 185.7ms | ActiveRecord: 0.0ms)
|
708
|
-
I, [2017-03-10T14:54:11.975424 #19264] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:54:11 -0800
|
709
|
-
I, [2017-03-10T14:54:11.976316 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
710
|
-
I, [2017-03-10T14:54:11.976389 #19264] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
711
|
-
I, [2017-03-10T14:54:12.164611 #19264] INFO -- : Rendered inline template within layouts/application (187.3ms)
|
712
|
-
I, [2017-03-10T14:54:12.166983 #19264] INFO -- : Completed 200 OK in 190ms (Views: 190.1ms | ActiveRecord: 0.0ms)
|
713
|
-
I, [2017-03-10T14:54:15.322848 #19264] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:54:15 -0800
|
714
|
-
I, [2017-03-10T14:54:15.323478 #19264] INFO -- : Processing by BaselineController#show as HTML
|
715
|
-
I, [2017-03-10T14:54:15.323882 #19264] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
716
|
-
I, [2017-03-10T14:54:15.324591 #19264] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
717
|
-
I, [2017-03-10T14:54:15.325881 #19264] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:54:15 -0800
|
718
|
-
I, [2017-03-10T14:54:17.043024 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
719
|
-
I, [2017-03-10T14:54:17.043097 #19264] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
720
|
-
I, [2017-03-10T14:54:18.410342 #19264] INFO -- : Rendered inline template within layouts/application (1366.3ms)
|
721
|
-
I, [2017-03-10T14:54:18.411709 #19264] INFO -- : Completed 200 OK in 1369ms (Views: 1367.9ms | ActiveRecord: 0.0ms)
|
722
|
-
I, [2017-03-10T14:54:18.415692 #19264] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:54:18 -0800
|
723
|
-
I, [2017-03-10T14:54:20.251681 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
724
|
-
I, [2017-03-10T14:54:20.251992 #19264] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
725
|
-
I, [2017-03-10T14:54:22.308040 #19264] INFO -- : Rendered inline template within layouts/application (2043.3ms)
|
726
|
-
I, [2017-03-10T14:54:22.310352 #19264] INFO -- : Completed 200 OK in 2058ms (Views: 2054.6ms | ActiveRecord: 0.0ms)
|
727
|
-
I, [2017-03-10T14:54:26.327233 #19264] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:54:26 -0800
|
728
|
-
I, [2017-03-10T14:54:26.328067 #19264] INFO -- : Processing by BaselineController#show as HTML
|
729
|
-
I, [2017-03-10T14:54:26.328593 #19264] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
730
|
-
I, [2017-03-10T14:54:26.329243 #19264] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
731
|
-
I, [2017-03-10T14:54:26.478132 #19264] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:54:26 -0800
|
732
|
-
I, [2017-03-10T14:54:28.134660 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
733
|
-
I, [2017-03-10T14:54:28.136420 #19264] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
734
|
-
I, [2017-03-10T14:54:29.866308 #19264] INFO -- : Rendered inline template within layouts/application (1728.7ms)
|
735
|
-
I, [2017-03-10T14:54:29.867766 #19264] INFO -- : Completed 200 OK in 1731ms (Views: 1730.4ms | ActiveRecord: 0.0ms)
|
736
|
-
I, [2017-03-10T14:54:30.185651 #19264] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:54:30 -0800
|
737
|
-
I, [2017-03-10T14:54:31.893505 #19264] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
738
|
-
I, [2017-03-10T14:54:31.893564 #19264] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
739
|
-
I, [2017-03-10T14:54:33.919626 #19264] INFO -- : Rendered inline template within layouts/application (2025.4ms)
|
740
|
-
I, [2017-03-10T14:54:33.921839 #19264] INFO -- : Completed 200 OK in 2028ms (Views: 2027.7ms | ActiveRecord: 0.0ms)
|
741
|
-
I, [2017-03-10T14:55:01.052071 #19328] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:55:01 -0800
|
742
|
-
I, [2017-03-10T14:55:01.077601 #19328] INFO -- : Processing by BaselineController#show as HTML
|
743
|
-
I, [2017-03-10T14:55:01.086816 #19328] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
744
|
-
I, [2017-03-10T14:55:01.087476 #19328] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.5ms)
|
745
|
-
I, [2017-03-10T14:55:01.098917 #19328] INFO -- : Completed 200 OK in 21ms (Views: 18.8ms)
|
746
|
-
I, [2017-03-10T14:55:01.101167 #19328] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:55:01 -0800
|
747
|
-
I, [2017-03-10T14:55:01.102220 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
748
|
-
I, [2017-03-10T14:55:01.102279 #19328] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
749
|
-
I, [2017-03-10T14:55:01.108367 #19328] INFO -- : Rendering inline template within layouts/application
|
750
|
-
I, [2017-03-10T14:55:03.596104 #19328] INFO -- : Rendered inline template within layouts/application (2487.6ms)
|
751
|
-
I, [2017-03-10T14:55:03.598852 #19328] INFO -- : Completed 200 OK in 2496ms (Views: 2490.8ms)
|
752
|
-
I, [2017-03-10T14:55:03.604630 #19328] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:55:03 -0800
|
753
|
-
I, [2017-03-10T14:55:03.605558 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
754
|
-
I, [2017-03-10T14:55:03.605657 #19328] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
755
|
-
I, [2017-03-10T14:55:03.606681 #19328] INFO -- : Rendering inline template within layouts/application
|
756
|
-
I, [2017-03-10T14:55:03.804718 #19328] INFO -- : Rendered inline template within layouts/application (197.9ms)
|
757
|
-
I, [2017-03-10T14:55:03.807287 #19328] INFO -- : Completed 200 OK in 201ms (Views: 200.7ms)
|
758
|
-
I, [2017-03-10T14:55:03.990940 #19328] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:55:03 -0800
|
759
|
-
I, [2017-03-10T14:55:03.991440 #19328] INFO -- : Processing by BaselineController#show as HTML
|
760
|
-
I, [2017-03-10T14:55:03.991793 #19328] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
761
|
-
I, [2017-03-10T14:55:03.991868 #19328] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
762
|
-
I, [2017-03-10T14:55:03.992238 #19328] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms)
|
763
|
-
I, [2017-03-10T14:55:04.050172 #19328] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:55:04 -0800
|
764
|
-
I, [2017-03-10T14:55:04.050644 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
765
|
-
I, [2017-03-10T14:55:04.050673 #19328] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
766
|
-
I, [2017-03-10T14:55:04.051092 #19328] INFO -- : Rendering inline template within layouts/application
|
767
|
-
I, [2017-03-10T14:55:04.184242 #19328] INFO -- : Rendered inline template within layouts/application (133.1ms)
|
768
|
-
I, [2017-03-10T14:55:04.185493 #19328] INFO -- : Completed 200 OK in 135ms (Views: 134.5ms)
|
769
|
-
I, [2017-03-10T14:55:04.254298 #19328] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:55:04 -0800
|
770
|
-
I, [2017-03-10T14:55:04.254752 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
771
|
-
I, [2017-03-10T14:55:04.254781 #19328] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
772
|
-
I, [2017-03-10T14:55:04.255303 #19328] INFO -- : Rendering inline template within layouts/application
|
773
|
-
I, [2017-03-10T14:55:04.384050 #19328] INFO -- : Rendered inline template within layouts/application (128.7ms)
|
774
|
-
I, [2017-03-10T14:55:04.386451 #19328] INFO -- : Completed 200 OK in 132ms (Views: 131.3ms)
|
775
|
-
I, [2017-03-10T14:55:07.610673 #19328] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:55:07 -0800
|
776
|
-
I, [2017-03-10T14:55:07.611308 #19328] INFO -- : Processing by BaselineController#show as HTML
|
777
|
-
I, [2017-03-10T14:55:07.611773 #19328] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
778
|
-
I, [2017-03-10T14:55:07.611866 #19328] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
779
|
-
I, [2017-03-10T14:55:07.612369 #19328] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
|
780
|
-
I, [2017-03-10T14:55:07.613427 #19328] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:55:07 -0800
|
781
|
-
I, [2017-03-10T14:55:09.829593 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
782
|
-
I, [2017-03-10T14:55:09.831328 #19328] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
783
|
-
I, [2017-03-10T14:55:09.832318 #19328] INFO -- : Rendering inline template within layouts/application
|
784
|
-
I, [2017-03-10T14:55:12.241661 #19328] INFO -- : Rendered inline template within layouts/application (2409.3ms)
|
785
|
-
I, [2017-03-10T14:55:12.242895 #19328] INFO -- : Completed 200 OK in 2411ms (Views: 2410.7ms)
|
786
|
-
I, [2017-03-10T14:55:12.247590 #19328] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:55:12 -0800
|
787
|
-
I, [2017-03-10T14:55:13.782167 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
788
|
-
I, [2017-03-10T14:55:13.782241 #19328] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
789
|
-
I, [2017-03-10T14:55:13.783110 #19328] INFO -- : Rendering inline template within layouts/application
|
790
|
-
I, [2017-03-10T14:55:15.401392 #19328] INFO -- : Rendered inline template within layouts/application (1618.2ms)
|
791
|
-
I, [2017-03-10T14:55:15.403745 #19328] INFO -- : Completed 200 OK in 1621ms (Views: 1620.7ms)
|
792
|
-
I, [2017-03-10T14:55:18.807607 #19328] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-10 14:55:18 -0800
|
793
|
-
I, [2017-03-10T14:55:18.808236 #19328] INFO -- : Processing by BaselineController#show as HTML
|
794
|
-
I, [2017-03-10T14:55:18.808773 #19328] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
795
|
-
I, [2017-03-10T14:55:18.808877 #19328] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
796
|
-
I, [2017-03-10T14:55:18.809362 #19328] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms)
|
797
|
-
I, [2017-03-10T14:55:18.974240 #19328] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-10 14:55:18 -0800
|
798
|
-
I, [2017-03-10T14:55:20.424381 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
799
|
-
I, [2017-03-10T14:55:20.424447 #19328] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
800
|
-
I, [2017-03-10T14:55:20.425246 #19328] INFO -- : Rendering inline template within layouts/application
|
801
|
-
I, [2017-03-10T14:55:21.814826 #19328] INFO -- : Rendered inline template within layouts/application (1389.5ms)
|
802
|
-
I, [2017-03-10T14:55:21.816219 #19328] INFO -- : Completed 200 OK in 1392ms (Views: 1391.1ms)
|
803
|
-
I, [2017-03-10T14:55:22.043595 #19328] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-10 14:55:22 -0800
|
804
|
-
I, [2017-03-10T14:55:23.642865 #19328] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
805
|
-
I, [2017-03-10T14:55:23.642932 #19328] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
806
|
-
I, [2017-03-10T14:55:23.643737 #19328] INFO -- : Rendering inline template within layouts/application
|
807
|
-
I, [2017-03-10T14:55:25.137713 #19328] INFO -- : Rendered inline template within layouts/application (1493.9ms)
|
808
|
-
I, [2017-03-10T14:55:25.139526 #19328] INFO -- : Completed 200 OK in 1496ms (Views: 1495.9ms)
|
809
|
-
I, [2017-03-27T10:24:36.865108 #2809] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:24:36 -0700
|
810
|
-
I, [2017-03-27T10:24:36.884240 #2809] INFO -- : Processing by BaselineController#show as HTML
|
811
|
-
I, [2017-03-27T10:24:36.890258 #2809] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
812
|
-
I, [2017-03-27T10:24:36.897152 #2809] INFO -- : Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
813
|
-
I, [2017-03-27T10:24:36.898420 #2809] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:24:36 -0700
|
814
|
-
I, [2017-03-27T10:24:36.899405 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
815
|
-
I, [2017-03-27T10:24:36.899465 #2809] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
816
|
-
I, [2017-03-27T10:24:37.951974 #2809] INFO -- : Rendered inline template within layouts/application (1046.9ms)
|
817
|
-
I, [2017-03-27T10:24:37.954433 #2809] INFO -- : Completed 200 OK in 1055ms (Views: 1052.3ms | ActiveRecord: 0.0ms)
|
818
|
-
I, [2017-03-27T10:24:37.957800 #2809] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:24:37 -0700
|
819
|
-
I, [2017-03-27T10:24:37.958317 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
820
|
-
I, [2017-03-27T10:24:37.958351 #2809] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
821
|
-
I, [2017-03-27T10:24:38.185418 #2809] INFO -- : Rendered inline template within layouts/application (226.6ms)
|
822
|
-
I, [2017-03-27T10:24:38.187793 #2809] INFO -- : Completed 200 OK in 229ms (Views: 229.0ms | ActiveRecord: 0.0ms)
|
823
|
-
I, [2017-03-27T10:24:38.366334 #2809] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:24:38 -0700
|
824
|
-
I, [2017-03-27T10:24:38.366968 #2809] INFO -- : Processing by BaselineController#show as HTML
|
825
|
-
I, [2017-03-27T10:24:38.367393 #2809] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
826
|
-
I, [2017-03-27T10:24:38.367880 #2809] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
827
|
-
I, [2017-03-27T10:24:38.422444 #2809] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:24:38 -0700
|
828
|
-
I, [2017-03-27T10:24:38.423331 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
829
|
-
I, [2017-03-27T10:24:38.423381 #2809] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
830
|
-
I, [2017-03-27T10:24:38.590907 #2809] INFO -- : Rendered inline template within layouts/application (167.0ms)
|
831
|
-
I, [2017-03-27T10:24:38.592142 #2809] INFO -- : Completed 200 OK in 169ms (Views: 168.4ms | ActiveRecord: 0.0ms)
|
832
|
-
I, [2017-03-27T10:24:38.663419 #2809] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:24:38 -0700
|
833
|
-
I, [2017-03-27T10:24:38.663989 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
834
|
-
I, [2017-03-27T10:24:38.664033 #2809] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
835
|
-
I, [2017-03-27T10:24:38.855292 #2809] INFO -- : Rendered inline template within layouts/application (190.8ms)
|
836
|
-
I, [2017-03-27T10:24:38.857101 #2809] INFO -- : Completed 200 OK in 193ms (Views: 192.7ms | ActiveRecord: 0.0ms)
|
837
|
-
I, [2017-03-27T10:24:42.071201 #2809] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:24:42 -0700
|
838
|
-
I, [2017-03-27T10:24:42.071777 #2809] INFO -- : Processing by BaselineController#show as HTML
|
839
|
-
I, [2017-03-27T10:24:42.072164 #2809] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
840
|
-
I, [2017-03-27T10:24:42.072642 #2809] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
841
|
-
I, [2017-03-27T10:24:42.073499 #2809] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:24:42 -0700
|
842
|
-
I, [2017-03-27T10:24:43.837289 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
843
|
-
I, [2017-03-27T10:24:43.837354 #2809] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
844
|
-
I, [2017-03-27T10:24:45.458659 #2809] INFO -- : Rendered inline template within layouts/application (1620.6ms)
|
845
|
-
I, [2017-03-27T10:24:45.459783 #2809] INFO -- : Completed 200 OK in 1622ms (Views: 1621.8ms | ActiveRecord: 0.0ms)
|
846
|
-
I, [2017-03-27T10:24:45.464375 #2809] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:24:45 -0700
|
847
|
-
I, [2017-03-27T10:24:47.408698 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
848
|
-
I, [2017-03-27T10:24:47.408755 #2809] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
849
|
-
I, [2017-03-27T10:24:48.626780 #2809] INFO -- : Rendered inline template within layouts/application (1217.4ms)
|
850
|
-
I, [2017-03-27T10:24:48.627627 #2809] INFO -- : Completed 200 OK in 1219ms (Views: 1218.3ms | ActiveRecord: 0.0ms)
|
851
|
-
I, [2017-03-27T10:24:52.067527 #2809] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:24:52 -0700
|
852
|
-
I, [2017-03-27T10:24:52.068122 #2809] INFO -- : Processing by BaselineController#show as HTML
|
853
|
-
I, [2017-03-27T10:24:52.068550 #2809] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
854
|
-
I, [2017-03-27T10:24:52.069077 #2809] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
855
|
-
I, [2017-03-27T10:24:52.190386 #2809] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:24:52 -0700
|
856
|
-
I, [2017-03-27T10:24:53.491789 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
857
|
-
I, [2017-03-27T10:24:53.491848 #2809] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
858
|
-
I, [2017-03-27T10:24:54.601430 #2809] INFO -- : Rendered inline template within layouts/application (1109.0ms)
|
859
|
-
I, [2017-03-27T10:24:54.602761 #2809] INFO -- : Completed 200 OK in 1111ms (Views: 1110.4ms | ActiveRecord: 0.0ms)
|
860
|
-
I, [2017-03-27T10:24:54.861097 #2809] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:24:54 -0700
|
861
|
-
I, [2017-03-27T10:24:56.339758 #2809] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
862
|
-
I, [2017-03-27T10:24:56.339940 #2809] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
863
|
-
I, [2017-03-27T10:24:57.564984 #2809] INFO -- : Rendered inline template within layouts/application (1223.8ms)
|
864
|
-
I, [2017-03-27T10:24:57.566783 #2809] INFO -- : Completed 200 OK in 1227ms (Views: 1225.8ms | ActiveRecord: 0.0ms)
|
865
|
-
I, [2017-03-27T10:26:45.131317 #2929] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:26:45 -0700
|
866
|
-
I, [2017-03-27T10:26:45.144107 #2929] INFO -- : Processing by BaselineController#show as HTML
|
867
|
-
I, [2017-03-27T10:26:45.151704 #2929] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
868
|
-
I, [2017-03-27T10:26:45.159966 #2929] INFO -- : Completed 200 OK in 16ms (Views: 15.5ms | ActiveRecord: 0.0ms)
|
869
|
-
I, [2017-03-27T10:26:45.161183 #2929] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:26:45 -0700
|
870
|
-
I, [2017-03-27T10:26:45.161949 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
871
|
-
I, [2017-03-27T10:26:45.161990 #2929] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
872
|
-
I, [2017-03-27T10:26:46.396012 #2929] INFO -- : Rendered inline template within layouts/application (1229.6ms)
|
873
|
-
I, [2017-03-27T10:26:46.398532 #2929] INFO -- : Completed 200 OK in 1236ms (Views: 1233.9ms | ActiveRecord: 0.0ms)
|
874
|
-
I, [2017-03-27T10:26:46.402068 #2929] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:26:46 -0700
|
875
|
-
I, [2017-03-27T10:26:46.402595 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
876
|
-
I, [2017-03-27T10:26:46.402628 #2929] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
877
|
-
I, [2017-03-27T10:26:46.643947 #2929] INFO -- : Rendered inline template within layouts/application (240.8ms)
|
878
|
-
I, [2017-03-27T10:26:46.647403 #2929] INFO -- : Completed 200 OK in 245ms (Views: 244.3ms | ActiveRecord: 0.0ms)
|
879
|
-
I, [2017-03-27T10:26:46.850468 #2929] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:26:46 -0700
|
880
|
-
I, [2017-03-27T10:26:46.851142 #2929] INFO -- : Processing by BaselineController#show as HTML
|
881
|
-
I, [2017-03-27T10:26:46.851562 #2929] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
882
|
-
I, [2017-03-27T10:26:46.852026 #2929] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
883
|
-
I, [2017-03-27T10:26:46.902820 #2929] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:26:46 -0700
|
884
|
-
I, [2017-03-27T10:26:46.903392 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
885
|
-
I, [2017-03-27T10:26:46.903434 #2929] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
886
|
-
I, [2017-03-27T10:26:47.107365 #2929] INFO -- : Rendered inline template within layouts/application (203.5ms)
|
887
|
-
I, [2017-03-27T10:26:47.108716 #2929] INFO -- : Completed 200 OK in 205ms (Views: 204.9ms | ActiveRecord: 0.0ms)
|
888
|
-
I, [2017-03-27T10:26:47.184156 #2929] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:26:47 -0700
|
889
|
-
I, [2017-03-27T10:26:47.184807 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
890
|
-
I, [2017-03-27T10:26:47.184851 #2929] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
891
|
-
I, [2017-03-27T10:26:47.392103 #2929] INFO -- : Rendered inline template within layouts/application (206.8ms)
|
892
|
-
I, [2017-03-27T10:26:47.394360 #2929] INFO -- : Completed 200 OK in 209ms (Views: 209.1ms | ActiveRecord: 0.0ms)
|
893
|
-
I, [2017-03-27T10:26:50.806451 #2929] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:26:50 -0700
|
894
|
-
I, [2017-03-27T10:26:50.807050 #2929] INFO -- : Processing by BaselineController#show as HTML
|
895
|
-
I, [2017-03-27T10:26:50.807475 #2929] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
896
|
-
I, [2017-03-27T10:26:50.807965 #2929] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
897
|
-
I, [2017-03-27T10:26:50.808941 #2929] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:26:50 -0700
|
898
|
-
I, [2017-03-27T10:26:52.336151 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
899
|
-
I, [2017-03-27T10:26:52.336218 #2929] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
900
|
-
I, [2017-03-27T10:26:53.845153 #2929] INFO -- : Rendered inline template within layouts/application (1508.2ms)
|
901
|
-
I, [2017-03-27T10:26:53.846684 #2929] INFO -- : Completed 200 OK in 1510ms (Views: 1509.9ms | ActiveRecord: 0.0ms)
|
902
|
-
I, [2017-03-27T10:26:53.850354 #2929] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:26:53 -0700
|
903
|
-
I, [2017-03-27T10:26:55.432558 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
904
|
-
I, [2017-03-27T10:26:55.432685 #2929] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
905
|
-
I, [2017-03-27T10:26:56.826206 #2929] INFO -- : Rendered inline template within layouts/application (1392.9ms)
|
906
|
-
I, [2017-03-27T10:26:56.828837 #2929] INFO -- : Completed 200 OK in 1396ms (Views: 1395.6ms | ActiveRecord: 0.0ms)
|
907
|
-
I, [2017-03-27T10:27:00.254967 #2929] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:27:00 -0700
|
908
|
-
I, [2017-03-27T10:27:00.255562 #2929] INFO -- : Processing by BaselineController#show as HTML
|
909
|
-
I, [2017-03-27T10:27:00.255968 #2929] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
910
|
-
I, [2017-03-27T10:27:00.256491 #2929] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
911
|
-
I, [2017-03-27T10:27:00.402994 #2929] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:27:00 -0700
|
912
|
-
I, [2017-03-27T10:27:01.715331 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
913
|
-
I, [2017-03-27T10:27:01.715395 #2929] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
914
|
-
I, [2017-03-27T10:27:02.962732 #2929] INFO -- : Rendered inline template within layouts/application (1246.6ms)
|
915
|
-
I, [2017-03-27T10:27:02.964086 #2929] INFO -- : Completed 200 OK in 1249ms (Views: 1248.1ms | ActiveRecord: 0.0ms)
|
916
|
-
I, [2017-03-27T10:27:03.202944 #2929] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:27:03 -0700
|
917
|
-
I, [2017-03-27T10:27:04.631999 #2929] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
918
|
-
I, [2017-03-27T10:27:04.632066 #2929] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
919
|
-
I, [2017-03-27T10:27:06.100804 #2929] INFO -- : Rendered inline template within layouts/application (1468.1ms)
|
920
|
-
I, [2017-03-27T10:27:06.102058 #2929] INFO -- : Completed 200 OK in 1470ms (Views: 1469.4ms | ActiveRecord: 0.0ms)
|
921
|
-
I, [2017-03-27T10:27:26.516218 #2989] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:27:26 -0700
|
922
|
-
I, [2017-03-27T10:27:26.528426 #2989] INFO -- : Processing by BaselineController#show as HTML
|
923
|
-
I, [2017-03-27T10:27:26.533870 #2989] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
924
|
-
I, [2017-03-27T10:27:26.534397 #2989] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
925
|
-
I, [2017-03-27T10:27:26.545410 #2989] INFO -- : Completed 200 OK in 17ms (Views: 15.4ms)
|
926
|
-
I, [2017-03-27T10:27:26.546867 #2989] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:27:26 -0700
|
927
|
-
I, [2017-03-27T10:27:26.547747 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
928
|
-
I, [2017-03-27T10:27:26.547790 #2989] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
929
|
-
I, [2017-03-27T10:27:26.551491 #2989] INFO -- : Rendering inline template within layouts/application
|
930
|
-
I, [2017-03-27T10:27:27.904467 #2989] INFO -- : Rendered inline template within layouts/application (1352.9ms)
|
931
|
-
I, [2017-03-27T10:27:27.907950 #2989] INFO -- : Completed 200 OK in 1360ms (Views: 1356.7ms)
|
932
|
-
I, [2017-03-27T10:27:27.916349 #2989] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:27:27 -0700
|
933
|
-
I, [2017-03-27T10:27:27.917088 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
934
|
-
I, [2017-03-27T10:27:27.917138 #2989] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
935
|
-
I, [2017-03-27T10:27:27.917893 #2989] INFO -- : Rendering inline template within layouts/application
|
936
|
-
I, [2017-03-27T10:27:28.141907 #2989] INFO -- : Rendered inline template within layouts/application (223.9ms)
|
937
|
-
I, [2017-03-27T10:27:28.144671 #2989] INFO -- : Completed 200 OK in 227ms (Views: 227.0ms)
|
938
|
-
I, [2017-03-27T10:27:28.353789 #2989] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:27:28 -0700
|
939
|
-
I, [2017-03-27T10:27:28.354410 #2989] INFO -- : Processing by BaselineController#show as HTML
|
940
|
-
I, [2017-03-27T10:27:28.354921 #2989] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
941
|
-
I, [2017-03-27T10:27:28.355125 #2989] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
942
|
-
I, [2017-03-27T10:27:28.356430 #2989] INFO -- : Completed 200 OK in 2ms (Views: 1.6ms)
|
943
|
-
I, [2017-03-27T10:27:28.424228 #2989] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:27:28 -0700
|
944
|
-
I, [2017-03-27T10:27:28.424839 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
945
|
-
I, [2017-03-27T10:27:28.424881 #2989] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
946
|
-
I, [2017-03-27T10:27:28.425406 #2989] INFO -- : Rendering inline template within layouts/application
|
947
|
-
I, [2017-03-27T10:27:28.613949 #2989] INFO -- : Rendered inline template within layouts/application (188.4ms)
|
948
|
-
I, [2017-03-27T10:27:28.615259 #2989] INFO -- : Completed 200 OK in 190ms (Views: 190.0ms)
|
949
|
-
I, [2017-03-27T10:27:28.697445 #2989] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:27:28 -0700
|
950
|
-
I, [2017-03-27T10:27:28.698000 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
951
|
-
I, [2017-03-27T10:27:28.698041 #2989] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
952
|
-
I, [2017-03-27T10:27:28.698999 #2989] INFO -- : Rendering inline template within layouts/application
|
953
|
-
I, [2017-03-27T10:27:28.863945 #2989] INFO -- : Rendered inline template within layouts/application (164.8ms)
|
954
|
-
I, [2017-03-27T10:27:28.866338 #2989] INFO -- : Completed 200 OK in 168ms (Views: 167.8ms)
|
955
|
-
I, [2017-03-27T10:27:32.157260 #2989] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:27:32 -0700
|
956
|
-
I, [2017-03-27T10:27:32.157992 #2989] INFO -- : Processing by BaselineController#show as HTML
|
957
|
-
I, [2017-03-27T10:27:32.158675 #2989] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
958
|
-
I, [2017-03-27T10:27:32.158785 #2989] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
959
|
-
I, [2017-03-27T10:27:32.159423 #2989] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms)
|
960
|
-
I, [2017-03-27T10:27:32.160522 #2989] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:27:32 -0700
|
961
|
-
I, [2017-03-27T10:27:33.721350 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
962
|
-
I, [2017-03-27T10:27:33.721409 #2989] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
963
|
-
I, [2017-03-27T10:27:33.722085 #2989] INFO -- : Rendering inline template within layouts/application
|
964
|
-
I, [2017-03-27T10:27:35.100677 #2989] INFO -- : Rendered inline template within layouts/application (1378.5ms)
|
965
|
-
I, [2017-03-27T10:27:35.101925 #2989] INFO -- : Completed 200 OK in 1380ms (Views: 1379.9ms)
|
966
|
-
I, [2017-03-27T10:27:35.106079 #2989] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:27:35 -0700
|
967
|
-
I, [2017-03-27T10:27:36.702817 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
968
|
-
I, [2017-03-27T10:27:36.702893 #2989] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
969
|
-
I, [2017-03-27T10:27:36.703458 #2989] INFO -- : Rendering inline template within layouts/application
|
970
|
-
I, [2017-03-27T10:27:38.155454 #2989] INFO -- : Rendered inline template within layouts/application (1451.9ms)
|
971
|
-
I, [2017-03-27T10:27:38.156688 #2989] INFO -- : Completed 200 OK in 1454ms (Views: 1453.3ms)
|
972
|
-
I, [2017-03-27T10:27:41.884284 #2989] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:27:41 -0700
|
973
|
-
I, [2017-03-27T10:27:41.884914 #2989] INFO -- : Processing by BaselineController#show as HTML
|
974
|
-
I, [2017-03-27T10:27:41.885358 #2989] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
975
|
-
I, [2017-03-27T10:27:41.885455 #2989] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
976
|
-
I, [2017-03-27T10:27:41.885949 #2989] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
|
977
|
-
I, [2017-03-27T10:27:42.021421 #2989] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:27:42 -0700
|
978
|
-
I, [2017-03-27T10:27:43.724904 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
979
|
-
I, [2017-03-27T10:27:43.724979 #2989] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
980
|
-
I, [2017-03-27T10:27:43.725732 #2989] INFO -- : Rendering inline template within layouts/application
|
981
|
-
I, [2017-03-27T10:27:45.099378 #2989] INFO -- : Rendered inline template within layouts/application (1373.6ms)
|
982
|
-
I, [2017-03-27T10:27:45.100507 #2989] INFO -- : Completed 200 OK in 1375ms (Views: 1374.9ms)
|
983
|
-
I, [2017-03-27T10:27:45.290278 #2989] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:27:45 -0700
|
984
|
-
I, [2017-03-27T10:27:46.951671 #2989] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
985
|
-
I, [2017-03-27T10:27:46.951758 #2989] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
986
|
-
I, [2017-03-27T10:27:46.952450 #2989] INFO -- : Rendering inline template within layouts/application
|
987
|
-
I, [2017-03-27T10:27:48.283095 #2989] INFO -- : Rendered inline template within layouts/application (1330.6ms)
|
988
|
-
I, [2017-03-27T10:27:48.284834 #2989] INFO -- : Completed 200 OK in 1333ms (Views: 1332.5ms)
|
989
|
-
I, [2017-03-27T10:37:16.306128 #7476] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:16 -0700
|
990
|
-
I, [2017-03-27T10:37:16.320858 #7476] INFO -- : Processing by BaselineController#show as HTML
|
991
|
-
I, [2017-03-27T10:37:16.330065 #7476] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.8ms)
|
992
|
-
I, [2017-03-27T10:37:16.339293 #7476] INFO -- : Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
|
993
|
-
I, [2017-03-27T10:37:16.340520 #7476] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:16 -0700
|
994
|
-
I, [2017-03-27T10:37:16.341899 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
995
|
-
I, [2017-03-27T10:37:16.341951 #7476] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
996
|
-
I, [2017-03-27T10:37:17.488795 #7476] INFO -- : Rendered inline template within layouts/application (1141.9ms)
|
997
|
-
I, [2017-03-27T10:37:17.491441 #7476] INFO -- : Completed 200 OK in 1149ms (Views: 1146.8ms | ActiveRecord: 0.0ms)
|
998
|
-
I, [2017-03-27T10:37:17.494877 #7476] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:17 -0700
|
999
|
-
I, [2017-03-27T10:37:17.495407 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1000
|
-
I, [2017-03-27T10:37:17.495442 #7476] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1001
|
-
I, [2017-03-27T10:37:17.723226 #7476] INFO -- : Rendered inline template within layouts/application (227.0ms)
|
1002
|
-
I, [2017-03-27T10:37:17.725737 #7476] INFO -- : Completed 200 OK in 230ms (Views: 229.7ms | ActiveRecord: 0.0ms)
|
1003
|
-
I, [2017-03-27T10:37:17.911239 #7476] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:17 -0700
|
1004
|
-
I, [2017-03-27T10:37:17.911890 #7476] INFO -- : Processing by BaselineController#show as HTML
|
1005
|
-
I, [2017-03-27T10:37:17.912348 #7476] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1006
|
-
I, [2017-03-27T10:37:17.912876 #7476] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1007
|
-
I, [2017-03-27T10:37:17.960616 #7476] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:17 -0700
|
1008
|
-
I, [2017-03-27T10:37:17.961183 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1009
|
-
I, [2017-03-27T10:37:17.961227 #7476] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1010
|
-
I, [2017-03-27T10:37:18.135901 #7476] INFO -- : Rendered inline template within layouts/application (174.2ms)
|
1011
|
-
I, [2017-03-27T10:37:18.137178 #7476] INFO -- : Completed 200 OK in 176ms (Views: 175.6ms | ActiveRecord: 0.0ms)
|
1012
|
-
I, [2017-03-27T10:37:18.200884 #7476] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:18 -0700
|
1013
|
-
I, [2017-03-27T10:37:18.201392 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1014
|
-
I, [2017-03-27T10:37:18.201432 #7476] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1015
|
-
I, [2017-03-27T10:37:18.378362 #7476] INFO -- : Rendered inline template within layouts/application (176.5ms)
|
1016
|
-
I, [2017-03-27T10:37:18.380416 #7476] INFO -- : Completed 200 OK in 179ms (Views: 178.7ms | ActiveRecord: 0.0ms)
|
1017
|
-
I, [2017-03-27T10:37:21.151569 #7476] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:21 -0700
|
1018
|
-
I, [2017-03-27T10:37:21.152134 #7476] INFO -- : Processing by BaselineController#show as HTML
|
1019
|
-
I, [2017-03-27T10:37:21.152506 #7476] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1020
|
-
I, [2017-03-27T10:37:21.152980 #7476] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1021
|
-
I, [2017-03-27T10:37:21.153853 #7476] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:21 -0700
|
1022
|
-
I, [2017-03-27T10:37:22.606238 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1023
|
-
I, [2017-03-27T10:37:22.606295 #7476] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1024
|
-
I, [2017-03-27T10:37:23.738795 #7476] INFO -- : Rendered inline template within layouts/application (1131.8ms)
|
1025
|
-
I, [2017-03-27T10:37:23.739951 #7476] INFO -- : Completed 200 OK in 1134ms (Views: 1133.1ms | ActiveRecord: 0.0ms)
|
1026
|
-
I, [2017-03-27T10:37:23.743357 #7476] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:23 -0700
|
1027
|
-
I, [2017-03-27T10:37:25.238777 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1028
|
-
I, [2017-03-27T10:37:25.238870 #7476] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1029
|
-
I, [2017-03-27T10:37:26.549285 #7476] INFO -- : Rendered inline template within layouts/application (1309.7ms)
|
1030
|
-
I, [2017-03-27T10:37:26.551363 #7476] INFO -- : Completed 200 OK in 1312ms (Views: 1311.9ms | ActiveRecord: 0.0ms)
|
1031
|
-
I, [2017-03-27T10:37:29.504056 #7476] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:29 -0700
|
1032
|
-
I, [2017-03-27T10:37:29.504666 #7476] INFO -- : Processing by BaselineController#show as HTML
|
1033
|
-
I, [2017-03-27T10:37:29.505118 #7476] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1034
|
-
I, [2017-03-27T10:37:29.505670 #7476] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1035
|
-
I, [2017-03-27T10:37:29.630557 #7476] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:29 -0700
|
1036
|
-
I, [2017-03-27T10:37:30.809512 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1037
|
-
I, [2017-03-27T10:37:30.809563 #7476] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1038
|
-
I, [2017-03-27T10:37:32.130306 #7476] INFO -- : Rendered inline template within layouts/application (1320.1ms)
|
1039
|
-
I, [2017-03-27T10:37:32.132376 #7476] INFO -- : Completed 200 OK in 1323ms (Views: 1322.3ms | ActiveRecord: 0.0ms)
|
1040
|
-
I, [2017-03-27T10:37:32.399989 #7476] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:32 -0700
|
1041
|
-
I, [2017-03-27T10:37:33.782682 #7476] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1042
|
-
I, [2017-03-27T10:37:33.782758 #7476] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1043
|
-
I, [2017-03-27T10:37:35.032888 #7476] INFO -- : Rendered inline template within layouts/application (1249.4ms)
|
1044
|
-
I, [2017-03-27T10:37:35.034033 #7476] INFO -- : Completed 200 OK in 1251ms (Views: 1250.7ms | ActiveRecord: 0.0ms)
|
1045
|
-
I, [2017-03-27T10:37:55.201027 #7744] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:55 -0700
|
1046
|
-
I, [2017-03-27T10:37:55.215059 #7744] INFO -- : Processing by BaselineController#show as HTML
|
1047
|
-
I, [2017-03-27T10:37:55.220562 #7744] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1048
|
-
I, [2017-03-27T10:37:55.221087 #7744] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
1049
|
-
I, [2017-03-27T10:37:55.234524 #7744] INFO -- : Completed 200 OK in 19ms (Views: 17.5ms)
|
1050
|
-
I, [2017-03-27T10:37:55.237764 #7744] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:55 -0700
|
1051
|
-
I, [2017-03-27T10:37:55.239514 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1052
|
-
I, [2017-03-27T10:37:55.239564 #7744] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1053
|
-
I, [2017-03-27T10:37:55.243872 #7744] INFO -- : Rendering inline template within layouts/application
|
1054
|
-
I, [2017-03-27T10:37:56.490593 #7744] INFO -- : Rendered inline template within layouts/application (1246.6ms)
|
1055
|
-
I, [2017-03-27T10:37:56.493814 #7744] INFO -- : Completed 200 OK in 1254ms (Views: 1250.2ms)
|
1056
|
-
I, [2017-03-27T10:37:56.501023 #7744] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:56 -0700
|
1057
|
-
I, [2017-03-27T10:37:56.502231 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1058
|
-
I, [2017-03-27T10:37:56.502336 #7744] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1059
|
-
I, [2017-03-27T10:37:56.503193 #7744] INFO -- : Rendering inline template within layouts/application
|
1060
|
-
I, [2017-03-27T10:37:56.754155 #7744] INFO -- : Rendered inline template within layouts/application (250.9ms)
|
1061
|
-
I, [2017-03-27T10:37:56.756726 #7744] INFO -- : Completed 200 OK in 254ms (Views: 253.7ms)
|
1062
|
-
I, [2017-03-27T10:37:56.957376 #7744] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:37:56 -0700
|
1063
|
-
I, [2017-03-27T10:37:56.958028 #7744] INFO -- : Processing by BaselineController#show as HTML
|
1064
|
-
I, [2017-03-27T10:37:56.958532 #7744] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1065
|
-
I, [2017-03-27T10:37:56.958644 #7744] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1066
|
-
I, [2017-03-27T10:37:56.959167 #7744] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
|
1067
|
-
I, [2017-03-27T10:37:57.020446 #7744] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:37:57 -0700
|
1068
|
-
I, [2017-03-27T10:37:57.020990 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1069
|
-
I, [2017-03-27T10:37:57.021033 #7744] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1070
|
-
I, [2017-03-27T10:37:57.021615 #7744] INFO -- : Rendering inline template within layouts/application
|
1071
|
-
I, [2017-03-27T10:37:57.166640 #7744] INFO -- : Rendered inline template within layouts/application (144.9ms)
|
1072
|
-
I, [2017-03-27T10:37:57.167899 #7744] INFO -- : Completed 200 OK in 147ms (Views: 146.5ms)
|
1073
|
-
I, [2017-03-27T10:37:57.239509 #7744] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:37:57 -0700
|
1074
|
-
I, [2017-03-27T10:37:57.240169 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1075
|
-
I, [2017-03-27T10:37:57.240216 #7744] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1076
|
-
I, [2017-03-27T10:37:57.240849 #7744] INFO -- : Rendering inline template within layouts/application
|
1077
|
-
I, [2017-03-27T10:37:57.378381 #7744] INFO -- : Rendered inline template within layouts/application (137.4ms)
|
1078
|
-
I, [2017-03-27T10:37:57.380070 #7744] INFO -- : Completed 200 OK in 140ms (Views: 139.4ms)
|
1079
|
-
I, [2017-03-27T10:38:00.139255 #7744] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:38:00 -0700
|
1080
|
-
I, [2017-03-27T10:38:00.140082 #7744] INFO -- : Processing by BaselineController#show as HTML
|
1081
|
-
I, [2017-03-27T10:38:00.140514 #7744] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1082
|
-
I, [2017-03-27T10:38:00.140627 #7744] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1083
|
-
I, [2017-03-27T10:38:00.141058 #7744] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms)
|
1084
|
-
I, [2017-03-27T10:38:00.142027 #7744] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:38:00 -0700
|
1085
|
-
I, [2017-03-27T10:38:01.569994 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1086
|
-
I, [2017-03-27T10:38:01.570063 #7744] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1087
|
-
I, [2017-03-27T10:38:01.570820 #7744] INFO -- : Rendering inline template within layouts/application
|
1088
|
-
I, [2017-03-27T10:38:02.716214 #7744] INFO -- : Rendered inline template within layouts/application (1145.3ms)
|
1089
|
-
I, [2017-03-27T10:38:02.717268 #7744] INFO -- : Completed 200 OK in 1147ms (Views: 1146.6ms)
|
1090
|
-
I, [2017-03-27T10:38:02.721468 #7744] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:38:02 -0700
|
1091
|
-
I, [2017-03-27T10:38:04.129450 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1092
|
-
I, [2017-03-27T10:38:04.129504 #7744] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1093
|
-
I, [2017-03-27T10:38:04.130092 #7744] INFO -- : Rendering inline template within layouts/application
|
1094
|
-
I, [2017-03-27T10:38:05.208886 #7744] INFO -- : Rendered inline template within layouts/application (1078.7ms)
|
1095
|
-
I, [2017-03-27T10:38:05.209788 #7744] INFO -- : Completed 200 OK in 1080ms (Views: 1079.7ms)
|
1096
|
-
I, [2017-03-27T10:38:08.270469 #7744] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 10:38:08 -0700
|
1097
|
-
I, [2017-03-27T10:38:08.271051 #7744] INFO -- : Processing by BaselineController#show as HTML
|
1098
|
-
I, [2017-03-27T10:38:08.271470 #7744] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1099
|
-
I, [2017-03-27T10:38:08.271566 #7744] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1100
|
-
I, [2017-03-27T10:38:08.272037 #7744] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms)
|
1101
|
-
I, [2017-03-27T10:38:08.389421 #7744] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 10:38:08 -0700
|
1102
|
-
I, [2017-03-27T10:38:09.590535 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1103
|
-
I, [2017-03-27T10:38:09.590602 #7744] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1104
|
-
I, [2017-03-27T10:38:09.591252 #7744] INFO -- : Rendering inline template within layouts/application
|
1105
|
-
I, [2017-03-27T10:38:10.717132 #7744] INFO -- : Rendered inline template within layouts/application (1125.8ms)
|
1106
|
-
I, [2017-03-27T10:38:10.718060 #7744] INFO -- : Completed 200 OK in 1127ms (Views: 1126.9ms)
|
1107
|
-
I, [2017-03-27T10:38:10.901708 #7744] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 10:38:10 -0700
|
1108
|
-
I, [2017-03-27T10:38:12.196753 #7744] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1109
|
-
I, [2017-03-27T10:38:12.196809 #7744] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1110
|
-
I, [2017-03-27T10:38:12.197525 #7744] INFO -- : Rendering inline template within layouts/application
|
1111
|
-
I, [2017-03-27T10:38:13.364023 #7744] INFO -- : Rendered inline template within layouts/application (1166.4ms)
|
1112
|
-
I, [2017-03-27T10:38:13.366268 #7744] INFO -- : Completed 200 OK in 1169ms (Views: 1168.8ms)
|
1113
|
-
I, [2017-03-27T22:42:09.791250 #2639] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:09 -0700
|
1114
|
-
I, [2017-03-27T22:42:09.807927 #2639] INFO -- : Processing by BaselineController#show as HTML
|
1115
|
-
I, [2017-03-27T22:42:09.814934 #2639] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
1116
|
-
I, [2017-03-27T22:42:09.821634 #2639] INFO -- : Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
1117
|
-
I, [2017-03-27T22:42:09.822739 #2639] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:09 -0700
|
1118
|
-
I, [2017-03-27T22:42:09.823422 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1119
|
-
I, [2017-03-27T22:42:09.823453 #2639] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1120
|
-
I, [2017-03-27T22:42:10.968733 #2639] INFO -- : Rendered inline template within layouts/application (1137.4ms)
|
1121
|
-
I, [2017-03-27T22:42:10.971492 #2639] INFO -- : Completed 200 OK in 1148ms (Views: 1144.7ms | ActiveRecord: 0.0ms)
|
1122
|
-
I, [2017-03-27T22:42:10.974769 #2639] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:10 -0700
|
1123
|
-
I, [2017-03-27T22:42:10.975386 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1124
|
-
I, [2017-03-27T22:42:10.975426 #2639] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1125
|
-
I, [2017-03-27T22:42:11.204020 #2639] INFO -- : Rendered inline template within layouts/application (228.0ms)
|
1126
|
-
I, [2017-03-27T22:42:11.206554 #2639] INFO -- : Completed 200 OK in 231ms (Views: 230.7ms | ActiveRecord: 0.0ms)
|
1127
|
-
I, [2017-03-27T22:42:11.373013 #2639] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:11 -0700
|
1128
|
-
I, [2017-03-27T22:42:11.373635 #2639] INFO -- : Processing by BaselineController#show as HTML
|
1129
|
-
I, [2017-03-27T22:42:11.374066 #2639] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1130
|
-
I, [2017-03-27T22:42:11.374543 #2639] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1131
|
-
I, [2017-03-27T22:42:11.433589 #2639] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:11 -0700
|
1132
|
-
I, [2017-03-27T22:42:11.434277 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1133
|
-
I, [2017-03-27T22:42:11.434327 #2639] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1134
|
-
I, [2017-03-27T22:42:11.620980 #2639] INFO -- : Rendered inline template within layouts/application (186.2ms)
|
1135
|
-
I, [2017-03-27T22:42:11.622339 #2639] INFO -- : Completed 200 OK in 188ms (Views: 187.6ms | ActiveRecord: 0.0ms)
|
1136
|
-
I, [2017-03-27T22:42:11.687162 #2639] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:11 -0700
|
1137
|
-
I, [2017-03-27T22:42:11.687705 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1138
|
-
I, [2017-03-27T22:42:11.687744 #2639] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1139
|
-
I, [2017-03-27T22:42:11.877486 #2639] INFO -- : Rendered inline template within layouts/application (189.1ms)
|
1140
|
-
I, [2017-03-27T22:42:11.878235 #2639] INFO -- : Completed 200 OK in 190ms (Views: 190.1ms | ActiveRecord: 0.0ms)
|
1141
|
-
I, [2017-03-27T22:42:14.834008 #2639] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:14 -0700
|
1142
|
-
I, [2017-03-27T22:42:14.834547 #2639] INFO -- : Processing by BaselineController#show as HTML
|
1143
|
-
I, [2017-03-27T22:42:14.834899 #2639] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1144
|
-
I, [2017-03-27T22:42:14.835281 #2639] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
1145
|
-
I, [2017-03-27T22:42:14.836111 #2639] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:14 -0700
|
1146
|
-
I, [2017-03-27T22:42:16.307672 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1147
|
-
I, [2017-03-27T22:42:16.307783 #2639] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1148
|
-
I, [2017-03-27T22:42:17.641491 #2639] INFO -- : Rendered inline template within layouts/application (1333.0ms)
|
1149
|
-
I, [2017-03-27T22:42:17.642598 #2639] INFO -- : Completed 200 OK in 1335ms (Views: 1334.2ms | ActiveRecord: 0.0ms)
|
1150
|
-
I, [2017-03-27T22:42:17.645961 #2639] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:17 -0700
|
1151
|
-
I, [2017-03-27T22:42:19.058698 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1152
|
-
I, [2017-03-27T22:42:19.058761 #2639] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1153
|
-
I, [2017-03-27T22:42:20.492937 #2639] INFO -- : Rendered inline template within layouts/application (1433.6ms)
|
1154
|
-
I, [2017-03-27T22:42:20.494795 #2639] INFO -- : Completed 200 OK in 1436ms (Views: 1435.5ms | ActiveRecord: 0.0ms)
|
1155
|
-
I, [2017-03-27T22:42:23.910793 #2639] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:23 -0700
|
1156
|
-
I, [2017-03-27T22:42:23.911395 #2639] INFO -- : Processing by BaselineController#show as HTML
|
1157
|
-
I, [2017-03-27T22:42:23.911809 #2639] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1158
|
-
I, [2017-03-27T22:42:23.912294 #2639] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1159
|
-
I, [2017-03-27T22:42:24.034800 #2639] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:24 -0700
|
1160
|
-
I, [2017-03-27T22:42:25.309397 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1161
|
-
I, [2017-03-27T22:42:25.309451 #2639] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1162
|
-
I, [2017-03-27T22:42:26.647261 #2639] INFO -- : Rendered inline template within layouts/application (1337.1ms)
|
1163
|
-
I, [2017-03-27T22:42:26.648469 #2639] INFO -- : Completed 200 OK in 1339ms (Views: 1338.4ms | ActiveRecord: 0.0ms)
|
1164
|
-
I, [2017-03-27T22:42:26.831030 #2639] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:26 -0700
|
1165
|
-
I, [2017-03-27T22:42:28.270964 #2639] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1166
|
-
I, [2017-03-27T22:42:28.271019 #2639] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1167
|
-
I, [2017-03-27T22:42:29.439345 #2639] INFO -- : Rendered inline template within layouts/application (1167.6ms)
|
1168
|
-
I, [2017-03-27T22:42:29.440410 #2639] INFO -- : Completed 200 OK in 1169ms (Views: 1168.8ms | ActiveRecord: 0.0ms)
|
1169
|
-
I, [2017-03-27T22:42:52.512951 #2706] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:52 -0700
|
1170
|
-
I, [2017-03-27T22:42:52.536249 #2706] INFO -- : Processing by BaselineController#show as HTML
|
1171
|
-
I, [2017-03-27T22:42:52.544629 #2706] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1172
|
-
I, [2017-03-27T22:42:52.545392 #2706] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.5ms)
|
1173
|
-
I, [2017-03-27T22:42:52.561903 #2706] INFO -- : Completed 200 OK in 25ms (Views: 23.1ms)
|
1174
|
-
I, [2017-03-27T22:42:52.564075 #2706] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:52 -0700
|
1175
|
-
I, [2017-03-27T22:42:52.565253 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1176
|
-
I, [2017-03-27T22:42:52.565314 #2706] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1177
|
-
I, [2017-03-27T22:42:52.570274 #2706] INFO -- : Rendering inline template within layouts/application
|
1178
|
-
I, [2017-03-27T22:42:54.022051 #2706] INFO -- : Rendered inline template within layouts/application (1451.6ms)
|
1179
|
-
I, [2017-03-27T22:42:54.025063 #2706] INFO -- : Completed 200 OK in 1460ms (Views: 1455.2ms)
|
1180
|
-
I, [2017-03-27T22:42:54.030882 #2706] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:54 -0700
|
1181
|
-
I, [2017-03-27T22:42:54.031466 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1182
|
-
I, [2017-03-27T22:42:54.031504 #2706] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1183
|
-
I, [2017-03-27T22:42:54.032126 #2706] INFO -- : Rendering inline template within layouts/application
|
1184
|
-
I, [2017-03-27T22:42:54.271927 #2706] INFO -- : Rendered inline template within layouts/application (239.7ms)
|
1185
|
-
I, [2017-03-27T22:42:54.274709 #2706] INFO -- : Completed 200 OK in 243ms (Views: 242.7ms)
|
1186
|
-
I, [2017-03-27T22:42:54.490587 #2706] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:54 -0700
|
1187
|
-
I, [2017-03-27T22:42:54.491195 #2706] INFO -- : Processing by BaselineController#show as HTML
|
1188
|
-
I, [2017-03-27T22:42:54.491656 #2706] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1189
|
-
I, [2017-03-27T22:42:54.491767 #2706] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1190
|
-
I, [2017-03-27T22:42:54.492262 #2706] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms)
|
1191
|
-
I, [2017-03-27T22:42:54.557274 #2706] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:54 -0700
|
1192
|
-
I, [2017-03-27T22:42:54.557824 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1193
|
-
I, [2017-03-27T22:42:54.557863 #2706] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1194
|
-
I, [2017-03-27T22:42:54.558390 #2706] INFO -- : Rendering inline template within layouts/application
|
1195
|
-
I, [2017-03-27T22:42:54.731592 #2706] INFO -- : Rendered inline template within layouts/application (173.1ms)
|
1196
|
-
I, [2017-03-27T22:42:54.733129 #2706] INFO -- : Completed 200 OK in 175ms (Views: 174.9ms)
|
1197
|
-
I, [2017-03-27T22:42:54.821314 #2706] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:42:54 -0700
|
1198
|
-
I, [2017-03-27T22:42:54.821871 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1199
|
-
I, [2017-03-27T22:42:54.821912 #2706] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1200
|
-
I, [2017-03-27T22:42:54.822468 #2706] INFO -- : Rendering inline template within layouts/application
|
1201
|
-
I, [2017-03-27T22:42:55.014139 #2706] INFO -- : Rendered inline template within layouts/application (191.6ms)
|
1202
|
-
I, [2017-03-27T22:42:55.016267 #2706] INFO -- : Completed 200 OK in 194ms (Views: 193.9ms)
|
1203
|
-
I, [2017-03-27T22:42:58.080084 #2706] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:42:58 -0700
|
1204
|
-
I, [2017-03-27T22:42:58.080633 #2706] INFO -- : Processing by BaselineController#show as HTML
|
1205
|
-
I, [2017-03-27T22:42:58.081273 #2706] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1206
|
-
I, [2017-03-27T22:42:58.081374 #2706] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1207
|
-
I, [2017-03-27T22:42:58.081886 #2706] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms)
|
1208
|
-
I, [2017-03-27T22:42:58.082907 #2706] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:42:58 -0700
|
1209
|
-
I, [2017-03-27T22:42:59.602871 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1210
|
-
I, [2017-03-27T22:42:59.602940 #2706] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1211
|
-
I, [2017-03-27T22:42:59.603660 #2706] INFO -- : Rendering inline template within layouts/application
|
1212
|
-
I, [2017-03-27T22:43:00.931029 #2706] INFO -- : Rendered inline template within layouts/application (1327.3ms)
|
1213
|
-
I, [2017-03-27T22:43:00.932278 #2706] INFO -- : Completed 200 OK in 1329ms (Views: 1328.7ms)
|
1214
|
-
I, [2017-03-27T22:43:00.937516 #2706] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:43:00 -0700
|
1215
|
-
I, [2017-03-27T22:43:02.611062 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1216
|
-
I, [2017-03-27T22:43:02.611126 #2706] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1217
|
-
I, [2017-03-27T22:43:02.611907 #2706] INFO -- : Rendering inline template within layouts/application
|
1218
|
-
I, [2017-03-27T22:43:04.035979 #2706] INFO -- : Rendered inline template within layouts/application (1424.0ms)
|
1219
|
-
I, [2017-03-27T22:43:04.037100 #2706] INFO -- : Completed 200 OK in 1426ms (Views: 1425.3ms)
|
1220
|
-
I, [2017-03-27T22:43:07.356011 #2706] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:43:07 -0700
|
1221
|
-
I, [2017-03-27T22:43:07.356602 #2706] INFO -- : Processing by BaselineController#show as HTML
|
1222
|
-
I, [2017-03-27T22:43:07.357047 #2706] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1223
|
-
I, [2017-03-27T22:43:07.357142 #2706] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1224
|
-
I, [2017-03-27T22:43:07.357607 #2706] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms)
|
1225
|
-
I, [2017-03-27T22:43:07.494442 #2706] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:43:07 -0700
|
1226
|
-
I, [2017-03-27T22:43:08.806130 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1227
|
-
I, [2017-03-27T22:43:08.806187 #2706] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1228
|
-
I, [2017-03-27T22:43:08.806862 #2706] INFO -- : Rendering inline template within layouts/application
|
1229
|
-
I, [2017-03-27T22:43:10.046467 #2706] INFO -- : Rendered inline template within layouts/application (1239.5ms)
|
1230
|
-
I, [2017-03-27T22:43:10.047512 #2706] INFO -- : Completed 200 OK in 1241ms (Views: 1240.6ms)
|
1231
|
-
I, [2017-03-27T22:43:10.247129 #2706] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:43:10 -0700
|
1232
|
-
I, [2017-03-27T22:43:11.614914 #2706] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1233
|
-
I, [2017-03-27T22:43:11.615006 #2706] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1234
|
-
I, [2017-03-27T22:43:11.615793 #2706] INFO -- : Rendering inline template within layouts/application
|
1235
|
-
I, [2017-03-27T22:43:12.843084 #2706] INFO -- : Rendered inline template within layouts/application (1227.2ms)
|
1236
|
-
I, [2017-03-27T22:43:12.844210 #2706] INFO -- : Completed 200 OK in 1229ms (Views: 1228.5ms)
|
1237
|
-
I, [2017-03-27T22:49:48.674252 #3420] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:49:48 -0700
|
1238
|
-
I, [2017-03-27T22:49:48.687566 #3420] INFO -- : Processing by BaselineController#show as HTML
|
1239
|
-
I, [2017-03-27T22:49:48.694005 #3420] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
1240
|
-
I, [2017-03-27T22:49:48.701313 #3420] INFO -- : Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
|
1241
|
-
I, [2017-03-27T22:49:48.702391 #3420] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:49:48 -0700
|
1242
|
-
I, [2017-03-27T22:49:48.703126 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1243
|
-
I, [2017-03-27T22:49:48.703156 #3420] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1244
|
-
I, [2017-03-27T22:49:49.767054 #3420] INFO -- : Rendered inline template within layouts/application (1059.0ms)
|
1245
|
-
I, [2017-03-27T22:49:49.769620 #3420] INFO -- : Completed 200 OK in 1066ms (Views: 1064.0ms | ActiveRecord: 0.0ms)
|
1246
|
-
I, [2017-03-27T22:49:49.773136 #3420] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:49:49 -0700
|
1247
|
-
I, [2017-03-27T22:49:49.773680 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1248
|
-
I, [2017-03-27T22:49:49.773712 #3420] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1249
|
-
I, [2017-03-27T22:49:50.002326 #3420] INFO -- : Rendered inline template within layouts/application (228.0ms)
|
1250
|
-
I, [2017-03-27T22:49:50.004992 #3420] INFO -- : Completed 200 OK in 231ms (Views: 230.9ms | ActiveRecord: 0.0ms)
|
1251
|
-
I, [2017-03-27T22:49:50.184223 #3420] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:49:50 -0700
|
1252
|
-
I, [2017-03-27T22:49:50.184873 #3420] INFO -- : Processing by BaselineController#show as HTML
|
1253
|
-
I, [2017-03-27T22:49:50.185319 #3420] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1254
|
-
I, [2017-03-27T22:49:50.185818 #3420] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1255
|
-
I, [2017-03-27T22:49:50.240680 #3420] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:49:50 -0700
|
1256
|
-
I, [2017-03-27T22:49:50.241346 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1257
|
-
I, [2017-03-27T22:49:50.241397 #3420] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1258
|
-
I, [2017-03-27T22:49:50.420363 #3420] INFO -- : Rendered inline template within layouts/application (178.4ms)
|
1259
|
-
I, [2017-03-27T22:49:50.421627 #3420] INFO -- : Completed 200 OK in 180ms (Views: 179.8ms | ActiveRecord: 0.0ms)
|
1260
|
-
I, [2017-03-27T22:49:50.489919 #3420] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:49:50 -0700
|
1261
|
-
I, [2017-03-27T22:49:50.490464 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1262
|
-
I, [2017-03-27T22:49:50.490504 #3420] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1263
|
-
I, [2017-03-27T22:49:50.667482 #3420] INFO -- : Rendered inline template within layouts/application (176.5ms)
|
1264
|
-
I, [2017-03-27T22:49:50.669881 #3420] INFO -- : Completed 200 OK in 179ms (Views: 179.0ms | ActiveRecord: 0.0ms)
|
1265
|
-
I, [2017-03-27T22:49:53.550963 #3420] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:49:53 -0700
|
1266
|
-
I, [2017-03-27T22:49:53.551582 #3420] INFO -- : Processing by BaselineController#show as HTML
|
1267
|
-
I, [2017-03-27T22:49:53.552008 #3420] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1268
|
-
I, [2017-03-27T22:49:53.552488 #3420] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1269
|
-
I, [2017-03-27T22:49:53.553654 #3420] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:49:53 -0700
|
1270
|
-
I, [2017-03-27T22:49:55.006229 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1271
|
-
I, [2017-03-27T22:49:55.006311 #3420] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1272
|
-
I, [2017-03-27T22:49:56.187405 #3420] INFO -- : Rendered inline template within layouts/application (1180.4ms)
|
1273
|
-
I, [2017-03-27T22:49:56.188520 #3420] INFO -- : Completed 200 OK in 1182ms (Views: 1181.6ms | ActiveRecord: 0.0ms)
|
1274
|
-
I, [2017-03-27T22:49:56.191850 #3420] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:49:56 -0700
|
1275
|
-
I, [2017-03-27T22:49:57.675324 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1276
|
-
I, [2017-03-27T22:49:57.675392 #3420] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1277
|
-
I, [2017-03-27T22:49:58.975610 #3420] INFO -- : Rendered inline template within layouts/application (1299.6ms)
|
1278
|
-
I, [2017-03-27T22:49:58.977489 #3420] INFO -- : Completed 200 OK in 1302ms (Views: 1301.6ms | ActiveRecord: 0.0ms)
|
1279
|
-
I, [2017-03-27T22:50:02.015925 #3420] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:50:02 -0700
|
1280
|
-
I, [2017-03-27T22:50:02.016538 #3420] INFO -- : Processing by BaselineController#show as HTML
|
1281
|
-
I, [2017-03-27T22:50:02.016959 #3420] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1282
|
-
I, [2017-03-27T22:50:02.017448 #3420] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1283
|
-
I, [2017-03-27T22:50:02.138751 #3420] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:50:02 -0700
|
1284
|
-
I, [2017-03-27T22:50:03.279308 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1285
|
-
I, [2017-03-27T22:50:03.279373 #3420] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1286
|
-
I, [2017-03-27T22:50:04.449048 #3420] INFO -- : Rendered inline template within layouts/application (1169.0ms)
|
1287
|
-
I, [2017-03-27T22:50:04.450527 #3420] INFO -- : Completed 200 OK in 1171ms (Views: 1170.6ms | ActiveRecord: 0.0ms)
|
1288
|
-
I, [2017-03-27T22:50:04.662667 #3420] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:50:04 -0700
|
1289
|
-
I, [2017-03-27T22:50:05.848321 #3420] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1290
|
-
I, [2017-03-27T22:50:05.848391 #3420] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1291
|
-
I, [2017-03-27T22:50:06.946062 #3420] INFO -- : Rendered inline template within layouts/application (1097.0ms)
|
1292
|
-
I, [2017-03-27T22:50:06.946962 #3420] INFO -- : Completed 200 OK in 1099ms (Views: 1098.0ms | ActiveRecord: 0.0ms)
|
1293
|
-
I, [2017-03-27T22:50:25.212253 #3842] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:50:25 -0700
|
1294
|
-
I, [2017-03-27T22:50:25.226189 #3842] INFO -- : Processing by BaselineController#show as HTML
|
1295
|
-
I, [2017-03-27T22:50:25.231477 #3842] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1296
|
-
I, [2017-03-27T22:50:25.231959 #3842] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
1297
|
-
I, [2017-03-27T22:50:25.242524 #3842] INFO -- : Completed 200 OK in 16ms (Views: 14.7ms)
|
1298
|
-
I, [2017-03-27T22:50:25.244445 #3842] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:50:25 -0700
|
1299
|
-
I, [2017-03-27T22:50:25.245433 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1300
|
-
I, [2017-03-27T22:50:25.245786 #3842] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1301
|
-
I, [2017-03-27T22:50:25.250954 #3842] INFO -- : Rendering inline template within layouts/application
|
1302
|
-
I, [2017-03-27T22:50:26.455520 #3842] INFO -- : Rendered inline template within layouts/application (1204.5ms)
|
1303
|
-
I, [2017-03-27T22:50:26.457907 #3842] INFO -- : Completed 200 OK in 1212ms (Views: 1207.3ms)
|
1304
|
-
I, [2017-03-27T22:50:26.463583 #3842] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:50:26 -0700
|
1305
|
-
I, [2017-03-27T22:50:26.464254 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1306
|
-
I, [2017-03-27T22:50:26.464288 #3842] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1307
|
-
I, [2017-03-27T22:50:26.464811 #3842] INFO -- : Rendering inline template within layouts/application
|
1308
|
-
I, [2017-03-27T22:50:26.660028 #3842] INFO -- : Rendered inline template within layouts/application (195.1ms)
|
1309
|
-
I, [2017-03-27T22:50:26.662064 #3842] INFO -- : Completed 200 OK in 198ms (Views: 197.3ms)
|
1310
|
-
I, [2017-03-27T22:50:26.855572 #3842] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:50:26 -0700
|
1311
|
-
I, [2017-03-27T22:50:26.856208 #3842] INFO -- : Processing by BaselineController#show as HTML
|
1312
|
-
I, [2017-03-27T22:50:26.856729 #3842] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1313
|
-
I, [2017-03-27T22:50:26.856865 #3842] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1314
|
-
I, [2017-03-27T22:50:26.857519 #3842] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms)
|
1315
|
-
I, [2017-03-27T22:50:26.920779 #3842] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:50:26 -0700
|
1316
|
-
I, [2017-03-27T22:50:26.921378 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1317
|
-
I, [2017-03-27T22:50:26.921422 #3842] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1318
|
-
I, [2017-03-27T22:50:26.921972 #3842] INFO -- : Rendering inline template within layouts/application
|
1319
|
-
I, [2017-03-27T22:50:27.081037 #3842] INFO -- : Rendered inline template within layouts/application (159.0ms)
|
1320
|
-
I, [2017-03-27T22:50:27.082475 #3842] INFO -- : Completed 200 OK in 161ms (Views: 160.6ms)
|
1321
|
-
I, [2017-03-27T22:50:27.160979 #3842] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:50:27 -0700
|
1322
|
-
I, [2017-03-27T22:50:27.162711 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1323
|
-
I, [2017-03-27T22:50:27.162875 #3842] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1324
|
-
I, [2017-03-27T22:50:27.164055 #3842] INFO -- : Rendering inline template within layouts/application
|
1325
|
-
I, [2017-03-27T22:50:27.318070 #3842] INFO -- : Rendered inline template within layouts/application (153.9ms)
|
1326
|
-
I, [2017-03-27T22:50:27.320026 #3842] INFO -- : Completed 200 OK in 157ms (Views: 156.3ms)
|
1327
|
-
I, [2017-03-27T22:50:30.055408 #3842] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:50:30 -0700
|
1328
|
-
I, [2017-03-27T22:50:30.055922 #3842] INFO -- : Processing by BaselineController#show as HTML
|
1329
|
-
I, [2017-03-27T22:50:30.056309 #3842] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1330
|
-
I, [2017-03-27T22:50:30.056391 #3842] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1331
|
-
I, [2017-03-27T22:50:30.056842 #3842] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms)
|
1332
|
-
I, [2017-03-27T22:50:30.057687 #3842] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:50:30 -0700
|
1333
|
-
I, [2017-03-27T22:50:31.437521 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1334
|
-
I, [2017-03-27T22:50:31.437589 #3842] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1335
|
-
I, [2017-03-27T22:50:31.438290 #3842] INFO -- : Rendering inline template within layouts/application
|
1336
|
-
I, [2017-03-27T22:50:32.768421 #3842] INFO -- : Rendered inline template within layouts/application (1330.0ms)
|
1337
|
-
I, [2017-03-27T22:50:32.769833 #3842] INFO -- : Completed 200 OK in 1332ms (Views: 1331.6ms)
|
1338
|
-
I, [2017-03-27T22:50:32.777052 #3842] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:50:32 -0700
|
1339
|
-
I, [2017-03-27T22:50:34.428890 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1340
|
-
I, [2017-03-27T22:50:34.428969 #3842] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1341
|
-
I, [2017-03-27T22:50:34.429731 #3842] INFO -- : Rendering inline template within layouts/application
|
1342
|
-
I, [2017-03-27T22:50:35.807059 #3842] INFO -- : Rendered inline template within layouts/application (1377.2ms)
|
1343
|
-
I, [2017-03-27T22:50:35.809925 #3842] INFO -- : Completed 200 OK in 1381ms (Views: 1380.3ms)
|
1344
|
-
I, [2017-03-27T22:50:39.668611 #3842] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2017-03-27 22:50:39 -0700
|
1345
|
-
I, [2017-03-27T22:50:39.669251 #3842] INFO -- : Processing by BaselineController#show as HTML
|
1346
|
-
I, [2017-03-27T22:50:39.669970 #3842] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1347
|
-
I, [2017-03-27T22:50:39.670210 #3842] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
1348
|
-
I, [2017-03-27T22:50:39.670786 #3842] INFO -- : Completed 200 OK in 1ms (Views: 1.2ms)
|
1349
|
-
I, [2017-03-27T22:50:39.820919 #3842] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2017-03-27 22:50:39 -0700
|
1350
|
-
I, [2017-03-27T22:50:41.153163 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1351
|
-
I, [2017-03-27T22:50:41.153232 #3842] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
1352
|
-
I, [2017-03-27T22:50:41.154037 #3842] INFO -- : Rendering inline template within layouts/application
|
1353
|
-
I, [2017-03-27T22:50:42.708633 #3842] INFO -- : Rendered inline template within layouts/application (1554.5ms)
|
1354
|
-
I, [2017-03-27T22:50:42.710331 #3842] INFO -- : Completed 200 OK in 1557ms (Views: 1556.3ms)
|
1355
|
-
I, [2017-03-27T22:50:43.052710 #3842] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2017-03-27 22:50:43 -0700
|
1356
|
-
I, [2017-03-27T22:50:44.329997 #3842] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1357
|
-
I, [2017-03-27T22:50:44.330065 #3842] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
1358
|
-
I, [2017-03-27T22:50:44.330715 #3842] INFO -- : Rendering inline template within layouts/application
|
1359
|
-
I, [2017-03-27T22:50:45.741182 #3842] INFO -- : Rendered inline template within layouts/application (1410.4ms)
|
1360
|
-
I, [2017-03-27T22:50:45.744287 #3842] INFO -- : Completed 200 OK in 1414ms (Views: 1413.6ms)
|
1361
|
-
I, [2020-08-03T19:07:47.027613 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:07:47 -0400
|
1362
|
-
I, [2020-08-03T19:07:47.032564 #2784] INFO -- : Processing by BaselineController#show as HTML
|
1363
|
-
I, [2020-08-03T19:07:47.035679 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1364
|
-
I, [2020-08-03T19:07:47.036369 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.5ms | Allocations: 98)
|
1365
|
-
I, [2020-08-03T19:07:47.042921 #2784] INFO -- : Completed 200 OK in 10ms (Views: 9.3ms | Allocations: 1312)
|
1366
|
-
I, [2020-08-03T19:07:47.045545 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:07:47 -0400
|
1367
|
-
I, [2020-08-03T19:07:47.046593 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1368
|
-
I, [2020-08-03T19:07:47.046679 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
|
1369
|
-
I, [2020-08-03T19:07:47.049977 #2784] INFO -- : Rendering inline template within layouts/application
|
1370
|
-
I, [2020-08-03T19:07:48.823461 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1773.3ms | Allocations: 710139)
|
1371
|
-
I, [2020-08-03T19:07:48.825531 #2784] INFO -- : Completed 200 OK in 1779ms (Views: 1776.1ms | Allocations: 711252)
|
1372
|
-
I, [2020-08-03T19:07:48.833396 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:07:48 -0400
|
1373
|
-
I, [2020-08-03T19:07:48.834259 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1374
|
-
I, [2020-08-03T19:07:48.834332 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
|
1375
|
-
I, [2020-08-03T19:07:48.835105 #2784] INFO -- : Rendering inline template within layouts/application
|
1376
|
-
I, [2020-08-03T19:07:49.035577 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 200.4ms | Allocations: 300170)
|
1377
|
-
I, [2020-08-03T19:07:49.037131 #2784] INFO -- : Completed 200 OK in 203ms (Views: 202.2ms | Allocations: 300789)
|
1378
|
-
I, [2020-08-03T19:07:49.280763 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:07:49 -0400
|
1379
|
-
I, [2020-08-03T19:07:49.281572 #2784] INFO -- : Processing by BaselineController#show as HTML
|
1380
|
-
I, [2020-08-03T19:07:49.282134 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1381
|
-
I, [2020-08-03T19:07:49.282286 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1382
|
-
I, [2020-08-03T19:07:49.283218 #2784] INFO -- : Completed 200 OK in 1ms (Views: 1.3ms | Allocations: 524)
|
1383
|
-
I, [2020-08-03T19:07:49.368231 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:07:49 -0400
|
1384
|
-
I, [2020-08-03T19:07:49.369249 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1385
|
-
I, [2020-08-03T19:07:49.369409 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
|
1386
|
-
I, [2020-08-03T19:07:49.370076 #2784] INFO -- : Rendering inline template within layouts/application
|
1387
|
-
I, [2020-08-03T19:07:49.560516 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 190.3ms | Allocations: 300178)
|
1388
|
-
I, [2020-08-03T19:07:49.561771 #2784] INFO -- : Completed 200 OK in 192ms (Views: 191.9ms | Allocations: 300747)
|
1389
|
-
I, [2020-08-03T19:07:49.659283 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:07:49 -0400
|
1390
|
-
I, [2020-08-03T19:07:49.659942 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1391
|
-
I, [2020-08-03T19:07:49.660015 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
|
1392
|
-
I, [2020-08-03T19:07:49.660705 #2784] INFO -- : Rendering inline template within layouts/application
|
1393
|
-
I, [2020-08-03T19:07:49.845460 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 184.7ms | Allocations: 300172)
|
1394
|
-
I, [2020-08-03T19:07:49.846395 #2784] INFO -- : Completed 200 OK in 186ms (Views: 186.0ms | Allocations: 300741)
|
1395
|
-
I, [2020-08-03T19:07:52.570963 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:07:52 -0400
|
1396
|
-
I, [2020-08-03T19:07:52.571629 #2784] INFO -- : Processing by BaselineController#show as HTML
|
1397
|
-
I, [2020-08-03T19:07:52.572078 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1398
|
-
I, [2020-08-03T19:07:52.572179 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.0ms | Allocations: 4)
|
1399
|
-
I, [2020-08-03T19:07:52.572915 #2784] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 524)
|
1400
|
-
I, [2020-08-03T19:07:52.575122 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:07:52 -0400
|
1401
|
-
I, [2020-08-03T19:07:53.810372 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1402
|
-
I, [2020-08-03T19:07:53.810456 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
|
1403
|
-
I, [2020-08-03T19:07:53.811334 #2784] INFO -- : Rendering inline template within layouts/application
|
1404
|
-
I, [2020-08-03T19:07:55.323969 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1512.5ms | Allocations: 740141)
|
1405
|
-
I, [2020-08-03T19:07:55.325478 #2784] INFO -- : Completed 200 OK in 1515ms (Views: 1514.3ms | Allocations: 740802)
|
1406
|
-
I, [2020-08-03T19:07:55.330961 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:07:55 -0400
|
1407
|
-
I, [2020-08-03T19:07:56.586894 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1408
|
-
I, [2020-08-03T19:07:56.586969 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
|
1409
|
-
I, [2020-08-03T19:07:56.587730 #2784] INFO -- : Rendering inline template within layouts/application
|
1410
|
-
I, [2020-08-03T19:07:58.364828 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1777.0ms | Allocations: 740138)
|
1411
|
-
I, [2020-08-03T19:07:58.365827 #2784] INFO -- : Completed 200 OK in 1779ms (Views: 1778.2ms | Allocations: 740797)
|
1412
|
-
I, [2020-08-03T19:08:01.152553 #2784] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2020-08-03 19:08:01 -0400
|
1413
|
-
I, [2020-08-03T19:08:01.153120 #2784] INFO -- : Processing by BaselineController#show as HTML
|
1414
|
-
I, [2020-08-03T19:08:01.153480 #2784] INFO -- : Rendering baseline/show.html.erb within layouts/application
|
1415
|
-
I, [2020-08-03T19:08:01.153645 #2784] INFO -- : Rendered baseline/show.html.erb within layouts/application (Duration: 0.1ms | Allocations: 4)
|
1416
|
-
I, [2020-08-03T19:08:01.154878 #2784] INFO -- : Completed 200 OK in 2ms (Views: 1.5ms | Allocations: 524)
|
1417
|
-
I, [2020-08-03T19:08:01.264807 #2784] INFO -- : Started GET "/page-8981.html" for 127.0.0.1 at 2020-08-03 19:08:01 -0400
|
1418
|
-
I, [2020-08-03T19:08:02.283036 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1419
|
-
I, [2020-08-03T19:08:02.283121 #2784] INFO -- : Parameters: {"resource_path"=>"page-8981.html"}
|
1420
|
-
I, [2020-08-03T19:08:02.283850 #2784] INFO -- : Rendering inline template within layouts/application
|
1421
|
-
I, [2020-08-03T19:08:03.528806 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1244.9ms | Allocations: 740141)
|
1422
|
-
I, [2020-08-03T19:08:03.530321 #2784] INFO -- : Completed 200 OK in 1247ms (Views: 1246.6ms | Allocations: 740802)
|
1423
|
-
I, [2020-08-03T19:08:03.668750 #2784] INFO -- : Started GET "/page-8161.html" for 127.0.0.1 at 2020-08-03 19:08:03 -0400
|
1424
|
-
I, [2020-08-03T19:08:04.640655 #2784] INFO -- : Processing by Sitepress::SiteController#show as HTML
|
1425
|
-
I, [2020-08-03T19:08:04.640737 #2784] INFO -- : Parameters: {"resource_path"=>"page-8161.html"}
|
1426
|
-
I, [2020-08-03T19:08:04.641397 #2784] INFO -- : Rendering inline template within layouts/application
|
1427
|
-
I, [2020-08-03T19:08:06.076780 #2784] INFO -- : Rendered inline template within layouts/application (Duration: 1435.3ms | Allocations: 740135)
|
1428
|
-
I, [2020-08-03T19:08:06.078611 #2784] INFO -- : Completed 200 OK in 1438ms (Views: 1437.3ms | Allocations: 740796)
|