mascot-rails 0.1.15 → 0.1.16
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/mascot/site_pages.rb +4 -8
- data/lib/mascot/engine.rb +1 -1
- data/lib/mascot/rails.rb +5 -0
- data/lib/mascot/rails_configuration.rb +12 -18
- data/lib/mascot/route_constraint.rb +3 -3
- data/spec/dummy/log/production.log +1411 -0
- data/spec/dummy/log/test.log +3225 -0
- data/spec/mascot-rails_spec.rb +1 -1
- data/spec/mascot/mascot_site_controller_spec.rb +3 -3
- data/spec/mascot/rails_configuration_spec.rb +2 -10
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 055aac8c6b46c0083dd244cc4e5d7f9e7588db6f
|
4
|
+
data.tar.gz: d000036013199669542c32904deb4aa98eeedadb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a362df228693a19f5841129ef26a3713c7cf0490ed81a134f49d7d28111439b44fd36ff2c7b2b0382a7b8e2107fc8b58b616acb388ef102489fb351b7269b24d
|
7
|
+
data.tar.gz: 1978044d00b33c6bb79ff14801cb614b5996ad19011c2022591caa5f6bade7fd37307d5a29533901147b343f49b28bf28a0352a2c0e399e7d8bd99692f5b21d8
|
@@ -7,7 +7,7 @@ module Mascot
|
|
7
7
|
|
8
8
|
included do
|
9
9
|
rescue_from Mascot::PageNotFoundError, with: :page_not_found
|
10
|
-
helper_method :current_page, :
|
10
|
+
helper_method :current_page, :site
|
11
11
|
end
|
12
12
|
|
13
13
|
def show
|
@@ -22,8 +22,8 @@ module Mascot
|
|
22
22
|
@_current_page ||= find_resource
|
23
23
|
end
|
24
24
|
|
25
|
-
def
|
26
|
-
|
25
|
+
def site
|
26
|
+
Mascot.site
|
27
27
|
end
|
28
28
|
|
29
29
|
def page_not_found(e)
|
@@ -35,7 +35,7 @@ module Mascot
|
|
35
35
|
# Mascot::PageNotFoundError is handled in the default Mascot::SiteController
|
36
36
|
# with an execption that Rails can use to display a 404 error.
|
37
37
|
def get(path)
|
38
|
-
resource =
|
38
|
+
resource = Mascot.site.resources.get(path)
|
39
39
|
if resource.nil?
|
40
40
|
# TODO: Display error in context of Reources class root.
|
41
41
|
raise Mascot::PageNotFoundError, "No such page: #{path}"
|
@@ -58,9 +58,5 @@ module Mascot
|
|
58
58
|
File.basename(layout.identifier).split('.').first
|
59
59
|
end
|
60
60
|
end
|
61
|
-
|
62
|
-
def root
|
63
|
-
@_root ||= Mascot.configuration.root
|
64
|
-
end
|
65
61
|
end
|
66
62
|
end
|
data/lib/mascot/engine.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
module Mascot
|
2
2
|
class Engine < ::Rails::Engine
|
3
3
|
initializer "Add site root to view paths" do |app|
|
4
|
-
ActionController::Base.prepend_view_path Mascot.
|
4
|
+
ActionController::Base.prepend_view_path Mascot.site.root_path
|
5
5
|
end
|
6
6
|
|
7
7
|
initializer "Require concerns path" do |app|
|
data/lib/mascot/rails.rb
CHANGED
@@ -15,6 +15,11 @@ module Mascot
|
|
15
15
|
autoload :IndexRequestPath, "mascot/extensions/index_request_path"
|
16
16
|
end
|
17
17
|
|
18
|
+
# Make site available via Mascot.site from Rails app.
|
19
|
+
def self.site
|
20
|
+
configuration.site
|
21
|
+
end
|
22
|
+
|
18
23
|
# Default configuration object for Mascot Rails integration.
|
19
24
|
def self.configuration
|
20
25
|
@configuration ||= RailsConfiguration.new
|
@@ -1,37 +1,31 @@
|
|
1
|
+
require "forwardable"
|
2
|
+
|
1
3
|
module Mascot
|
2
4
|
# Configuration object for rails application.
|
3
5
|
class RailsConfiguration
|
4
6
|
# Store in ./app/pages by default.
|
5
7
|
DEFAULT_SITE_ROOT = "app/pages".freeze
|
6
8
|
|
7
|
-
attr_accessor :site, :
|
9
|
+
attr_accessor :site, :parent_engine, :routes, :cache_resources
|
10
|
+
|
11
|
+
# Delegates configuration points into the Mascot site.
|
12
|
+
extend Forwardable
|
13
|
+
def_delegators :site, :cache_resources, :cache_resources=, :cache_resources?
|
8
14
|
|
9
15
|
# Set defaults.
|
10
16
|
def initialize
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
@partials = false
|
17
|
+
self.routes = true
|
18
|
+
self.parent_engine = Rails.application
|
19
|
+
self.cache_resources = parent_engine.config.cache_classes
|
15
20
|
end
|
16
21
|
|
17
22
|
def site
|
18
|
-
@site ||= Site.new(root_path: default_root).tap do |site|
|
19
|
-
site.resources_pipeline << Extensions::PartialsRemover.new
|
23
|
+
@site ||= Site.new(root_path: default_root, cache_resources: @cache_resources).tap do |site|
|
24
|
+
site.resources_pipeline << Extensions::PartialsRemover.new
|
20
25
|
site.resources_pipeline << Extensions::RailsRequestPaths.new
|
21
26
|
end
|
22
27
|
end
|
23
28
|
|
24
|
-
def root
|
25
|
-
# Production will cache root globally. This drastically speeds up
|
26
|
-
# the speed at which root are served, but if they change it won't be updated.
|
27
|
-
@root = nil unless cache_resources?
|
28
|
-
@root ||= site.root
|
29
|
-
end
|
30
|
-
|
31
|
-
def cache_resources?
|
32
|
-
!!@cache_resources
|
33
|
-
end
|
34
|
-
|
35
29
|
private
|
36
30
|
def default_root
|
37
31
|
Rails.root.join(DEFAULT_SITE_ROOT)
|
@@ -1,12 +1,12 @@
|
|
1
1
|
module Mascot
|
2
2
|
# Route constraint for rails routes.rb file.
|
3
3
|
class RouteConstraint
|
4
|
-
def initialize(
|
5
|
-
@
|
4
|
+
def initialize(resources: Mascot.site.resources)
|
5
|
+
@resources = resources
|
6
6
|
end
|
7
7
|
|
8
8
|
def matches?(request)
|
9
|
-
!!@
|
9
|
+
!!@resources.get(request.path)
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
@@ -4007,3 +4007,1414 @@ I, [2016-09-06T02:09:28.123440 #69893] INFO -- : Processing by Mascot::SiteCont
|
|
4007
4007
|
I, [2016-09-06T02:09:28.123475 #69893] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4008
4008
|
I, [2016-09-06T02:09:30.711438 #69893] INFO -- : Rendered inline template within layouts/application (1208.6ms)
|
4009
4009
|
I, [2016-09-06T02:09:30.712898 #69893] INFO -- : Completed 200 OK in 2589ms (Views: 1210.2ms | ActiveRecord: 0.0ms)
|
4010
|
+
I, [2016-09-08T10:19:21.481220 #15275] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:19:21 -0700
|
4011
|
+
I, [2016-09-08T10:19:21.500330 #15275] INFO -- : Processing by BaselineController#show as HTML
|
4012
|
+
I, [2016-09-08T10:19:21.507743 #15275] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
4013
|
+
I, [2016-09-08T10:19:21.514390 #15275] INFO -- : Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
|
4014
|
+
I, [2016-09-08T10:19:21.515609 #15275] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:19:21 -0700
|
4015
|
+
I, [2016-09-08T10:19:21.516603 #15275] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4016
|
+
I, [2016-09-08T10:19:21.516638 #15275] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4017
|
+
I, [2016-09-08T10:19:26.494954 #15275] INFO -- : Rendered inline template within layouts/application (4973.0ms)
|
4018
|
+
I, [2016-09-08T10:19:26.496859 #15275] INFO -- : Completed 200 OK in 4980ms (Views: 4977.3ms | ActiveRecord: 0.0ms)
|
4019
|
+
I, [2016-09-08T10:19:26.500975 #15275] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:19:26 -0700
|
4020
|
+
I, [2016-09-08T10:19:26.501595 #15275] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4021
|
+
I, [2016-09-08T10:19:26.501637 #15275] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4022
|
+
I, [2016-09-08T10:19:31.593824 #15275] INFO -- : Rendered inline template within layouts/application (5091.1ms)
|
4023
|
+
I, [2016-09-08T10:19:31.596257 #15275] INFO -- : Completed 200 OK in 5094ms (Views: 5093.3ms | ActiveRecord: 0.0ms)
|
4024
|
+
I, [2016-09-08T10:19:32.141318 #15275] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:19:32 -0700
|
4025
|
+
I, [2016-09-08T10:19:32.142989 #15275] INFO -- : Processing by BaselineController#show as HTML
|
4026
|
+
I, [2016-09-08T10:19:32.143510 #15275] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4027
|
+
I, [2016-09-08T10:19:32.144016 #15275] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
4028
|
+
I, [2016-09-08T10:19:32.215610 #15275] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:19:32 -0700
|
4029
|
+
I, [2016-09-08T10:19:32.216110 #15275] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4030
|
+
I, [2016-09-08T10:19:32.216194 #15275] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4031
|
+
I, [2016-09-08T10:19:36.658638 #15275] INFO -- : Rendered inline template within layouts/application (4442.0ms)
|
4032
|
+
I, [2016-09-08T10:19:36.659887 #15275] INFO -- : Completed 200 OK in 4444ms (Views: 4443.2ms | ActiveRecord: 0.0ms)
|
4033
|
+
I, [2016-09-08T10:19:37.015446 #15275] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:19:37 -0700
|
4034
|
+
I, [2016-09-08T10:19:37.016017 #15275] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4035
|
+
I, [2016-09-08T10:19:37.016054 #15275] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4036
|
+
I, [2016-09-08T10:19:41.477463 #15275] INFO -- : Rendered inline template within layouts/application (4460.8ms)
|
4037
|
+
I, [2016-09-08T10:19:41.479201 #15275] INFO -- : Completed 200 OK in 4463ms (Views: 4462.7ms | ActiveRecord: 0.0ms)
|
4038
|
+
I, [2016-09-08T10:19:44.906150 #15275] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:19:44 -0700
|
4039
|
+
I, [2016-09-08T10:19:44.906812 #15275] INFO -- : Processing by BaselineController#show as HTML
|
4040
|
+
I, [2016-09-08T10:19:44.907206 #15275] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4041
|
+
I, [2016-09-08T10:19:44.907671 #15275] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4042
|
+
I, [2016-09-08T10:19:44.908511 #15275] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:19:44 -0700
|
4043
|
+
I, [2016-09-08T10:19:44.909051 #15275] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4044
|
+
I, [2016-09-08T10:19:44.909084 #15275] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4045
|
+
I, [2016-09-08T10:19:51.425445 #15275] INFO -- : Rendered inline template within layouts/application (4917.8ms)
|
4046
|
+
I, [2016-09-08T10:19:51.426414 #15275] INFO -- : Completed 200 OK in 6517ms (Views: 4918.8ms | ActiveRecord: 0.0ms)
|
4047
|
+
I, [2016-09-08T10:19:51.430304 #15275] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:19:51 -0700
|
4048
|
+
I, [2016-09-08T10:19:51.430939 #15275] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4049
|
+
I, [2016-09-08T10:19:51.430983 #15275] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4050
|
+
I, [2016-09-08T10:19:58.576935 #15275] INFO -- : Rendered inline template within layouts/application (5349.5ms)
|
4051
|
+
I, [2016-09-08T10:19:58.578459 #15275] INFO -- : Completed 200 OK in 7147ms (Views: 5351.0ms | ActiveRecord: 0.0ms)
|
4052
|
+
I, [2016-09-08T10:20:01.270240 #15275] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:20:01 -0700
|
4053
|
+
I, [2016-09-08T10:20:01.271655 #15275] INFO -- : Processing by BaselineController#show as HTML
|
4054
|
+
I, [2016-09-08T10:20:01.272254 #15275] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4055
|
+
I, [2016-09-08T10:20:01.272826 #15275] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
4056
|
+
I, [2016-09-08T10:20:01.499307 #15275] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:20:01 -0700
|
4057
|
+
I, [2016-09-08T10:20:01.501228 #15275] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4058
|
+
I, [2016-09-08T10:20:01.501388 #15275] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4059
|
+
I, [2016-09-08T10:20:08.009824 #15275] INFO -- : Rendered inline template within layouts/application (4809.8ms)
|
4060
|
+
I, [2016-09-08T10:20:08.010813 #15275] INFO -- : Completed 200 OK in 6509ms (Views: 4810.8ms | ActiveRecord: 0.0ms)
|
4061
|
+
I, [2016-09-08T10:20:08.332033 #15275] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:20:08 -0700
|
4062
|
+
I, [2016-09-08T10:20:08.333216 #15275] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4063
|
+
I, [2016-09-08T10:20:08.333254 #15275] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4064
|
+
I, [2016-09-08T10:20:15.377858 #15275] INFO -- : Rendered inline template within layouts/application (5443.6ms)
|
4065
|
+
I, [2016-09-08T10:20:15.379779 #15275] INFO -- : Completed 200 OK in 7046ms (Views: 5445.5ms | ActiveRecord: 0.0ms)
|
4066
|
+
I, [2016-09-08T10:20:57.749229 #15347] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:20:57 -0700
|
4067
|
+
I, [2016-09-08T10:20:57.766190 #15347] INFO -- : Processing by BaselineController#show as HTML
|
4068
|
+
I, [2016-09-08T10:20:57.772389 #15347] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
4069
|
+
I, [2016-09-08T10:20:57.779153 #15347] INFO -- : Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
|
4070
|
+
I, [2016-09-08T10:20:57.780418 #15347] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:20:57 -0700
|
4071
|
+
I, [2016-09-08T10:20:57.781595 #15347] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4072
|
+
I, [2016-09-08T10:20:57.781629 #15347] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4073
|
+
I, [2016-09-08T10:21:01.171304 #15347] INFO -- : Rendered inline template within layouts/application (3385.0ms)
|
4074
|
+
I, [2016-09-08T10:21:01.173254 #15347] INFO -- : Completed 200 OK in 3392ms (Views: 3389.0ms | ActiveRecord: 0.0ms)
|
4075
|
+
I, [2016-09-08T10:21:01.176857 #15347] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:21:01 -0700
|
4076
|
+
I, [2016-09-08T10:21:01.177525 #15347] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4077
|
+
I, [2016-09-08T10:21:01.177569 #15347] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4078
|
+
I, [2016-09-08T10:21:01.418222 #15347] INFO -- : Rendered inline template within layouts/application (239.9ms)
|
4079
|
+
I, [2016-09-08T10:21:01.420330 #15347] INFO -- : Completed 200 OK in 243ms (Views: 242.1ms | ActiveRecord: 0.0ms)
|
4080
|
+
I, [2016-09-08T10:21:01.826458 #15347] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:21:01 -0700
|
4081
|
+
I, [2016-09-08T10:21:01.827584 #15347] INFO -- : Processing by BaselineController#show as HTML
|
4082
|
+
I, [2016-09-08T10:21:01.828185 #15347] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4083
|
+
I, [2016-09-08T10:21:01.828823 #15347] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
4084
|
+
I, [2016-09-08T10:21:01.937438 #15347] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:21:01 -0700
|
4085
|
+
I, [2016-09-08T10:21:01.938146 #15347] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4086
|
+
I, [2016-09-08T10:21:01.938193 #15347] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4087
|
+
I, [2016-09-08T10:21:02.079628 #15347] INFO -- : Rendered inline template within layouts/application (141.0ms)
|
4088
|
+
I, [2016-09-08T10:21:02.080690 #15347] INFO -- : Completed 200 OK in 142ms (Views: 142.2ms | ActiveRecord: 0.0ms)
|
4089
|
+
I, [2016-09-08T10:21:02.208882 #15347] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:21:02 -0700
|
4090
|
+
I, [2016-09-08T10:21:02.209446 #15347] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4091
|
+
I, [2016-09-08T10:21:02.209490 #15347] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4092
|
+
I, [2016-09-08T10:21:02.333409 #15347] INFO -- : Rendered inline template within layouts/application (123.5ms)
|
4093
|
+
I, [2016-09-08T10:21:02.335042 #15347] INFO -- : Completed 200 OK in 125ms (Views: 125.2ms | ActiveRecord: 0.0ms)
|
4094
|
+
I, [2016-09-08T10:21:05.870673 #15347] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:21:05 -0700
|
4095
|
+
I, [2016-09-08T10:21:05.871230 #15347] INFO -- : Processing by BaselineController#show as HTML
|
4096
|
+
I, [2016-09-08T10:21:05.871710 #15347] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4097
|
+
I, [2016-09-08T10:21:05.872145 #15347] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4098
|
+
I, [2016-09-08T10:21:05.873011 #15347] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:21:05 -0700
|
4099
|
+
I, [2016-09-08T10:21:05.873398 #15347] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4100
|
+
I, [2016-09-08T10:21:05.873428 #15347] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4101
|
+
I, [2016-09-08T10:21:07.700571 #15347] INFO -- : Rendered inline template within layouts/application (173.6ms)
|
4102
|
+
I, [2016-09-08T10:21:07.702318 #15347] INFO -- : Completed 200 OK in 1829ms (Views: 175.4ms | ActiveRecord: 0.0ms)
|
4103
|
+
I, [2016-09-08T10:21:07.706445 #15347] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:21:07 -0700
|
4104
|
+
I, [2016-09-08T10:21:07.706954 #15347] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4105
|
+
I, [2016-09-08T10:21:07.706994 #15347] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4106
|
+
I, [2016-09-08T10:21:09.559342 #15347] INFO -- : Rendered inline template within layouts/application (158.6ms)
|
4107
|
+
I, [2016-09-08T10:21:09.561151 #15347] INFO -- : Completed 200 OK in 1854ms (Views: 160.5ms | ActiveRecord: 0.0ms)
|
4108
|
+
I, [2016-09-08T10:21:11.830618 #15347] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:21:11 -0700
|
4109
|
+
I, [2016-09-08T10:21:11.831240 #15347] INFO -- : Processing by BaselineController#show as HTML
|
4110
|
+
I, [2016-09-08T10:21:11.831722 #15347] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4111
|
+
I, [2016-09-08T10:21:11.832207 #15347] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4112
|
+
I, [2016-09-08T10:21:12.013411 #15347] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:21:12 -0700
|
4113
|
+
I, [2016-09-08T10:21:12.014008 #15347] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4114
|
+
I, [2016-09-08T10:21:12.014048 #15347] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4115
|
+
I, [2016-09-08T10:21:13.790741 #15347] INFO -- : Rendered inline template within layouts/application (146.4ms)
|
4116
|
+
I, [2016-09-08T10:21:13.792113 #15347] INFO -- : Completed 200 OK in 1778ms (Views: 148.2ms | ActiveRecord: 0.0ms)
|
4117
|
+
I, [2016-09-08T10:21:14.031807 #15347] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:21:14 -0700
|
4118
|
+
I, [2016-09-08T10:21:14.032330 #15347] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4119
|
+
I, [2016-09-08T10:21:14.032374 #15347] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4120
|
+
I, [2016-09-08T10:21:15.764686 #15347] INFO -- : Rendered inline template within layouts/application (147.5ms)
|
4121
|
+
I, [2016-09-08T10:21:15.766664 #15347] INFO -- : Completed 200 OK in 1734ms (Views: 149.5ms | ActiveRecord: 0.0ms)
|
4122
|
+
I, [2016-09-08T10:22:54.191375 #15454] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:22:54 -0700
|
4123
|
+
I, [2016-09-08T10:22:54.207797 #15454] INFO -- : Processing by BaselineController#show as HTML
|
4124
|
+
I, [2016-09-08T10:22:54.214296 #15454] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
4125
|
+
I, [2016-09-08T10:22:54.221109 #15454] INFO -- : Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
4126
|
+
I, [2016-09-08T10:22:54.222407 #15454] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:22:54 -0700
|
4127
|
+
I, [2016-09-08T10:22:54.223570 #15454] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4128
|
+
I, [2016-09-08T10:22:54.223608 #15454] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4129
|
+
I, [2016-09-08T10:22:59.335778 #15454] INFO -- : Rendered inline template within layouts/application (5107.7ms)
|
4130
|
+
I, [2016-09-08T10:22:59.337698 #15454] INFO -- : Completed 200 OK in 5114ms (Views: 5111.6ms | ActiveRecord: 0.0ms)
|
4131
|
+
I, [2016-09-08T10:22:59.341242 #15454] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:22:59 -0700
|
4132
|
+
I, [2016-09-08T10:22:59.341778 #15454] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4133
|
+
I, [2016-09-08T10:22:59.341845 #15454] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4134
|
+
I, [2016-09-08T10:23:04.797109 #15454] INFO -- : Rendered inline template within layouts/application (5454.5ms)
|
4135
|
+
I, [2016-09-08T10:23:04.798884 #15454] INFO -- : Completed 200 OK in 5457ms (Views: 5456.2ms | ActiveRecord: 0.0ms)
|
4136
|
+
I, [2016-09-08T10:23:05.253318 #15454] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:23:05 -0700
|
4137
|
+
I, [2016-09-08T10:23:05.253998 #15454] INFO -- : Processing by BaselineController#show as HTML
|
4138
|
+
I, [2016-09-08T10:23:05.254455 #15454] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4139
|
+
I, [2016-09-08T10:23:05.254929 #15454] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4140
|
+
I, [2016-09-08T10:23:05.355720 #15454] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:23:05 -0700
|
4141
|
+
I, [2016-09-08T10:23:05.356264 #15454] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4142
|
+
I, [2016-09-08T10:23:05.356297 #15454] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4143
|
+
I, [2016-09-08T10:23:10.551553 #15454] INFO -- : Rendered inline template within layouts/application (5194.8ms)
|
4144
|
+
I, [2016-09-08T10:23:10.552495 #15454] INFO -- : Completed 200 OK in 5196ms (Views: 5195.7ms | ActiveRecord: 0.0ms)
|
4145
|
+
I, [2016-09-08T10:23:10.829833 #15454] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:23:10 -0700
|
4146
|
+
I, [2016-09-08T10:23:10.830396 #15454] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4147
|
+
I, [2016-09-08T10:23:10.830445 #15454] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4148
|
+
I, [2016-09-08T10:23:16.123479 #15454] INFO -- : Rendered inline template within layouts/application (5292.6ms)
|
4149
|
+
I, [2016-09-08T10:23:16.125322 #15454] INFO -- : Completed 200 OK in 5295ms (Views: 5294.4ms | ActiveRecord: 0.0ms)
|
4150
|
+
I, [2016-09-08T10:23:19.792647 #15454] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:23:19 -0700
|
4151
|
+
I, [2016-09-08T10:23:19.793183 #15454] INFO -- : Processing by BaselineController#show as HTML
|
4152
|
+
I, [2016-09-08T10:23:19.793557 #15454] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4153
|
+
I, [2016-09-08T10:23:19.794063 #15454] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4154
|
+
I, [2016-09-08T10:23:19.794877 #15454] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:23:19 -0700
|
4155
|
+
I, [2016-09-08T10:23:19.795331 #15454] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4156
|
+
I, [2016-09-08T10:23:19.795362 #15454] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4157
|
+
I, [2016-09-08T10:23:26.814756 #15454] INFO -- : Rendered inline template within layouts/application (5317.7ms)
|
4158
|
+
I, [2016-09-08T10:23:26.815650 #15454] INFO -- : Completed 200 OK in 7020ms (Views: 5318.6ms | ActiveRecord: 0.0ms)
|
4159
|
+
I, [2016-09-08T10:23:26.819163 #15454] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:23:26 -0700
|
4160
|
+
I, [2016-09-08T10:23:26.819693 #15454] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4161
|
+
I, [2016-09-08T10:23:26.819740 #15454] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4162
|
+
I, [2016-09-08T10:23:34.069806 #15454] INFO -- : Rendered inline template within layouts/application (5493.8ms)
|
4163
|
+
I, [2016-09-08T10:23:34.281849 #15454] INFO -- : Completed 200 OK in 7462ms (Views: 5495.7ms | ActiveRecord: 0.0ms)
|
4164
|
+
I, [2016-09-08T10:23:36.476938 #15454] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:23:36 -0700
|
4165
|
+
I, [2016-09-08T10:23:36.477602 #15454] INFO -- : Processing by BaselineController#show as HTML
|
4166
|
+
I, [2016-09-08T10:23:36.478119 #15454] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4167
|
+
I, [2016-09-08T10:23:36.478641 #15454] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
4168
|
+
I, [2016-09-08T10:23:36.641867 #15454] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:23:36 -0700
|
4169
|
+
I, [2016-09-08T10:23:36.642511 #15454] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4170
|
+
I, [2016-09-08T10:23:36.642564 #15454] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4171
|
+
I, [2016-09-08T10:23:43.622776 #15454] INFO -- : Rendered inline template within layouts/application (5363.4ms)
|
4172
|
+
I, [2016-09-08T10:23:43.623684 #15454] INFO -- : Completed 200 OK in 6981ms (Views: 5364.3ms | ActiveRecord: 0.0ms)
|
4173
|
+
I, [2016-09-08T10:23:43.820567 #15454] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:23:43 -0700
|
4174
|
+
I, [2016-09-08T10:23:43.821120 #15454] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4175
|
+
I, [2016-09-08T10:23:43.821154 #15454] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4176
|
+
I, [2016-09-08T10:23:50.795218 #15454] INFO -- : Rendered inline template within layouts/application (5364.9ms)
|
4177
|
+
I, [2016-09-08T10:23:50.796998 #15454] INFO -- : Completed 200 OK in 6976ms (Views: 5366.7ms | ActiveRecord: 0.0ms)
|
4178
|
+
I, [2016-09-08T10:26:18.696530 #15594] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:26:18 -0700
|
4179
|
+
I, [2016-09-08T10:26:18.712571 #15594] INFO -- : Processing by BaselineController#show as HTML
|
4180
|
+
I, [2016-09-08T10:26:18.719145 #15594] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
4181
|
+
I, [2016-09-08T10:26:18.725583 #15594] INFO -- : Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
|
4182
|
+
I, [2016-09-08T10:26:18.726744 #15594] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:26:18 -0700
|
4183
|
+
I, [2016-09-08T10:26:18.728740 #15594] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4184
|
+
I, [2016-09-08T10:26:18.728801 #15594] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4185
|
+
I, [2016-09-08T10:26:24.049970 #15594] INFO -- : Rendered inline template within layouts/application (5317.1ms)
|
4186
|
+
I, [2016-09-08T10:26:24.051939 #15594] INFO -- : Completed 200 OK in 5323ms (Views: 5320.5ms | ActiveRecord: 0.0ms)
|
4187
|
+
I, [2016-09-08T10:26:24.055503 #15594] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:26:24 -0700
|
4188
|
+
I, [2016-09-08T10:26:24.056200 #15594] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4189
|
+
I, [2016-09-08T10:26:24.056247 #15594] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4190
|
+
I, [2016-09-08T10:26:29.339578 #15594] INFO -- : Rendered inline template within layouts/application (5282.5ms)
|
4191
|
+
I, [2016-09-08T10:26:29.341362 #15594] INFO -- : Completed 200 OK in 5285ms (Views: 5284.2ms | ActiveRecord: 0.0ms)
|
4192
|
+
I, [2016-09-08T10:26:29.807738 #15594] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:26:29 -0700
|
4193
|
+
I, [2016-09-08T10:26:29.808688 #15594] INFO -- : Processing by BaselineController#show as HTML
|
4194
|
+
I, [2016-09-08T10:26:29.810162 #15594] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.2ms)
|
4195
|
+
I, [2016-09-08T10:26:29.811190 #15594] INFO -- : Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
4196
|
+
I, [2016-09-08T10:26:29.885246 #15594] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:26:29 -0700
|
4197
|
+
I, [2016-09-08T10:26:29.886023 #15594] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4198
|
+
I, [2016-09-08T10:26:29.886071 #15594] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4199
|
+
I, [2016-09-08T10:26:34.317290 #15594] INFO -- : Rendered inline template within layouts/application (4430.8ms)
|
4200
|
+
I, [2016-09-08T10:26:34.318285 #15594] INFO -- : Completed 200 OK in 4432ms (Views: 4431.7ms | ActiveRecord: 0.0ms)
|
4201
|
+
I, [2016-09-08T10:26:34.642755 #15594] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:26:34 -0700
|
4202
|
+
I, [2016-09-08T10:26:34.643333 #15594] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4203
|
+
I, [2016-09-08T10:26:34.643380 #15594] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4204
|
+
I, [2016-09-08T10:26:39.047672 #15594] INFO -- : Rendered inline template within layouts/application (4403.9ms)
|
4205
|
+
I, [2016-09-08T10:26:39.049855 #15594] INFO -- : Completed 200 OK in 4406ms (Views: 4405.9ms | ActiveRecord: 0.0ms)
|
4206
|
+
I, [2016-09-08T10:26:42.525779 #15594] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:26:42 -0700
|
4207
|
+
I, [2016-09-08T10:26:42.526470 #15594] INFO -- : Processing by BaselineController#show as HTML
|
4208
|
+
I, [2016-09-08T10:26:42.526879 #15594] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4209
|
+
I, [2016-09-08T10:26:42.527391 #15594] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4210
|
+
I, [2016-09-08T10:26:42.528631 #15594] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:26:42 -0700
|
4211
|
+
I, [2016-09-08T10:26:42.529121 #15594] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4212
|
+
I, [2016-09-08T10:26:42.529157 #15594] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4213
|
+
I, [2016-09-08T10:26:49.772177 #15594] INFO -- : Rendered inline template within layouts/application (5217.7ms)
|
4214
|
+
I, [2016-09-08T10:26:49.773306 #15594] INFO -- : Completed 200 OK in 7244ms (Views: 5218.9ms | ActiveRecord: 0.0ms)
|
4215
|
+
I, [2016-09-08T10:26:49.777347 #15594] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:26:49 -0700
|
4216
|
+
I, [2016-09-08T10:26:49.777991 #15594] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4217
|
+
I, [2016-09-08T10:26:49.778033 #15594] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4218
|
+
I, [2016-09-08T10:26:57.269606 #15594] INFO -- : Rendered inline template within layouts/application (5532.3ms)
|
4219
|
+
I, [2016-09-08T10:26:57.271203 #15594] INFO -- : Completed 200 OK in 7493ms (Views: 5533.9ms | ActiveRecord: 0.0ms)
|
4220
|
+
I, [2016-09-08T10:26:59.488445 #15594] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:26:59 -0700
|
4221
|
+
I, [2016-09-08T10:26:59.489324 #15594] INFO -- : Processing by BaselineController#show as HTML
|
4222
|
+
I, [2016-09-08T10:26:59.489896 #15594] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
4223
|
+
I, [2016-09-08T10:26:59.490353 #15594] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
4224
|
+
I, [2016-09-08T10:26:59.625530 #15594] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:26:59 -0700
|
4225
|
+
I, [2016-09-08T10:26:59.626077 #15594] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4226
|
+
I, [2016-09-08T10:26:59.626113 #15594] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4227
|
+
I, [2016-09-08T10:27:06.498614 #15594] INFO -- : Rendered inline template within layouts/application (5291.7ms)
|
4228
|
+
I, [2016-09-08T10:27:06.499817 #15594] INFO -- : Completed 200 OK in 6874ms (Views: 5292.9ms | ActiveRecord: 0.0ms)
|
4229
|
+
I, [2016-09-08T10:27:06.978620 #15594] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:27:06 -0700
|
4230
|
+
I, [2016-09-08T10:27:06.979114 #15594] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4231
|
+
I, [2016-09-08T10:27:06.979145 #15594] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4232
|
+
I, [2016-09-08T10:27:13.866043 #15594] INFO -- : Rendered inline template within layouts/application (5092.9ms)
|
4233
|
+
I, [2016-09-08T10:27:13.868160 #15594] INFO -- : Completed 200 OK in 6889ms (Views: 5095.0ms | ActiveRecord: 0.0ms)
|
4234
|
+
I, [2016-09-08T10:28:09.162060 #15669] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:28:09 -0700
|
4235
|
+
I, [2016-09-08T10:28:09.179088 #15669] INFO -- : Processing by BaselineController#show as HTML
|
4236
|
+
I, [2016-09-08T10:28:09.187445 #15669] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
4237
|
+
I, [2016-09-08T10:28:09.194353 #15669] INFO -- : Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms)
|
4238
|
+
I, [2016-09-08T10:28:09.196061 #15669] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:28:09 -0700
|
4239
|
+
I, [2016-09-08T10:28:09.197367 #15669] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4240
|
+
I, [2016-09-08T10:28:09.197405 #15669] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4241
|
+
I, [2016-09-08T10:28:14.307246 #15669] INFO -- : Rendered inline template within layouts/application (5105.2ms)
|
4242
|
+
I, [2016-09-08T10:28:14.309449 #15669] INFO -- : Completed 200 OK in 5112ms (Views: 5109.4ms | ActiveRecord: 0.0ms)
|
4243
|
+
I, [2016-09-08T10:28:14.313614 #15669] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:28:14 -0700
|
4244
|
+
I, [2016-09-08T10:28:14.314281 #15669] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4245
|
+
I, [2016-09-08T10:28:14.314324 #15669] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4246
|
+
I, [2016-09-08T10:28:19.518409 #15669] INFO -- : Rendered inline template within layouts/application (5203.3ms)
|
4247
|
+
I, [2016-09-08T10:28:19.520095 #15669] INFO -- : Completed 200 OK in 5206ms (Views: 5204.9ms | ActiveRecord: 0.0ms)
|
4248
|
+
I, [2016-09-08T10:28:19.939770 #15669] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:28:19 -0700
|
4249
|
+
I, [2016-09-08T10:28:19.940390 #15669] INFO -- : Processing by BaselineController#show as HTML
|
4250
|
+
I, [2016-09-08T10:28:19.940950 #15669] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4251
|
+
I, [2016-09-08T10:28:19.941435 #15669] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
4252
|
+
I, [2016-09-08T10:28:20.013576 #15669] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:28:20 -0700
|
4253
|
+
I, [2016-09-08T10:28:20.014209 #15669] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4254
|
+
I, [2016-09-08T10:28:20.014258 #15669] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4255
|
+
I, [2016-09-08T10:28:24.449374 #15669] INFO -- : Rendered inline template within layouts/application (4434.6ms)
|
4256
|
+
I, [2016-09-08T10:28:24.450689 #15669] INFO -- : Completed 200 OK in 4436ms (Views: 4435.9ms | ActiveRecord: 0.0ms)
|
4257
|
+
I, [2016-09-08T10:28:24.795303 #15669] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:28:24 -0700
|
4258
|
+
I, [2016-09-08T10:28:24.795966 #15669] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4259
|
+
I, [2016-09-08T10:28:24.796028 #15669] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4260
|
+
I, [2016-09-08T10:28:29.674124 #15669] INFO -- : Rendered inline template within layouts/application (4877.6ms)
|
4261
|
+
I, [2016-09-08T10:28:29.675979 #15669] INFO -- : Completed 200 OK in 4880ms (Views: 4879.4ms | ActiveRecord: 0.0ms)
|
4262
|
+
I, [2016-09-08T10:28:33.242652 #15669] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:28:33 -0700
|
4263
|
+
I, [2016-09-08T10:28:33.243248 #15669] INFO -- : Processing by BaselineController#show as HTML
|
4264
|
+
I, [2016-09-08T10:28:33.243595 #15669] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4265
|
+
I, [2016-09-08T10:28:33.244071 #15669] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4266
|
+
I, [2016-09-08T10:28:33.244890 #15669] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:28:33 -0700
|
4267
|
+
I, [2016-09-08T10:28:33.245271 #15669] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4268
|
+
I, [2016-09-08T10:28:33.245301 #15669] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4269
|
+
I, [2016-09-08T10:28:40.490931 #15669] INFO -- : Rendered inline template within layouts/application (5521.0ms)
|
4270
|
+
I, [2016-09-08T10:28:40.491932 #15669] INFO -- : Completed 200 OK in 7247ms (Views: 5522.0ms | ActiveRecord: 0.0ms)
|
4271
|
+
I, [2016-09-08T10:28:40.495839 #15669] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:28:40 -0700
|
4272
|
+
I, [2016-09-08T10:28:40.496367 #15669] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4273
|
+
I, [2016-09-08T10:28:40.496403 #15669] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4274
|
+
I, [2016-09-08T10:28:48.086442 #15669] INFO -- : Rendered inline template within layouts/application (5440.1ms)
|
4275
|
+
I, [2016-09-08T10:28:48.087997 #15669] INFO -- : Completed 200 OK in 7592ms (Views: 5441.8ms | ActiveRecord: 0.0ms)
|
4276
|
+
I, [2016-09-08T10:28:50.215815 #15669] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:28:50 -0700
|
4277
|
+
I, [2016-09-08T10:28:50.216416 #15669] INFO -- : Processing by BaselineController#show as HTML
|
4278
|
+
I, [2016-09-08T10:28:50.217000 #15669] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4279
|
+
I, [2016-09-08T10:28:50.217519 #15669] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
4280
|
+
I, [2016-09-08T10:28:50.360542 #15669] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:28:50 -0700
|
4281
|
+
I, [2016-09-08T10:28:50.361139 #15669] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4282
|
+
I, [2016-09-08T10:28:50.361184 #15669] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4283
|
+
I, [2016-09-08T10:28:56.686987 #15669] INFO -- : Rendered inline template within layouts/application (4816.9ms)
|
4284
|
+
I, [2016-09-08T10:28:56.687910 #15669] INFO -- : Completed 200 OK in 6327ms (Views: 4817.7ms | ActiveRecord: 0.0ms)
|
4285
|
+
I, [2016-09-08T10:28:57.141457 #15669] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:28:57 -0700
|
4286
|
+
I, [2016-09-08T10:28:57.141980 #15669] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4287
|
+
I, [2016-09-08T10:28:57.142015 #15669] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4288
|
+
I, [2016-09-08T10:29:03.537364 #15669] INFO -- : Rendered inline template within layouts/application (4892.1ms)
|
4289
|
+
I, [2016-09-08T10:29:03.537551 #15669] INFO -- : Completed 500 Internal Server Error in 6395ms (ActiveRecord: 0.0ms)
|
4290
|
+
F, [2016-09-08T10:29:03.540392 #15669] FATAL -- :
|
4291
|
+
Interrupt ():
|
4292
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/frontmatter.rb:15:in `match'
|
4293
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/frontmatter.rb:15:in `match'
|
4294
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/frontmatter.rb:15:in `initialize'
|
4295
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/asset.rb:82:in `new'
|
4296
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/asset.rb:82:in `frontmatter'
|
4297
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/resource.rb:32:in `data'
|
4298
|
+
inline template:5:in `block in _inline_template___1212231401116762073_70332289032240'
|
4299
|
+
inline template:4:in `each'
|
4300
|
+
inline template:4:in `_inline_template___1212231401116762073_70332289032240'
|
4301
|
+
actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
|
4302
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
|
4303
|
+
actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
|
4304
|
+
actionview (4.2.7) lib/action_view/template.rb:143:in `render'
|
4305
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
|
4306
|
+
actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
|
4307
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
|
4308
|
+
activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
4309
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
|
4310
|
+
actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
|
4311
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
|
4312
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
|
4313
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
|
4314
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
|
4315
|
+
actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
|
4316
|
+
actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
|
4317
|
+
actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
|
4318
|
+
actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
4319
|
+
actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
|
4320
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
4321
|
+
actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
|
4322
|
+
actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
|
4323
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
|
4324
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
|
4325
|
+
activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
4326
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
|
4327
|
+
activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
4328
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
|
4329
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
|
4330
|
+
activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
4331
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
|
4332
|
+
/Users/bradgessler/Projects/mascot/gem/mascot-rails/app/controllers/concerns/mascot/site_pages.rb:14:in `show'
|
4333
|
+
actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
4334
|
+
actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
|
4335
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
4336
|
+
actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
4337
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
|
4338
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
|
4339
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
|
4340
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
|
4341
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
4342
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
4343
|
+
actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
4344
|
+
actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
4345
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
4346
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
|
4347
|
+
activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
4348
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
|
4349
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
4350
|
+
actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
4351
|
+
activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
4352
|
+
actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
|
4353
|
+
actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
|
4354
|
+
actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
|
4355
|
+
actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
4356
|
+
actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
|
4357
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
|
4358
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
|
4359
|
+
actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:49:in `serve'
|
4360
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
4361
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each'
|
4362
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
|
4363
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
4364
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
4365
|
+
rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
|
4366
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
4367
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
4368
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
4369
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
4370
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
4371
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
4372
|
+
activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
|
4373
|
+
activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
4374
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
4375
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
4376
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
4377
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
4378
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
4379
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
4380
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
4381
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
4382
|
+
railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
|
4383
|
+
railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
|
4384
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
4385
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
|
4386
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
|
4387
|
+
railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
|
4388
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
4389
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
4390
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
4391
|
+
activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
4392
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
|
4393
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
4394
|
+
railties (4.2.7) lib/rails/engine.rb:518:in `call'
|
4395
|
+
railties (4.2.7) lib/rails/application.rb:165:in `call'
|
4396
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
4397
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
4398
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
4399
|
+
/benchmarks/rails_rendering_benchmark.rb:9:in `get!'
|
4400
|
+
/benchmarks/rails_rendering_benchmark.rb:72:in `block (5 levels) in <main>'
|
4401
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:293:in `measure'
|
4402
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:268:in `block in bmbm'
|
4403
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:265:in `map'
|
4404
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:265:in `bmbm'
|
4405
|
+
/Users/bradgessler/Projects/mascot/gem/support/benchmark_dsl.rb:27:in `benchmark'
|
4406
|
+
/benchmarks/rails_rendering_benchmark.rb:55:in `block (2 levels) in <main>'
|
4407
|
+
/benchmarks/rails_rendering_benchmark.rb:52:in `each'
|
4408
|
+
/benchmarks/rails_rendering_benchmark.rb:52:in `block in <main>'
|
4409
|
+
/Users/bradgessler/Projects/mascot/gem/support/benchmark_dsl.rb:18:in `fake_site'
|
4410
|
+
/benchmarks/rails_rendering_benchmark.rb:15:in `<main>'
|
4411
|
+
|
4412
|
+
|
4413
|
+
I, [2016-09-08T10:29:23.706198 #15733] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:29:23 -0700
|
4414
|
+
I, [2016-09-08T10:29:23.722262 #15733] INFO -- : Processing by BaselineController#show as HTML
|
4415
|
+
I, [2016-09-08T10:29:23.728690 #15733] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
4416
|
+
I, [2016-09-08T10:29:23.735534 #15733] INFO -- : Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
|
4417
|
+
I, [2016-09-08T10:29:23.736809 #15733] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:29:23 -0700
|
4418
|
+
I, [2016-09-08T10:29:23.737942 #15733] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4419
|
+
I, [2016-09-08T10:29:23.737985 #15733] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4420
|
+
I, [2016-09-08T10:29:28.843565 #15733] INFO -- : Rendered inline template within layouts/application (5101.1ms)
|
4421
|
+
I, [2016-09-08T10:29:28.845633 #15733] INFO -- : Completed 200 OK in 5108ms (Views: 5105.0ms | ActiveRecord: 0.0ms)
|
4422
|
+
I, [2016-09-08T10:29:28.850476 #15733] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:29:28 -0700
|
4423
|
+
I, [2016-09-08T10:29:28.852036 #15733] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4424
|
+
I, [2016-09-08T10:29:28.852080 #15733] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4425
|
+
I, [2016-09-08T10:29:34.532345 #15733] INFO -- : Rendered inline template within layouts/application (5679.6ms)
|
4426
|
+
I, [2016-09-08T10:29:34.534042 #15733] INFO -- : Completed 200 OK in 5682ms (Views: 5681.2ms | ActiveRecord: 0.0ms)
|
4427
|
+
I, [2016-09-08T10:29:34.954463 #15733] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:29:34 -0700
|
4428
|
+
I, [2016-09-08T10:29:34.955163 #15733] INFO -- : Processing by BaselineController#show as HTML
|
4429
|
+
I, [2016-09-08T10:29:34.955593 #15733] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4430
|
+
I, [2016-09-08T10:29:34.956129 #15733] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4431
|
+
I, [2016-09-08T10:29:35.059404 #15733] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:29:35 -0700
|
4432
|
+
I, [2016-09-08T10:29:35.059996 #15733] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4433
|
+
I, [2016-09-08T10:29:35.060043 #15733] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4434
|
+
I, [2016-09-08T10:29:40.264114 #15733] INFO -- : Rendered inline template within layouts/application (5203.4ms)
|
4435
|
+
I, [2016-09-08T10:29:40.265407 #15733] INFO -- : Completed 200 OK in 5205ms (Views: 5204.8ms | ActiveRecord: 0.0ms)
|
4436
|
+
I, [2016-09-08T10:29:40.540365 #15733] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:29:40 -0700
|
4437
|
+
I, [2016-09-08T10:29:40.541033 #15733] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4438
|
+
I, [2016-09-08T10:29:40.541191 #15733] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4439
|
+
I, [2016-09-08T10:29:45.737503 #15733] INFO -- : Rendered inline template within layouts/application (5195.8ms)
|
4440
|
+
I, [2016-09-08T10:29:45.739242 #15733] INFO -- : Completed 200 OK in 5198ms (Views: 5197.5ms | ActiveRecord: 0.0ms)
|
4441
|
+
I, [2016-09-08T10:29:49.549345 #15733] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:29:49 -0700
|
4442
|
+
I, [2016-09-08T10:29:49.550624 #15733] INFO -- : Processing by BaselineController#show as HTML
|
4443
|
+
I, [2016-09-08T10:29:49.551444 #15733] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4444
|
+
I, [2016-09-08T10:29:49.551945 #15733] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
4445
|
+
I, [2016-09-08T10:29:49.553082 #15733] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:29:49 -0700
|
4446
|
+
I, [2016-09-08T10:29:49.553583 #15733] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4447
|
+
I, [2016-09-08T10:29:49.553618 #15733] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4448
|
+
I, [2016-09-08T10:29:57.464816 #15733] INFO -- : Rendered inline template within layouts/application (6158.0ms)
|
4449
|
+
I, [2016-09-08T10:29:57.465988 #15733] INFO -- : Completed 200 OK in 7912ms (Views: 6159.1ms | ActiveRecord: 0.0ms)
|
4450
|
+
I, [2016-09-08T10:29:57.469519 #15733] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:29:57 -0700
|
4451
|
+
I, [2016-09-08T10:29:57.470369 #15733] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4452
|
+
I, [2016-09-08T10:29:57.470412 #15733] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4453
|
+
I, [2016-09-08T10:30:06.133386 #15733] INFO -- : Rendered inline template within layouts/application (6804.5ms)
|
4454
|
+
I, [2016-09-08T10:30:06.135091 #15733] INFO -- : Completed 200 OK in 8665ms (Views: 6806.2ms | ActiveRecord: 0.0ms)
|
4455
|
+
I, [2016-09-08T10:30:08.398276 #15733] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:30:08 -0700
|
4456
|
+
I, [2016-09-08T10:30:08.398957 #15733] INFO -- : Processing by BaselineController#show as HTML
|
4457
|
+
I, [2016-09-08T10:30:08.399553 #15733] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4458
|
+
I, [2016-09-08T10:30:08.400129 #15733] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
4459
|
+
I, [2016-09-08T10:30:08.572172 #15733] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:30:08 -0700
|
4460
|
+
I, [2016-09-08T10:30:08.572769 #15733] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4461
|
+
I, [2016-09-08T10:30:08.572816 #15733] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4462
|
+
I, [2016-09-08T10:30:15.635206 #15733] INFO -- : Rendered inline template within layouts/application (5422.7ms)
|
4463
|
+
I, [2016-09-08T10:30:15.636479 #15733] INFO -- : Completed 200 OK in 7064ms (Views: 5424.0ms | ActiveRecord: 0.0ms)
|
4464
|
+
I, [2016-09-08T10:30:15.841645 #15733] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:30:15 -0700
|
4465
|
+
I, [2016-09-08T10:30:15.842364 #15733] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4466
|
+
I, [2016-09-08T10:30:15.842467 #15733] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4467
|
+
I, [2016-09-08T10:30:22.651559 #15733] INFO -- : Rendered inline template within layouts/application (5235.9ms)
|
4468
|
+
I, [2016-09-08T10:30:22.653441 #15733] INFO -- : Completed 200 OK in 6811ms (Views: 5237.7ms | ActiveRecord: 0.0ms)
|
4469
|
+
I, [2016-09-08T10:40:12.861624 #16357] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:40:12 -0700
|
4470
|
+
I, [2016-09-08T10:40:12.876890 #16357] INFO -- : Processing by BaselineController#show as HTML
|
4471
|
+
I, [2016-09-08T10:40:12.883745 #16357] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
4472
|
+
I, [2016-09-08T10:40:12.889713 #16357] INFO -- : Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
|
4473
|
+
I, [2016-09-08T10:40:12.890771 #16357] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:40:12 -0700
|
4474
|
+
I, [2016-09-08T10:40:12.891714 #16357] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4475
|
+
I, [2016-09-08T10:40:12.891745 #16357] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4476
|
+
I, [2016-09-08T10:40:15.674357 #16357] INFO -- : Rendered inline template within layouts/application (2776.2ms)
|
4477
|
+
I, [2016-09-08T10:40:15.676158 #16357] INFO -- : Completed 200 OK in 2784ms (Views: 2780.6ms | ActiveRecord: 0.0ms)
|
4478
|
+
I, [2016-09-08T10:40:15.679419 #16357] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:40:15 -0700
|
4479
|
+
I, [2016-09-08T10:40:15.679903 #16357] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4480
|
+
I, [2016-09-08T10:40:15.679938 #16357] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4481
|
+
I, [2016-09-08T10:40:18.555021 #16357] INFO -- : Rendered inline template within layouts/application (2874.5ms)
|
4482
|
+
I, [2016-09-08T10:40:18.556979 #16357] INFO -- : Completed 200 OK in 2877ms (Views: 2876.4ms | ActiveRecord: 0.0ms)
|
4483
|
+
I, [2016-09-08T10:40:19.029428 #16357] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:40:19 -0700
|
4484
|
+
I, [2016-09-08T10:40:19.029975 #16357] INFO -- : Processing by BaselineController#show as HTML
|
4485
|
+
I, [2016-09-08T10:40:19.030342 #16357] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4486
|
+
I, [2016-09-08T10:40:19.030766 #16357] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4487
|
+
I, [2016-09-08T10:40:19.157823 #16357] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:40:19 -0700
|
4488
|
+
I, [2016-09-08T10:40:19.158405 #16357] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4489
|
+
I, [2016-09-08T10:40:19.158451 #16357] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4490
|
+
I, [2016-09-08T10:40:21.618792 #16357] INFO -- : Rendered inline template within layouts/application (2459.9ms)
|
4491
|
+
I, [2016-09-08T10:40:21.619771 #16357] INFO -- : Completed 200 OK in 2461ms (Views: 2460.9ms | ActiveRecord: 0.0ms)
|
4492
|
+
I, [2016-09-08T10:40:21.906615 #16357] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:40:21 -0700
|
4493
|
+
I, [2016-09-08T10:40:21.907179 #16357] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4494
|
+
I, [2016-09-08T10:40:21.907225 #16357] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4495
|
+
I, [2016-09-08T10:40:24.320403 #16357] INFO -- : Rendered inline template within layouts/application (2412.7ms)
|
4496
|
+
I, [2016-09-08T10:40:24.363873 #16357] INFO -- : Completed 200 OK in 2457ms (Views: 2414.2ms | ActiveRecord: 0.0ms)
|
4497
|
+
I, [2016-09-08T10:40:27.459041 #16357] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:40:27 -0700
|
4498
|
+
I, [2016-09-08T10:40:27.459592 #16357] INFO -- : Processing by BaselineController#show as HTML
|
4499
|
+
I, [2016-09-08T10:40:27.459949 #16357] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4500
|
+
I, [2016-09-08T10:40:27.460372 #16357] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4501
|
+
I, [2016-09-08T10:40:27.461164 #16357] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:40:27 -0700
|
4502
|
+
I, [2016-09-08T10:40:27.461519 #16357] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4503
|
+
I, [2016-09-08T10:40:27.461548 #16357] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4504
|
+
I, [2016-09-08T10:40:31.908298 #16357] INFO -- : Rendered inline template within layouts/application (2776.1ms)
|
4505
|
+
I, [2016-09-08T10:40:31.909770 #16357] INFO -- : Completed 200 OK in 4448ms (Views: 2777.6ms | ActiveRecord: 0.0ms)
|
4506
|
+
I, [2016-09-08T10:40:31.914416 #16357] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:40:31 -0700
|
4507
|
+
I, [2016-09-08T10:40:31.914999 #16357] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4508
|
+
I, [2016-09-08T10:40:31.915068 #16357] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4509
|
+
I, [2016-09-08T10:40:36.492747 #16357] INFO -- : Rendered inline template within layouts/application (2738.8ms)
|
4510
|
+
I, [2016-09-08T10:40:36.494370 #16357] INFO -- : Completed 200 OK in 4579ms (Views: 2740.4ms | ActiveRecord: 0.0ms)
|
4511
|
+
I, [2016-09-08T10:40:38.708760 #16357] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:40:38 -0700
|
4512
|
+
I, [2016-09-08T10:40:38.709304 #16357] INFO -- : Processing by BaselineController#show as HTML
|
4513
|
+
I, [2016-09-08T10:40:38.709661 #16357] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4514
|
+
I, [2016-09-08T10:40:38.710083 #16357] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4515
|
+
I, [2016-09-08T10:40:38.899176 #16357] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:40:38 -0700
|
4516
|
+
I, [2016-09-08T10:40:38.899693 #16357] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4517
|
+
I, [2016-09-08T10:40:38.899734 #16357] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4518
|
+
I, [2016-09-08T10:40:42.892684 #16357] INFO -- : Rendered inline template within layouts/application (2644.1ms)
|
4519
|
+
I, [2016-09-08T10:40:42.893613 #16357] INFO -- : Completed 200 OK in 3994ms (Views: 2645.0ms | ActiveRecord: 0.0ms)
|
4520
|
+
I, [2016-09-08T10:40:43.196538 #16357] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:40:43 -0700
|
4521
|
+
I, [2016-09-08T10:40:43.197114 #16357] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4522
|
+
I, [2016-09-08T10:40:43.197184 #16357] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4523
|
+
I, [2016-09-08T10:40:47.330878 #16357] INFO -- : Rendered inline template within layouts/application (2695.7ms)
|
4524
|
+
I, [2016-09-08T10:40:47.332443 #16357] INFO -- : Completed 200 OK in 4135ms (Views: 2697.2ms | ActiveRecord: 0.0ms)
|
4525
|
+
I, [2016-09-08T10:42:02.587749 #16436] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:42:02 -0700
|
4526
|
+
I, [2016-09-08T10:42:02.602455 #16436] INFO -- : Processing by BaselineController#show as HTML
|
4527
|
+
I, [2016-09-08T10:42:02.608511 #16436] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
4528
|
+
I, [2016-09-08T10:42:02.614433 #16436] INFO -- : Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
|
4529
|
+
I, [2016-09-08T10:42:02.615569 #16436] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:42:02 -0700
|
4530
|
+
I, [2016-09-08T10:42:02.616519 #16436] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4531
|
+
I, [2016-09-08T10:42:02.616550 #16436] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4532
|
+
I, [2016-09-08T10:42:05.416593 #16436] INFO -- : Rendered inline template within layouts/application (2796.7ms)
|
4533
|
+
I, [2016-09-08T10:42:05.417965 #16436] INFO -- : Completed 200 OK in 2801ms (Views: 2799.4ms | ActiveRecord: 0.0ms)
|
4534
|
+
I, [2016-09-08T10:42:05.421571 #16436] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:42:05 -0700
|
4535
|
+
I, [2016-09-08T10:42:05.422065 #16436] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4536
|
+
I, [2016-09-08T10:42:05.422106 #16436] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4537
|
+
I, [2016-09-08T10:42:08.409415 #16436] INFO -- : Rendered inline template within layouts/application (2986.7ms)
|
4538
|
+
I, [2016-09-08T10:42:08.410307 #16436] INFO -- : Completed 200 OK in 2988ms (Views: 2987.5ms | ActiveRecord: 0.0ms)
|
4539
|
+
I, [2016-09-08T10:42:08.891600 #16436] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:42:08 -0700
|
4540
|
+
I, [2016-09-08T10:42:08.892150 #16436] INFO -- : Processing by BaselineController#show as HTML
|
4541
|
+
I, [2016-09-08T10:42:08.892519 #16436] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4542
|
+
I, [2016-09-08T10:42:08.892941 #16436] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4543
|
+
I, [2016-09-08T10:42:09.022020 #16436] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:42:09 -0700
|
4544
|
+
I, [2016-09-08T10:42:09.022527 #16436] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4545
|
+
I, [2016-09-08T10:42:09.022560 #16436] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4546
|
+
I, [2016-09-08T10:42:11.447967 #16436] INFO -- : Rendered inline template within layouts/application (2425.0ms)
|
4547
|
+
I, [2016-09-08T10:42:11.448804 #16436] INFO -- : Completed 200 OK in 2426ms (Views: 2425.8ms | ActiveRecord: 0.0ms)
|
4548
|
+
I, [2016-09-08T10:42:11.726551 #16436] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:42:11 -0700
|
4549
|
+
I, [2016-09-08T10:42:11.727046 #16436] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4550
|
+
I, [2016-09-08T10:42:11.727080 #16436] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4551
|
+
I, [2016-09-08T10:42:14.161854 #16436] INFO -- : Rendered inline template within layouts/application (2434.4ms)
|
4552
|
+
I, [2016-09-08T10:42:14.214913 #16436] INFO -- : Completed 200 OK in 2488ms (Views: 2435.6ms | ActiveRecord: 0.0ms)
|
4553
|
+
I, [2016-09-08T10:42:17.643209 #16436] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:42:17 -0700
|
4554
|
+
I, [2016-09-08T10:42:17.643795 #16436] INFO -- : Processing by BaselineController#show as HTML
|
4555
|
+
I, [2016-09-08T10:42:17.644162 #16436] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4556
|
+
I, [2016-09-08T10:42:17.644587 #16436] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4557
|
+
I, [2016-09-08T10:42:17.645688 #16436] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:42:17 -0700
|
4558
|
+
I, [2016-09-08T10:42:17.646413 #16436] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4559
|
+
I, [2016-09-08T10:42:17.646463 #16436] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4560
|
+
I, [2016-09-08T10:42:22.074280 #16436] INFO -- : Rendered inline template within layouts/application (2775.3ms)
|
4561
|
+
I, [2016-09-08T10:42:22.075203 #16436] INFO -- : Completed 200 OK in 4429ms (Views: 2776.3ms | ActiveRecord: 0.0ms)
|
4562
|
+
I, [2016-09-08T10:42:22.078602 #16436] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:42:22 -0700
|
4563
|
+
I, [2016-09-08T10:42:22.079148 #16436] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4564
|
+
I, [2016-09-08T10:42:22.079210 #16436] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4565
|
+
I, [2016-09-08T10:42:26.843876 #16436] INFO -- : Rendered inline template within layouts/application (2788.2ms)
|
4566
|
+
I, [2016-09-08T10:42:26.844689 #16436] INFO -- : Completed 200 OK in 4765ms (Views: 2789.0ms | ActiveRecord: 0.0ms)
|
4567
|
+
I, [2016-09-08T10:42:28.966968 #16436] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:42:28 -0700
|
4568
|
+
I, [2016-09-08T10:42:28.967556 #16436] INFO -- : Processing by BaselineController#show as HTML
|
4569
|
+
I, [2016-09-08T10:42:28.967920 #16436] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4570
|
+
I, [2016-09-08T10:42:28.968348 #16436] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4571
|
+
I, [2016-09-08T10:42:29.148819 #16436] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:42:29 -0700
|
4572
|
+
I, [2016-09-08T10:42:29.149360 #16436] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4573
|
+
I, [2016-09-08T10:42:29.149402 #16436] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4574
|
+
I, [2016-09-08T10:42:33.089361 #16436] INFO -- : Rendered inline template within layouts/application (2621.6ms)
|
4575
|
+
I, [2016-09-08T10:42:33.090180 #16436] INFO -- : Completed 200 OK in 3941ms (Views: 2622.5ms | ActiveRecord: 0.0ms)
|
4576
|
+
I, [2016-09-08T10:42:33.384585 #16436] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:42:33 -0700
|
4577
|
+
I, [2016-09-08T10:42:33.385140 #16436] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4578
|
+
I, [2016-09-08T10:42:33.385184 #16436] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4579
|
+
I, [2016-09-08T10:42:37.453676 #16436] INFO -- : Rendered inline template within layouts/application (2658.0ms)
|
4580
|
+
I, [2016-09-08T10:42:37.454628 #16436] INFO -- : Completed 200 OK in 4069ms (Views: 2659.0ms | ActiveRecord: 0.0ms)
|
4581
|
+
I, [2016-09-08T10:43:41.411838 #16520] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:43:41 -0700
|
4582
|
+
I, [2016-09-08T10:43:41.428213 #16520] INFO -- : Processing by BaselineController#show as HTML
|
4583
|
+
I, [2016-09-08T10:43:41.434635 #16520] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.7ms)
|
4584
|
+
I, [2016-09-08T10:43:41.440619 #16520] INFO -- : Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms)
|
4585
|
+
I, [2016-09-08T10:43:41.441780 #16520] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:43:41 -0700
|
4586
|
+
I, [2016-09-08T10:43:41.442740 #16520] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4587
|
+
I, [2016-09-08T10:43:41.442775 #16520] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4588
|
+
I, [2016-09-08T10:43:44.957967 #16520] INFO -- : Rendered inline template within layouts/application (3510.6ms)
|
4589
|
+
I, [2016-09-08T10:43:44.959649 #16520] INFO -- : Completed 200 OK in 3517ms (Views: 3514.1ms | ActiveRecord: 0.0ms)
|
4590
|
+
I, [2016-09-08T10:43:44.962952 #16520] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:43:44 -0700
|
4591
|
+
I, [2016-09-08T10:43:44.963517 #16520] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4592
|
+
I, [2016-09-08T10:43:44.963549 #16520] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4593
|
+
I, [2016-09-08T10:43:47.874253 #16520] INFO -- : Rendered inline template within layouts/application (2910.0ms)
|
4594
|
+
I, [2016-09-08T10:43:47.876066 #16520] INFO -- : Completed 200 OK in 2912ms (Views: 2911.9ms | ActiveRecord: 0.0ms)
|
4595
|
+
I, [2016-09-08T10:43:48.363091 #16520] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:43:48 -0700
|
4596
|
+
I, [2016-09-08T10:43:48.363654 #16520] INFO -- : Processing by BaselineController#show as HTML
|
4597
|
+
I, [2016-09-08T10:43:48.364096 #16520] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4598
|
+
I, [2016-09-08T10:43:48.364537 #16520] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4599
|
+
I, [2016-09-08T10:43:48.488081 #16520] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:43:48 -0700
|
4600
|
+
I, [2016-09-08T10:43:48.488633 #16520] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4601
|
+
I, [2016-09-08T10:43:48.488674 #16520] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4602
|
+
I, [2016-09-08T10:43:50.869327 #16520] INFO -- : Rendered inline template within layouts/application (2380.2ms)
|
4603
|
+
I, [2016-09-08T10:43:50.870271 #16520] INFO -- : Completed 200 OK in 2382ms (Views: 2381.2ms | ActiveRecord: 0.0ms)
|
4604
|
+
I, [2016-09-08T10:43:51.151384 #16520] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:43:51 -0700
|
4605
|
+
I, [2016-09-08T10:43:51.151880 #16520] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4606
|
+
I, [2016-09-08T10:43:51.151913 #16520] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4607
|
+
I, [2016-09-08T10:43:53.648871 #16520] INFO -- : Rendered inline template within layouts/application (2496.6ms)
|
4608
|
+
I, [2016-09-08T10:43:53.692449 #16520] INFO -- : Completed 200 OK in 2540ms (Views: 2498.0ms | ActiveRecord: 0.0ms)
|
4609
|
+
I, [2016-09-08T10:43:56.803445 #16520] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:43:56 -0700
|
4610
|
+
I, [2016-09-08T10:43:56.804056 #16520] INFO -- : Processing by BaselineController#show as HTML
|
4611
|
+
I, [2016-09-08T10:43:56.804560 #16520] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4612
|
+
I, [2016-09-08T10:43:56.805020 #16520] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4613
|
+
I, [2016-09-08T10:43:56.805954 #16520] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:43:56 -0700
|
4614
|
+
I, [2016-09-08T10:43:56.806376 #16520] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4615
|
+
I, [2016-09-08T10:43:56.806405 #16520] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4616
|
+
I, [2016-09-08T10:44:01.532099 #16520] INFO -- : Rendered inline template within layouts/application (3046.8ms)
|
4617
|
+
I, [2016-09-08T10:44:01.533585 #16520] INFO -- : Completed 200 OK in 4727ms (Views: 3048.4ms | ActiveRecord: 0.0ms)
|
4618
|
+
I, [2016-09-08T10:44:01.536703 #16520] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:44:01 -0700
|
4619
|
+
I, [2016-09-08T10:44:01.537191 #16520] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4620
|
+
I, [2016-09-08T10:44:01.537243 #16520] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4621
|
+
I, [2016-09-08T10:44:06.119360 #16520] INFO -- : Rendered inline template within layouts/application (2768.3ms)
|
4622
|
+
I, [2016-09-08T10:44:06.120933 #16520] INFO -- : Completed 200 OK in 4584ms (Views: 2769.9ms | ActiveRecord: 0.0ms)
|
4623
|
+
I, [2016-09-08T10:44:08.264565 #16520] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:44:08 -0700
|
4624
|
+
I, [2016-09-08T10:44:08.265171 #16520] INFO -- : Processing by BaselineController#show as HTML
|
4625
|
+
I, [2016-09-08T10:44:08.265668 #16520] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4626
|
+
I, [2016-09-08T10:44:08.266097 #16520] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4627
|
+
I, [2016-09-08T10:44:08.440289 #16520] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:44:08 -0700
|
4628
|
+
I, [2016-09-08T10:44:08.440898 #16520] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4629
|
+
I, [2016-09-08T10:44:08.440941 #16520] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4630
|
+
I, [2016-09-08T10:44:12.564141 #16520] INFO -- : Rendered inline template within layouts/application (2808.4ms)
|
4631
|
+
I, [2016-09-08T10:44:12.565052 #16520] INFO -- : Completed 200 OK in 4124ms (Views: 2809.4ms | ActiveRecord: 0.0ms)
|
4632
|
+
I, [2016-09-08T10:44:12.864546 #16520] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:44:12 -0700
|
4633
|
+
I, [2016-09-08T10:44:12.865290 #16520] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4634
|
+
I, [2016-09-08T10:44:12.865350 #16520] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4635
|
+
I, [2016-09-08T10:44:18.684937 #16520] INFO -- : Rendered inline template within layouts/application (4031.2ms)
|
4636
|
+
I, [2016-09-08T10:44:18.686412 #16520] INFO -- : Completed 200 OK in 5821ms (Views: 4032.7ms | ActiveRecord: 0.0ms)
|
4637
|
+
I, [2016-09-08T10:49:26.738469 #17363] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:49:26 -0700
|
4638
|
+
I, [2016-09-08T10:49:26.752736 #17363] INFO -- : Processing by BaselineController#show as HTML
|
4639
|
+
I, [2016-09-08T10:49:26.758880 #17363] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
4640
|
+
I, [2016-09-08T10:49:26.764744 #17363] INFO -- : Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
|
4641
|
+
I, [2016-09-08T10:49:26.765874 #17363] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:49:26 -0700
|
4642
|
+
I, [2016-09-08T10:49:26.767021 #17363] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4643
|
+
I, [2016-09-08T10:49:26.767057 #17363] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4644
|
+
I, [2016-09-08T10:49:29.624977 #17363] INFO -- : Rendered inline template within layouts/application (2854.4ms)
|
4645
|
+
I, [2016-09-08T10:49:29.626904 #17363] INFO -- : Completed 200 OK in 2860ms (Views: 2857.6ms | ActiveRecord: 0.0ms)
|
4646
|
+
I, [2016-09-08T10:49:29.630104 #17363] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:49:29 -0700
|
4647
|
+
I, [2016-09-08T10:49:29.630604 #17363] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4648
|
+
I, [2016-09-08T10:49:29.630641 #17363] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4649
|
+
I, [2016-09-08T10:49:29.841930 #17363] INFO -- : Rendered inline template within layouts/application (210.6ms)
|
4650
|
+
I, [2016-09-08T10:49:29.843608 #17363] INFO -- : Completed 200 OK in 213ms (Views: 212.4ms | ActiveRecord: 0.0ms)
|
4651
|
+
I, [2016-09-08T10:49:30.167215 #17363] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:49:30 -0700
|
4652
|
+
I, [2016-09-08T10:49:30.167745 #17363] INFO -- : Processing by BaselineController#show as HTML
|
4653
|
+
I, [2016-09-08T10:49:30.168104 #17363] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4654
|
+
I, [2016-09-08T10:49:30.168524 #17363] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4655
|
+
I, [2016-09-08T10:49:30.260932 #17363] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:49:30 -0700
|
4656
|
+
I, [2016-09-08T10:49:30.261504 #17363] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4657
|
+
I, [2016-09-08T10:49:30.261552 #17363] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4658
|
+
I, [2016-09-08T10:49:30.369325 #17363] INFO -- : Rendered inline template within layouts/application (107.3ms)
|
4659
|
+
I, [2016-09-08T10:49:30.370346 #17363] INFO -- : Completed 200 OK in 109ms (Views: 108.5ms | ActiveRecord: 0.0ms)
|
4660
|
+
I, [2016-09-08T10:49:30.486736 #17363] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:49:30 -0700
|
4661
|
+
I, [2016-09-08T10:49:30.487203 #17363] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4662
|
+
I, [2016-09-08T10:49:30.487235 #17363] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4663
|
+
I, [2016-09-08T10:49:30.597812 #17363] INFO -- : Rendered inline template within layouts/application (110.2ms)
|
4664
|
+
I, [2016-09-08T10:49:30.599281 #17363] INFO -- : Completed 200 OK in 112ms (Views: 111.8ms | ActiveRecord: 0.0ms)
|
4665
|
+
I, [2016-09-08T10:49:33.786066 #17363] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:49:33 -0700
|
4666
|
+
I, [2016-09-08T10:49:33.786835 #17363] INFO -- : Processing by BaselineController#show as HTML
|
4667
|
+
I, [2016-09-08T10:49:33.787262 #17363] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4668
|
+
I, [2016-09-08T10:49:33.787704 #17363] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4669
|
+
I, [2016-09-08T10:49:33.788559 #17363] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:49:33 -0700
|
4670
|
+
I, [2016-09-08T10:49:33.788967 #17363] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4671
|
+
I, [2016-09-08T10:49:33.789007 #17363] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4672
|
+
I, [2016-09-08T10:49:35.379470 #17363] INFO -- : Rendered inline template within layouts/application (138.7ms)
|
4673
|
+
I, [2016-09-08T10:49:35.381160 #17363] INFO -- : Completed 200 OK in 1592ms (Views: 140.6ms | ActiveRecord: 0.0ms)
|
4674
|
+
I, [2016-09-08T10:49:35.384475 #17363] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:49:35 -0700
|
4675
|
+
I, [2016-09-08T10:49:35.384959 #17363] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4676
|
+
I, [2016-09-08T10:49:35.384993 #17363] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4677
|
+
I, [2016-09-08T10:49:37.063568 #17363] INFO -- : Rendered inline template within layouts/application (133.0ms)
|
4678
|
+
I, [2016-09-08T10:49:37.065243 #17363] INFO -- : Completed 200 OK in 1680ms (Views: 134.7ms | ActiveRecord: 0.0ms)
|
4679
|
+
I, [2016-09-08T10:49:39.004063 #17363] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:49:39 -0700
|
4680
|
+
I, [2016-09-08T10:49:39.004591 #17363] INFO -- : Processing by BaselineController#show as HTML
|
4681
|
+
I, [2016-09-08T10:49:39.004958 #17363] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4682
|
+
I, [2016-09-08T10:49:39.005368 #17363] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4683
|
+
I, [2016-09-08T10:49:39.158939 #17363] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:49:39 -0700
|
4684
|
+
I, [2016-09-08T10:49:39.159474 #17363] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4685
|
+
I, [2016-09-08T10:49:39.159504 #17363] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4686
|
+
I, [2016-09-08T10:49:40.682314 #17363] INFO -- : Rendered inline template within layouts/application (134.3ms)
|
4687
|
+
I, [2016-09-08T10:49:40.683501 #17363] INFO -- : Completed 200 OK in 1524ms (Views: 135.6ms | ActiveRecord: 0.0ms)
|
4688
|
+
I, [2016-09-08T10:49:40.945963 #17363] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:49:40 -0700
|
4689
|
+
I, [2016-09-08T10:49:40.946592 #17363] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4690
|
+
I, [2016-09-08T10:49:40.946642 #17363] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4691
|
+
I, [2016-09-08T10:49:42.457859 #17363] INFO -- : Rendered inline template within layouts/application (129.9ms)
|
4692
|
+
I, [2016-09-08T10:49:42.459485 #17363] INFO -- : Completed 200 OK in 1513ms (Views: 131.6ms | ActiveRecord: 0.0ms)
|
4693
|
+
I, [2016-09-08T10:57:26.368714 #17694] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:57:26 -0700
|
4694
|
+
I, [2016-09-08T10:57:26.382747 #17694] INFO -- : Processing by BaselineController#show as HTML
|
4695
|
+
I, [2016-09-08T10:57:26.390407 #17694] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
4696
|
+
I, [2016-09-08T10:57:26.396298 #17694] INFO -- : Completed 200 OK in 13ms (Views: 13.2ms | ActiveRecord: 0.0ms)
|
4697
|
+
I, [2016-09-08T10:57:26.397546 #17694] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:57:26 -0700
|
4698
|
+
I, [2016-09-08T10:57:26.398571 #17694] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4699
|
+
I, [2016-09-08T10:57:26.398604 #17694] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4700
|
+
I, [2016-09-08T10:57:29.220118 #17694] INFO -- : Rendered inline template within layouts/application (2817.9ms)
|
4701
|
+
I, [2016-09-08T10:57:29.221829 #17694] INFO -- : Completed 200 OK in 2823ms (Views: 2821.0ms | ActiveRecord: 0.0ms)
|
4702
|
+
I, [2016-09-08T10:57:29.225056 #17694] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:57:29 -0700
|
4703
|
+
I, [2016-09-08T10:57:29.225607 #17694] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4704
|
+
I, [2016-09-08T10:57:29.225645 #17694] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4705
|
+
I, [2016-09-08T10:57:32.476029 #17694] INFO -- : Rendered inline template within layouts/application (3249.5ms)
|
4706
|
+
I, [2016-09-08T10:57:32.477999 #17694] INFO -- : Completed 200 OK in 3252ms (Views: 3251.6ms | ActiveRecord: 0.0ms)
|
4707
|
+
I, [2016-09-08T10:57:32.926149 #17694] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:57:32 -0700
|
4708
|
+
I, [2016-09-08T10:57:32.926697 #17694] INFO -- : Processing by BaselineController#show as HTML
|
4709
|
+
I, [2016-09-08T10:57:32.927082 #17694] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4710
|
+
I, [2016-09-08T10:57:32.927486 #17694] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4711
|
+
I, [2016-09-08T10:57:33.059334 #17694] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:57:33 -0700
|
4712
|
+
I, [2016-09-08T10:57:33.059905 #17694] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4713
|
+
I, [2016-09-08T10:57:33.059951 #17694] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4714
|
+
I, [2016-09-08T10:57:35.537565 #17694] INFO -- : Rendered inline template within layouts/application (2477.2ms)
|
4715
|
+
I, [2016-09-08T10:57:35.538497 #17694] INFO -- : Completed 200 OK in 2478ms (Views: 2478.1ms | ActiveRecord: 0.0ms)
|
4716
|
+
I, [2016-09-08T10:57:35.788103 #17694] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:57:35 -0700
|
4717
|
+
I, [2016-09-08T10:57:35.788610 #17694] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4718
|
+
I, [2016-09-08T10:57:35.788643 #17694] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4719
|
+
I, [2016-09-08T10:57:38.310950 #17694] INFO -- : Rendered inline template within layouts/application (2521.9ms)
|
4720
|
+
I, [2016-09-08T10:57:38.312490 #17694] INFO -- : Completed 200 OK in 2524ms (Views: 2523.5ms | ActiveRecord: 0.0ms)
|
4721
|
+
I, [2016-09-08T10:57:41.469133 #17694] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:57:41 -0700
|
4722
|
+
I, [2016-09-08T10:57:41.469720 #17694] INFO -- : Processing by BaselineController#show as HTML
|
4723
|
+
I, [2016-09-08T10:57:41.470108 #17694] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4724
|
+
I, [2016-09-08T10:57:41.470546 #17694] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4725
|
+
I, [2016-09-08T10:57:41.471420 #17694] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:57:41 -0700
|
4726
|
+
I, [2016-09-08T10:57:41.471812 #17694] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4727
|
+
I, [2016-09-08T10:57:41.471856 #17694] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4728
|
+
I, [2016-09-08T10:57:45.681339 #17694] INFO -- : Rendered inline template within layouts/application (2735.7ms)
|
4729
|
+
I, [2016-09-08T10:57:45.683270 #17694] INFO -- : Completed 200 OK in 4211ms (Views: 2737.6ms | ActiveRecord: 0.0ms)
|
4730
|
+
I, [2016-09-08T10:57:45.687411 #17694] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:57:45 -0700
|
4731
|
+
I, [2016-09-08T10:57:45.687967 #17694] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4732
|
+
I, [2016-09-08T10:57:45.688008 #17694] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4733
|
+
I, [2016-09-08T10:57:50.531911 #17694] INFO -- : Rendered inline template within layouts/application (3023.9ms)
|
4734
|
+
I, [2016-09-08T10:57:50.533341 #17694] INFO -- : Completed 200 OK in 4845ms (Views: 3025.4ms | ActiveRecord: 0.0ms)
|
4735
|
+
I, [2016-09-08T10:57:52.703157 #17694] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:57:52 -0700
|
4736
|
+
I, [2016-09-08T10:57:52.703697 #17694] INFO -- : Processing by BaselineController#show as HTML
|
4737
|
+
I, [2016-09-08T10:57:52.704043 #17694] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4738
|
+
I, [2016-09-08T10:57:52.704450 #17694] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4739
|
+
I, [2016-09-08T10:57:52.881947 #17694] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:57:52 -0700
|
4740
|
+
I, [2016-09-08T10:57:52.882495 #17694] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4741
|
+
I, [2016-09-08T10:57:52.882546 #17694] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4742
|
+
I, [2016-09-08T10:57:56.807955 #17694] INFO -- : Rendered inline template within layouts/application (2611.6ms)
|
4743
|
+
I, [2016-09-08T10:57:56.808946 #17694] INFO -- : Completed 200 OK in 3926ms (Views: 2612.6ms | ActiveRecord: 0.0ms)
|
4744
|
+
I, [2016-09-08T10:57:57.107899 #17694] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:57:57 -0700
|
4745
|
+
I, [2016-09-08T10:57:57.108395 #17694] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4746
|
+
I, [2016-09-08T10:57:57.108427 #17694] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4747
|
+
I, [2016-09-08T10:58:01.169991 #17694] INFO -- : Rendered inline template within layouts/application (2666.4ms)
|
4748
|
+
I, [2016-09-08T10:58:01.171614 #17694] INFO -- : Completed 200 OK in 4063ms (Views: 2668.0ms | ActiveRecord: 0.0ms)
|
4749
|
+
I, [2016-09-08T10:58:23.296161 #17756] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:58:23 -0700
|
4750
|
+
I, [2016-09-08T10:58:23.311317 #17756] INFO -- : Processing by BaselineController#show as HTML
|
4751
|
+
I, [2016-09-08T10:58:23.317295 #17756] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
4752
|
+
I, [2016-09-08T10:58:23.322837 #17756] INFO -- : Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
4753
|
+
I, [2016-09-08T10:58:23.323889 #17756] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:58:23 -0700
|
4754
|
+
I, [2016-09-08T10:58:23.324836 #17756] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4755
|
+
I, [2016-09-08T10:58:23.324866 #17756] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4756
|
+
I, [2016-09-08T10:58:26.145551 #17756] INFO -- : Rendered inline template within layouts/application (2817.2ms)
|
4757
|
+
I, [2016-09-08T10:58:26.147169 #17756] INFO -- : Completed 200 OK in 2822ms (Views: 2820.2ms | ActiveRecord: 0.0ms)
|
4758
|
+
I, [2016-09-08T10:58:26.150648 #17756] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:58:26 -0700
|
4759
|
+
I, [2016-09-08T10:58:26.151173 #17756] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4760
|
+
I, [2016-09-08T10:58:26.151205 #17756] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4761
|
+
I, [2016-09-08T10:58:26.416067 #17756] INFO -- : Rendered inline template within layouts/application (264.2ms)
|
4762
|
+
I, [2016-09-08T10:58:26.417497 #17756] INFO -- : Completed 200 OK in 266ms (Views: 265.7ms | ActiveRecord: 0.0ms)
|
4763
|
+
I, [2016-09-08T10:58:26.727841 #17756] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:58:26 -0700
|
4764
|
+
I, [2016-09-08T10:58:26.728505 #17756] INFO -- : Processing by BaselineController#show as HTML
|
4765
|
+
I, [2016-09-08T10:58:26.728949 #17756] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4766
|
+
I, [2016-09-08T10:58:26.729447 #17756] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4767
|
+
I, [2016-09-08T10:58:26.827238 #17756] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:58:26 -0700
|
4768
|
+
I, [2016-09-08T10:58:26.827808 #17756] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4769
|
+
I, [2016-09-08T10:58:26.827841 #17756] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4770
|
+
I, [2016-09-08T10:58:27.001390 #17756] INFO -- : Rendered inline template within layouts/application (173.1ms)
|
4771
|
+
I, [2016-09-08T10:58:27.002269 #17756] INFO -- : Completed 200 OK in 174ms (Views: 174.1ms | ActiveRecord: 0.0ms)
|
4772
|
+
I, [2016-09-08T10:58:27.127310 #17756] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:58:27 -0700
|
4773
|
+
I, [2016-09-08T10:58:27.127893 #17756] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4774
|
+
I, [2016-09-08T10:58:27.127940 #17756] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4775
|
+
I, [2016-09-08T10:58:27.289510 #17756] INFO -- : Rendered inline template within layouts/application (161.1ms)
|
4776
|
+
I, [2016-09-08T10:58:27.291146 #17756] INFO -- : Completed 200 OK in 163ms (Views: 162.8ms | ActiveRecord: 0.0ms)
|
4777
|
+
I, [2016-09-08T10:58:30.358907 #17756] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:58:30 -0700
|
4778
|
+
I, [2016-09-08T10:58:30.359476 #17756] INFO -- : Processing by BaselineController#show as HTML
|
4779
|
+
I, [2016-09-08T10:58:30.359841 #17756] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4780
|
+
I, [2016-09-08T10:58:30.360231 #17756] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4781
|
+
I, [2016-09-08T10:58:30.361077 #17756] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:58:30 -0700
|
4782
|
+
I, [2016-09-08T10:58:30.361416 #17756] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4783
|
+
I, [2016-09-08T10:58:30.361445 #17756] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4784
|
+
I, [2016-09-08T10:58:32.015777 #17756] INFO -- : Rendered inline template within layouts/application (176.2ms)
|
4785
|
+
I, [2016-09-08T10:58:32.017242 #17756] INFO -- : Completed 200 OK in 1656ms (Views: 177.8ms | ActiveRecord: 0.0ms)
|
4786
|
+
I, [2016-09-08T10:58:32.020315 #17756] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:58:32 -0700
|
4787
|
+
I, [2016-09-08T10:58:32.020756 #17756] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4788
|
+
I, [2016-09-08T10:58:32.020785 #17756] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4789
|
+
I, [2016-09-08T10:58:33.716456 #17756] INFO -- : Rendered inline template within layouts/application (198.3ms)
|
4790
|
+
I, [2016-09-08T10:58:33.717908 #17756] INFO -- : Completed 200 OK in 1697ms (Views: 199.9ms | ActiveRecord: 0.0ms)
|
4791
|
+
I, [2016-09-08T10:58:35.672813 #17756] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:58:35 -0700
|
4792
|
+
I, [2016-09-08T10:58:35.673509 #17756] INFO -- : Processing by BaselineController#show as HTML
|
4793
|
+
I, [2016-09-08T10:58:35.674325 #17756] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4794
|
+
I, [2016-09-08T10:58:35.674781 #17756] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
4795
|
+
I, [2016-09-08T10:58:35.836088 #17756] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:58:35 -0700
|
4796
|
+
I, [2016-09-08T10:58:35.836651 #17756] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4797
|
+
I, [2016-09-08T10:58:35.836697 #17756] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4798
|
+
I, [2016-09-08T10:58:37.512375 #17756] INFO -- : Rendered inline template within layouts/application (176.0ms)
|
4799
|
+
I, [2016-09-08T10:58:37.513287 #17756] INFO -- : Completed 200 OK in 1677ms (Views: 177.1ms | ActiveRecord: 0.0ms)
|
4800
|
+
I, [2016-09-08T10:58:37.728418 #17756] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:58:37 -0700
|
4801
|
+
I, [2016-09-08T10:58:37.728911 #17756] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4802
|
+
I, [2016-09-08T10:58:37.728944 #17756] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4803
|
+
I, [2016-09-08T10:58:39.272182 #17756] INFO -- : Rendered inline template within layouts/application (177.3ms)
|
4804
|
+
I, [2016-09-08T10:58:39.273747 #17756] INFO -- : Completed 200 OK in 1545ms (Views: 179.0ms | ActiveRecord: 0.0ms)
|
4805
|
+
I, [2016-09-08T10:59:17.803541 #17823] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:59:17 -0700
|
4806
|
+
I, [2016-09-08T10:59:17.818397 #17823] INFO -- : Processing by BaselineController#show as HTML
|
4807
|
+
I, [2016-09-08T10:59:17.823764 #17823] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
4808
|
+
I, [2016-09-08T10:59:17.829460 #17823] INFO -- : Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
|
4809
|
+
I, [2016-09-08T10:59:17.830591 #17823] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:59:17 -0700
|
4810
|
+
I, [2016-09-08T10:59:17.831500 #17823] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4811
|
+
I, [2016-09-08T10:59:17.831556 #17823] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4812
|
+
I, [2016-09-08T10:59:20.660613 #17823] INFO -- : Rendered inline template within layouts/application (1338.8ms)
|
4813
|
+
I, [2016-09-08T10:59:20.662332 #17823] INFO -- : Completed 200 OK in 2831ms (Views: 1343.1ms | ActiveRecord: 0.0ms)
|
4814
|
+
I, [2016-09-08T10:59:20.665490 #17823] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:59:20 -0700
|
4815
|
+
I, [2016-09-08T10:59:20.666000 #17823] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4816
|
+
I, [2016-09-08T10:59:20.666029 #17823] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4817
|
+
I, [2016-09-08T10:59:20.934134 #17823] INFO -- : Rendered inline template within layouts/application (267.6ms)
|
4818
|
+
I, [2016-09-08T10:59:20.935688 #17823] INFO -- : Completed 200 OK in 270ms (Views: 269.2ms | ActiveRecord: 0.0ms)
|
4819
|
+
I, [2016-09-08T10:59:21.240272 #17823] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:59:21 -0700
|
4820
|
+
I, [2016-09-08T10:59:21.240807 #17823] INFO -- : Processing by BaselineController#show as HTML
|
4821
|
+
I, [2016-09-08T10:59:21.241165 #17823] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4822
|
+
I, [2016-09-08T10:59:21.241562 #17823] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4823
|
+
I, [2016-09-08T10:59:21.333528 #17823] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:59:21 -0700
|
4824
|
+
I, [2016-09-08T10:59:21.334009 #17823] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4825
|
+
I, [2016-09-08T10:59:21.334040 #17823] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4826
|
+
I, [2016-09-08T10:59:21.499154 #17823] INFO -- : Rendered inline template within layouts/application (164.7ms)
|
4827
|
+
I, [2016-09-08T10:59:21.500047 #17823] INFO -- : Completed 200 OK in 166ms (Views: 165.7ms | ActiveRecord: 0.0ms)
|
4828
|
+
I, [2016-09-08T10:59:21.623553 #17823] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:59:21 -0700
|
4829
|
+
I, [2016-09-08T10:59:21.624036 #17823] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4830
|
+
I, [2016-09-08T10:59:21.624069 #17823] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4831
|
+
I, [2016-09-08T10:59:21.792454 #17823] INFO -- : Rendered inline template within layouts/application (168.0ms)
|
4832
|
+
I, [2016-09-08T10:59:21.794001 #17823] INFO -- : Completed 200 OK in 170ms (Views: 169.6ms | ActiveRecord: 0.0ms)
|
4833
|
+
I, [2016-09-08T10:59:24.877826 #17823] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:59:24 -0700
|
4834
|
+
I, [2016-09-08T10:59:24.878385 #17823] INFO -- : Processing by BaselineController#show as HTML
|
4835
|
+
I, [2016-09-08T10:59:24.878726 #17823] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4836
|
+
I, [2016-09-08T10:59:24.879334 #17823] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
4837
|
+
I, [2016-09-08T10:59:24.880261 #17823] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:59:24 -0700
|
4838
|
+
I, [2016-09-08T10:59:24.880728 #17823] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4839
|
+
I, [2016-09-08T10:59:24.880758 #17823] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4840
|
+
I, [2016-09-08T10:59:25.080390 #17823] INFO -- : Rendered inline template within layouts/application (199.2ms)
|
4841
|
+
I, [2016-09-08T10:59:25.082171 #17823] INFO -- : Completed 200 OK in 201ms (Views: 201.1ms | ActiveRecord: 0.0ms)
|
4842
|
+
I, [2016-09-08T10:59:25.085838 #17823] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:59:25 -0700
|
4843
|
+
I, [2016-09-08T10:59:25.086494 #17823] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4844
|
+
I, [2016-09-08T10:59:25.086544 #17823] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4845
|
+
I, [2016-09-08T10:59:25.256921 #17823] INFO -- : Rendered inline template within layouts/application (169.9ms)
|
4846
|
+
I, [2016-09-08T10:59:25.258460 #17823] INFO -- : Completed 200 OK in 172ms (Views: 171.6ms | ActiveRecord: 0.0ms)
|
4847
|
+
I, [2016-09-08T10:59:27.172460 #17823] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 10:59:27 -0700
|
4848
|
+
I, [2016-09-08T10:59:27.173002 #17823] INFO -- : Processing by BaselineController#show as HTML
|
4849
|
+
I, [2016-09-08T10:59:27.173476 #17823] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4850
|
+
I, [2016-09-08T10:59:27.173899 #17823] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4851
|
+
I, [2016-09-08T10:59:27.299028 #17823] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 10:59:27 -0700
|
4852
|
+
I, [2016-09-08T10:59:27.299520 #17823] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4853
|
+
I, [2016-09-08T10:59:27.299553 #17823] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4854
|
+
I, [2016-09-08T10:59:27.449773 #17823] INFO -- : Rendered inline template within layouts/application (149.8ms)
|
4855
|
+
I, [2016-09-08T10:59:27.450709 #17823] INFO -- : Completed 200 OK in 151ms (Views: 150.8ms | ActiveRecord: 0.0ms)
|
4856
|
+
I, [2016-09-08T10:59:27.609453 #17823] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 10:59:27 -0700
|
4857
|
+
I, [2016-09-08T10:59:27.609928 #17823] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4858
|
+
I, [2016-09-08T10:59:27.609959 #17823] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4859
|
+
I, [2016-09-08T10:59:27.760959 #17823] INFO -- : Rendered inline template within layouts/application (150.6ms)
|
4860
|
+
I, [2016-09-08T10:59:27.762572 #17823] INFO -- : Completed 200 OK in 153ms (Views: 152.3ms | ActiveRecord: 0.0ms)
|
4861
|
+
I, [2016-09-08T11:51:43.965024 #18715] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 11:51:43 -0700
|
4862
|
+
I, [2016-09-08T11:51:43.983188 #18715] INFO -- : Processing by BaselineController#show as HTML
|
4863
|
+
I, [2016-09-08T11:51:43.989357 #18715] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
4864
|
+
I, [2016-09-08T11:51:43.995866 #18715] INFO -- : Completed 200 OK in 12ms (Views: 12.3ms | ActiveRecord: 0.0ms)
|
4865
|
+
I, [2016-09-08T11:51:43.997123 #18715] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 11:51:43 -0700
|
4866
|
+
I, [2016-09-08T11:51:43.998078 #18715] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4867
|
+
I, [2016-09-08T11:51:43.998109 #18715] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4868
|
+
I, [2016-09-08T11:51:46.803514 #18715] INFO -- : Rendered inline template within layouts/application (1286.6ms)
|
4869
|
+
I, [2016-09-08T11:51:46.805491 #18715] INFO -- : Completed 200 OK in 2807ms (Views: 1290.4ms | ActiveRecord: 0.0ms)
|
4870
|
+
I, [2016-09-08T11:51:46.808854 #18715] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 11:51:46 -0700
|
4871
|
+
I, [2016-09-08T11:51:46.809424 #18715] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4872
|
+
I, [2016-09-08T11:51:46.809455 #18715] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4873
|
+
I, [2016-09-08T11:51:47.062928 #18715] INFO -- : Rendered inline template within layouts/application (252.9ms)
|
4874
|
+
I, [2016-09-08T11:51:47.064407 #18715] INFO -- : Completed 200 OK in 255ms (Views: 254.5ms | ActiveRecord: 0.0ms)
|
4875
|
+
I, [2016-09-08T11:51:47.376597 #18715] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 11:51:47 -0700
|
4876
|
+
I, [2016-09-08T11:51:47.377143 #18715] INFO -- : Processing by BaselineController#show as HTML
|
4877
|
+
I, [2016-09-08T11:51:47.377497 #18715] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4878
|
+
I, [2016-09-08T11:51:47.377904 #18715] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4879
|
+
I, [2016-09-08T11:51:47.468643 #18715] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 11:51:47 -0700
|
4880
|
+
I, [2016-09-08T11:51:47.469165 #18715] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4881
|
+
I, [2016-09-08T11:51:47.469195 #18715] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4882
|
+
I, [2016-09-08T11:51:47.632191 #18715] INFO -- : Rendered inline template within layouts/application (162.6ms)
|
4883
|
+
I, [2016-09-08T11:51:47.633141 #18715] INFO -- : Completed 200 OK in 164ms (Views: 163.6ms | ActiveRecord: 0.0ms)
|
4884
|
+
I, [2016-09-08T11:51:47.767116 #18715] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 11:51:47 -0700
|
4885
|
+
I, [2016-09-08T11:51:47.767588 #18715] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4886
|
+
I, [2016-09-08T11:51:47.767620 #18715] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4887
|
+
I, [2016-09-08T11:51:47.960887 #18715] INFO -- : Rendered inline template within layouts/application (192.9ms)
|
4888
|
+
I, [2016-09-08T11:51:47.962443 #18715] INFO -- : Completed 200 OK in 195ms (Views: 194.5ms | ActiveRecord: 0.0ms)
|
4889
|
+
I, [2016-09-08T11:51:51.502903 #18715] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 11:51:51 -0700
|
4890
|
+
I, [2016-09-08T11:51:51.503506 #18715] INFO -- : Processing by BaselineController#show as HTML
|
4891
|
+
I, [2016-09-08T11:51:51.503938 #18715] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4892
|
+
I, [2016-09-08T11:51:51.504549 #18715] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
4893
|
+
I, [2016-09-08T11:51:51.506534 #18715] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 11:51:51 -0700
|
4894
|
+
I, [2016-09-08T11:51:51.507220 #18715] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4895
|
+
I, [2016-09-08T11:51:51.507289 #18715] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4896
|
+
I, [2016-09-08T11:51:51.690909 #18715] INFO -- : Rendered inline template within layouts/application (183.0ms)
|
4897
|
+
I, [2016-09-08T11:51:51.692454 #18715] INFO -- : Completed 200 OK in 185ms (Views: 184.7ms | ActiveRecord: 0.0ms)
|
4898
|
+
I, [2016-09-08T11:51:51.710873 #18715] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 11:51:51 -0700
|
4899
|
+
I, [2016-09-08T11:51:51.711431 #18715] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4900
|
+
I, [2016-09-08T11:51:51.711474 #18715] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4901
|
+
I, [2016-09-08T11:51:51.884624 #18715] INFO -- : Rendered inline template within layouts/application (172.7ms)
|
4902
|
+
I, [2016-09-08T11:51:51.886223 #18715] INFO -- : Completed 200 OK in 175ms (Views: 174.4ms | ActiveRecord: 0.0ms)
|
4903
|
+
I, [2016-09-08T11:51:53.767152 #18715] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 11:51:53 -0700
|
4904
|
+
I, [2016-09-08T11:51:53.767682 #18715] INFO -- : Processing by BaselineController#show as HTML
|
4905
|
+
I, [2016-09-08T11:51:53.768043 #18715] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4906
|
+
I, [2016-09-08T11:51:53.768453 #18715] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4907
|
+
I, [2016-09-08T11:51:53.895055 #18715] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 11:51:53 -0700
|
4908
|
+
I, [2016-09-08T11:51:53.895571 #18715] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4909
|
+
I, [2016-09-08T11:51:53.895604 #18715] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4910
|
+
I, [2016-09-08T11:51:54.043660 #18715] INFO -- : Rendered inline template within layouts/application (147.5ms)
|
4911
|
+
I, [2016-09-08T11:51:54.044509 #18715] INFO -- : Completed 200 OK in 149ms (Views: 148.5ms | ActiveRecord: 0.0ms)
|
4912
|
+
I, [2016-09-08T11:51:54.203005 #18715] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 11:51:54 -0700
|
4913
|
+
I, [2016-09-08T11:51:54.203495 #18715] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4914
|
+
I, [2016-09-08T11:51:54.203564 #18715] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4915
|
+
I, [2016-09-08T11:51:54.348586 #18715] INFO -- : Rendered inline template within layouts/application (144.6ms)
|
4916
|
+
I, [2016-09-08T11:51:54.350030 #18715] INFO -- : Completed 200 OK in 146ms (Views: 146.2ms | ActiveRecord: 0.0ms)
|
4917
|
+
I, [2016-09-08T11:57:33.117195 #19012] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 11:57:33 -0700
|
4918
|
+
I, [2016-09-08T11:57:33.132656 #19012] INFO -- : Processing by BaselineController#show as HTML
|
4919
|
+
I, [2016-09-08T11:57:33.139696 #19012] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
4920
|
+
I, [2016-09-08T11:57:33.146100 #19012] INFO -- : Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms)
|
4921
|
+
I, [2016-09-08T11:57:33.147452 #19012] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 11:57:33 -0700
|
4922
|
+
I, [2016-09-08T11:57:33.148540 #19012] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4923
|
+
I, [2016-09-08T11:57:33.148595 #19012] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4924
|
+
I, [2016-09-08T11:57:36.086501 #19012] INFO -- : Rendered inline template within layouts/application (1371.4ms)
|
4925
|
+
I, [2016-09-08T11:57:36.088478 #19012] INFO -- : Completed 200 OK in 2940ms (Views: 1374.8ms | ActiveRecord: 0.0ms)
|
4926
|
+
I, [2016-09-08T11:57:36.091950 #19012] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 11:57:36 -0700
|
4927
|
+
I, [2016-09-08T11:57:36.092565 #19012] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4928
|
+
I, [2016-09-08T11:57:36.092604 #19012] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4929
|
+
I, [2016-09-08T11:57:36.369993 #19012] INFO -- : Rendered inline template within layouts/application (276.8ms)
|
4930
|
+
I, [2016-09-08T11:57:36.371698 #19012] INFO -- : Completed 200 OK in 279ms (Views: 278.6ms | ActiveRecord: 0.0ms)
|
4931
|
+
I, [2016-09-08T11:57:36.687207 #19012] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 11:57:36 -0700
|
4932
|
+
I, [2016-09-08T11:57:36.687791 #19012] INFO -- : Processing by BaselineController#show as HTML
|
4933
|
+
I, [2016-09-08T11:57:36.688206 #19012] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4934
|
+
I, [2016-09-08T11:57:36.688645 #19012] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4935
|
+
I, [2016-09-08T11:57:36.782694 #19012] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 11:57:36 -0700
|
4936
|
+
I, [2016-09-08T11:57:36.783209 #19012] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4937
|
+
I, [2016-09-08T11:57:36.783241 #19012] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4938
|
+
I, [2016-09-08T11:57:36.948911 #19012] INFO -- : Rendered inline template within layouts/application (165.3ms)
|
4939
|
+
I, [2016-09-08T11:57:36.950141 #19012] INFO -- : Completed 200 OK in 167ms (Views: 166.6ms | ActiveRecord: 0.0ms)
|
4940
|
+
I, [2016-09-08T11:57:37.074460 #19012] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 11:57:37 -0700
|
4941
|
+
I, [2016-09-08T11:57:37.074938 #19012] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4942
|
+
I, [2016-09-08T11:57:37.074970 #19012] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4943
|
+
I, [2016-09-08T11:57:37.242957 #19012] INFO -- : Rendered inline template within layouts/application (167.6ms)
|
4944
|
+
I, [2016-09-08T11:57:37.244574 #19012] INFO -- : Completed 200 OK in 170ms (Views: 169.3ms | ActiveRecord: 0.0ms)
|
4945
|
+
I, [2016-09-08T11:57:40.365056 #19012] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 11:57:40 -0700
|
4946
|
+
I, [2016-09-08T11:57:40.365698 #19012] INFO -- : Processing by BaselineController#show as HTML
|
4947
|
+
I, [2016-09-08T11:57:40.366166 #19012] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4948
|
+
I, [2016-09-08T11:57:40.366675 #19012] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
4949
|
+
I, [2016-09-08T11:57:40.367606 #19012] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 11:57:40 -0700
|
4950
|
+
I, [2016-09-08T11:57:40.368064 #19012] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4951
|
+
I, [2016-09-08T11:57:40.368099 #19012] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4952
|
+
I, [2016-09-08T11:57:40.565363 #19012] INFO -- : Rendered inline template within layouts/application (196.9ms)
|
4953
|
+
I, [2016-09-08T11:57:40.567025 #19012] INFO -- : Completed 200 OK in 199ms (Views: 198.6ms | ActiveRecord: 0.0ms)
|
4954
|
+
I, [2016-09-08T11:57:40.570649 #19012] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 11:57:40 -0700
|
4955
|
+
I, [2016-09-08T11:57:40.571181 #19012] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4956
|
+
I, [2016-09-08T11:57:40.571219 #19012] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4957
|
+
I, [2016-09-08T11:57:40.761661 #19012] INFO -- : Rendered inline template within layouts/application (190.0ms)
|
4958
|
+
I, [2016-09-08T11:57:40.763828 #19012] INFO -- : Completed 200 OK in 193ms (Views: 192.3ms | ActiveRecord: 0.0ms)
|
4959
|
+
I, [2016-09-08T11:57:42.735824 #19012] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 11:57:42 -0700
|
4960
|
+
I, [2016-09-08T11:57:42.736409 #19012] INFO -- : Processing by BaselineController#show as HTML
|
4961
|
+
I, [2016-09-08T11:57:42.736771 #19012] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4962
|
+
I, [2016-09-08T11:57:42.737248 #19012] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4963
|
+
I, [2016-09-08T11:57:42.868974 #19012] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 11:57:42 -0700
|
4964
|
+
I, [2016-09-08T11:57:42.869478 #19012] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4965
|
+
I, [2016-09-08T11:57:42.869509 #19012] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4966
|
+
I, [2016-09-08T11:57:43.028391 #19012] INFO -- : Rendered inline template within layouts/application (158.5ms)
|
4967
|
+
I, [2016-09-08T11:57:43.029519 #19012] INFO -- : Completed 200 OK in 160ms (Views: 159.7ms | ActiveRecord: 0.0ms)
|
4968
|
+
I, [2016-09-08T11:57:43.190604 #19012] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 11:57:43 -0700
|
4969
|
+
I, [2016-09-08T11:57:43.191091 #19012] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4970
|
+
I, [2016-09-08T11:57:43.191125 #19012] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4971
|
+
I, [2016-09-08T11:57:43.343743 #19012] INFO -- : Rendered inline template within layouts/application (152.2ms)
|
4972
|
+
I, [2016-09-08T11:57:43.345351 #19012] INFO -- : Completed 200 OK in 154ms (Views: 153.9ms | ActiveRecord: 0.0ms)
|
4973
|
+
I, [2016-09-08T12:02:39.884928 #19340] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:02:39 -0700
|
4974
|
+
I, [2016-09-08T12:02:39.900479 #19340] INFO -- : Processing by BaselineController#show as HTML
|
4975
|
+
I, [2016-09-08T12:02:39.907065 #19340] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
4976
|
+
I, [2016-09-08T12:02:39.913561 #19340] INFO -- : Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
4977
|
+
I, [2016-09-08T12:02:39.914749 #19340] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:02:39 -0700
|
4978
|
+
I, [2016-09-08T12:02:39.915764 #19340] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4979
|
+
I, [2016-09-08T12:02:39.915812 #19340] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4980
|
+
I, [2016-09-08T12:02:42.868676 #19340] INFO -- : Rendered inline template within layouts/application (1353.8ms)
|
4981
|
+
I, [2016-09-08T12:02:42.870291 #19340] INFO -- : Completed 200 OK in 2954ms (Views: 1357.6ms | ActiveRecord: 0.0ms)
|
4982
|
+
I, [2016-09-08T12:02:42.873859 #19340] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:02:42 -0700
|
4983
|
+
I, [2016-09-08T12:02:42.874484 #19340] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4984
|
+
I, [2016-09-08T12:02:42.874527 #19340] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4985
|
+
I, [2016-09-08T12:02:45.984745 #19340] INFO -- : Rendered inline template within layouts/application (1275.2ms)
|
4986
|
+
I, [2016-09-08T12:02:45.986176 #19340] INFO -- : Completed 200 OK in 3112ms (Views: 1276.7ms | ActiveRecord: 0.0ms)
|
4987
|
+
I, [2016-09-08T12:02:46.445255 #19340] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:02:46 -0700
|
4988
|
+
I, [2016-09-08T12:02:46.445885 #19340] INFO -- : Processing by BaselineController#show as HTML
|
4989
|
+
I, [2016-09-08T12:02:46.446332 #19340] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
4990
|
+
I, [2016-09-08T12:02:46.446844 #19340] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
4991
|
+
I, [2016-09-08T12:02:46.585277 #19340] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:02:46 -0700
|
4992
|
+
I, [2016-09-08T12:02:46.585841 #19340] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4993
|
+
I, [2016-09-08T12:02:46.585887 #19340] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
4994
|
+
I, [2016-09-08T12:02:49.176260 #19340] INFO -- : Rendered inline template within layouts/application (1213.7ms)
|
4995
|
+
I, [2016-09-08T12:02:49.177256 #19340] INFO -- : Completed 200 OK in 2591ms (Views: 1214.7ms | ActiveRecord: 0.0ms)
|
4996
|
+
I, [2016-09-08T12:02:49.445970 #19340] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:02:49 -0700
|
4997
|
+
I, [2016-09-08T12:02:49.446456 #19340] INFO -- : Processing by Mascot::SiteController#show as HTML
|
4998
|
+
I, [2016-09-08T12:02:49.446488 #19340] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
4999
|
+
I, [2016-09-08T12:02:52.119391 #19340] INFO -- : Rendered inline template within layouts/application (1261.4ms)
|
5000
|
+
I, [2016-09-08T12:02:52.120779 #19340] INFO -- : Completed 200 OK in 2674ms (Views: 1262.8ms | ActiveRecord: 0.0ms)
|
5001
|
+
I, [2016-09-08T12:02:55.716019 #19340] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:02:55 -0700
|
5002
|
+
I, [2016-09-08T12:02:55.716569 #19340] INFO -- : Processing by BaselineController#show as HTML
|
5003
|
+
I, [2016-09-08T12:02:55.716900 #19340] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5004
|
+
I, [2016-09-08T12:02:55.717342 #19340] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
5005
|
+
I, [2016-09-08T12:02:55.718281 #19340] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:02:55 -0700
|
5006
|
+
I, [2016-09-08T12:02:55.718684 #19340] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5007
|
+
I, [2016-09-08T12:02:55.718718 #19340] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5008
|
+
I, [2016-09-08T12:02:58.552458 #19340] INFO -- : Rendered inline template within layouts/application (1211.7ms)
|
5009
|
+
I, [2016-09-08T12:02:58.553882 #19340] INFO -- : Completed 200 OK in 2835ms (Views: 1213.3ms | ActiveRecord: 0.0ms)
|
5010
|
+
I, [2016-09-08T12:02:58.558183 #19340] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:02:58 -0700
|
5011
|
+
I, [2016-09-08T12:02:58.558695 #19340] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5012
|
+
I, [2016-09-08T12:02:58.558727 #19340] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5013
|
+
I, [2016-09-08T12:03:01.695743 #19340] INFO -- : Rendered inline template within layouts/application (1218.7ms)
|
5014
|
+
I, [2016-09-08T12:03:01.697266 #19340] INFO -- : Completed 200 OK in 3138ms (Views: 1220.3ms | ActiveRecord: 0.0ms)
|
5015
|
+
I, [2016-09-08T12:03:03.922590 #19340] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:03:03 -0700
|
5016
|
+
I, [2016-09-08T12:03:03.923221 #19340] INFO -- : Processing by BaselineController#show as HTML
|
5017
|
+
I, [2016-09-08T12:03:03.923660 #19340] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5018
|
+
I, [2016-09-08T12:03:03.924168 #19340] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
5019
|
+
I, [2016-09-08T12:03:04.082991 #19340] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:03:04 -0700
|
5020
|
+
I, [2016-09-08T12:03:04.083648 #19340] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5021
|
+
I, [2016-09-08T12:03:04.083699 #19340] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5022
|
+
I, [2016-09-08T12:03:06.719035 #19340] INFO -- : Rendered inline template within layouts/application (1242.8ms)
|
5023
|
+
I, [2016-09-08T12:03:06.720180 #19340] INFO -- : Completed 200 OK in 2636ms (Views: 1244.1ms | ActiveRecord: 0.0ms)
|
5024
|
+
I, [2016-09-08T12:03:07.002766 #19340] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:03:07 -0700
|
5025
|
+
I, [2016-09-08T12:03:07.003299 #19340] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5026
|
+
I, [2016-09-08T12:03:07.003343 #19340] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5027
|
+
I, [2016-09-08T12:03:09.687418 #19340] INFO -- : Rendered inline template within layouts/application (1213.0ms)
|
5028
|
+
I, [2016-09-08T12:03:09.689011 #19340] INFO -- : Completed 200 OK in 2686ms (Views: 1214.7ms | ActiveRecord: 0.0ms)
|
5029
|
+
I, [2016-09-08T12:03:29.007763 #19389] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:03:29 -0700
|
5030
|
+
I, [2016-09-08T12:03:29.023781 #19389] INFO -- : Processing by BaselineController#show as HTML
|
5031
|
+
I, [2016-09-08T12:03:29.029689 #19389] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
5032
|
+
I, [2016-09-08T12:03:29.036012 #19389] INFO -- : Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
|
5033
|
+
I, [2016-09-08T12:03:29.037220 #19389] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:03:29 -0700
|
5034
|
+
I, [2016-09-08T12:03:29.038183 #19389] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5035
|
+
I, [2016-09-08T12:03:29.038216 #19389] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5036
|
+
I, [2016-09-08T12:03:32.038641 #19389] INFO -- : Rendered inline template within layouts/application (1384.8ms)
|
5037
|
+
I, [2016-09-08T12:03:32.040361 #19389] INFO -- : Completed 200 OK in 3002ms (Views: 1388.2ms | ActiveRecord: 0.0ms)
|
5038
|
+
I, [2016-09-08T12:03:32.044099 #19389] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:03:32 -0700
|
5039
|
+
I, [2016-09-08T12:03:32.044742 #19389] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5040
|
+
I, [2016-09-08T12:03:32.044783 #19389] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5041
|
+
I, [2016-09-08T12:03:32.330526 #19389] INFO -- : Rendered inline template within layouts/application (285.1ms)
|
5042
|
+
I, [2016-09-08T12:03:32.332262 #19389] INFO -- : Completed 200 OK in 287ms (Views: 287.0ms | ActiveRecord: 0.0ms)
|
5043
|
+
I, [2016-09-08T12:03:32.655089 #19389] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:03:32 -0700
|
5044
|
+
I, [2016-09-08T12:03:32.655631 #19389] INFO -- : Processing by BaselineController#show as HTML
|
5045
|
+
I, [2016-09-08T12:03:32.655999 #19389] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5046
|
+
I, [2016-09-08T12:03:32.656423 #19389] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
5047
|
+
I, [2016-09-08T12:03:32.745802 #19389] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:03:32 -0700
|
5048
|
+
I, [2016-09-08T12:03:32.746315 #19389] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5049
|
+
I, [2016-09-08T12:03:32.746350 #19389] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5050
|
+
I, [2016-09-08T12:03:32.913471 #19389] INFO -- : Rendered inline template within layouts/application (166.7ms)
|
5051
|
+
I, [2016-09-08T12:03:32.914478 #19389] INFO -- : Completed 200 OK in 168ms (Views: 167.8ms | ActiveRecord: 0.0ms)
|
5052
|
+
I, [2016-09-08T12:03:33.041193 #19389] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:03:33 -0700
|
5053
|
+
I, [2016-09-08T12:03:33.041682 #19389] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5054
|
+
I, [2016-09-08T12:03:33.041715 #19389] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5055
|
+
I, [2016-09-08T12:03:33.217411 #19389] INFO -- : Rendered inline template within layouts/application (175.3ms)
|
5056
|
+
I, [2016-09-08T12:03:33.219005 #19389] INFO -- : Completed 200 OK in 177ms (Views: 176.9ms | ActiveRecord: 0.0ms)
|
5057
|
+
I, [2016-09-08T12:03:36.485486 #19389] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:03:36 -0700
|
5058
|
+
I, [2016-09-08T12:03:36.486045 #19389] INFO -- : Processing by BaselineController#show as HTML
|
5059
|
+
I, [2016-09-08T12:03:36.486426 #19389] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5060
|
+
I, [2016-09-08T12:03:36.486875 #19389] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
5061
|
+
I, [2016-09-08T12:03:36.487700 #19389] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:03:36 -0700
|
5062
|
+
I, [2016-09-08T12:03:36.488018 #19389] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5063
|
+
I, [2016-09-08T12:03:36.488088 #19389] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5064
|
+
I, [2016-09-08T12:03:36.668608 #19389] INFO -- : Rendered inline template within layouts/application (180.1ms)
|
5065
|
+
I, [2016-09-08T12:03:36.670293 #19389] INFO -- : Completed 200 OK in 182ms (Views: 181.9ms | ActiveRecord: 0.0ms)
|
5066
|
+
I, [2016-09-08T12:03:36.688798 #19389] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:03:36 -0700
|
5067
|
+
I, [2016-09-08T12:03:36.689292 #19389] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5068
|
+
I, [2016-09-08T12:03:36.689326 #19389] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5069
|
+
I, [2016-09-08T12:03:36.871012 #19389] INFO -- : Rendered inline template within layouts/application (181.3ms)
|
5070
|
+
I, [2016-09-08T12:03:36.872670 #19389] INFO -- : Completed 200 OK in 183ms (Views: 183.0ms | ActiveRecord: 0.0ms)
|
5071
|
+
I, [2016-09-08T12:03:38.918767 #19389] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:03:38 -0700
|
5072
|
+
I, [2016-09-08T12:03:38.919285 #19389] INFO -- : Processing by BaselineController#show as HTML
|
5073
|
+
I, [2016-09-08T12:03:38.919716 #19389] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
5074
|
+
I, [2016-09-08T12:03:38.920139 #19389] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
5075
|
+
I, [2016-09-08T12:03:39.046728 #19389] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:03:39 -0700
|
5076
|
+
I, [2016-09-08T12:03:39.047249 #19389] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5077
|
+
I, [2016-09-08T12:03:39.047282 #19389] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5078
|
+
I, [2016-09-08T12:03:39.199482 #19389] INFO -- : Rendered inline template within layouts/application (151.8ms)
|
5079
|
+
I, [2016-09-08T12:03:39.200490 #19389] INFO -- : Completed 200 OK in 153ms (Views: 152.9ms | ActiveRecord: 0.0ms)
|
5080
|
+
I, [2016-09-08T12:03:39.391054 #19389] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:03:39 -0700
|
5081
|
+
I, [2016-09-08T12:03:39.391524 #19389] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5082
|
+
I, [2016-09-08T12:03:39.391557 #19389] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5083
|
+
I, [2016-09-08T12:03:39.541199 #19389] INFO -- : Rendered inline template within layouts/application (149.3ms)
|
5084
|
+
I, [2016-09-08T12:03:39.543096 #19389] INFO -- : Completed 200 OK in 151ms (Views: 151.2ms | ActiveRecord: 0.0ms)
|
5085
|
+
I, [2016-09-08T12:12:49.330949 #20137] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:12:49 -0700
|
5086
|
+
I, [2016-09-08T12:12:49.347393 #20137] INFO -- : Processing by BaselineController#show as HTML
|
5087
|
+
I, [2016-09-08T12:12:49.354639 #20137] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
5088
|
+
I, [2016-09-08T12:12:49.360573 #20137] INFO -- : Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
|
5089
|
+
I, [2016-09-08T12:12:49.361720 #20137] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:12:49 -0700
|
5090
|
+
I, [2016-09-08T12:12:49.362682 #20137] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5091
|
+
I, [2016-09-08T12:12:49.362720 #20137] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5092
|
+
I, [2016-09-08T12:12:52.246858 #20137] INFO -- : Rendered inline template within layouts/application (1305.1ms)
|
5093
|
+
I, [2016-09-08T12:12:52.248505 #20137] INFO -- : Completed 200 OK in 2886ms (Views: 1308.2ms | ActiveRecord: 0.0ms)
|
5094
|
+
I, [2016-09-08T12:12:52.252811 #20137] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:12:52 -0700
|
5095
|
+
I, [2016-09-08T12:12:52.253361 #20137] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5096
|
+
I, [2016-09-08T12:12:52.253394 #20137] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5097
|
+
I, [2016-09-08T12:12:54.932665 #20137] INFO -- : Rendered inline template within layouts/application (1224.2ms)
|
5098
|
+
I, [2016-09-08T12:12:54.934224 #20137] INFO -- : Completed 200 OK in 2681ms (Views: 1225.9ms | ActiveRecord: 0.0ms)
|
5099
|
+
I, [2016-09-08T12:12:56.923592 #20137] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:12:56 -0700
|
5100
|
+
I, [2016-09-08T12:12:56.924147 #20137] INFO -- : Processing by BaselineController#show as HTML
|
5101
|
+
I, [2016-09-08T12:12:56.924505 #20137] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5102
|
+
I, [2016-09-08T12:12:56.924906 #20137] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
5103
|
+
I, [2016-09-08T12:12:57.077906 #20137] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:12:57 -0700
|
5104
|
+
I, [2016-09-08T12:12:57.078448 #20137] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5105
|
+
I, [2016-09-08T12:12:57.078482 #20137] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5106
|
+
I, [2016-09-08T12:12:59.587091 #20137] INFO -- : Rendered inline template within layouts/application (1208.0ms)
|
5107
|
+
I, [2016-09-08T12:12:59.588074 #20137] INFO -- : Completed 200 OK in 2510ms (Views: 1209.1ms | ActiveRecord: 0.0ms)
|
5108
|
+
I, [2016-09-08T12:12:59.859851 #20137] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:12:59 -0700
|
5109
|
+
I, [2016-09-08T12:12:59.860415 #20137] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5110
|
+
I, [2016-09-08T12:12:59.860460 #20137] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5111
|
+
I, [2016-09-08T12:13:02.455459 #20137] INFO -- : Rendered inline template within layouts/application (1202.4ms)
|
5112
|
+
I, [2016-09-08T12:13:02.456958 #20137] INFO -- : Completed 200 OK in 2596ms (Views: 1204.0ms | ActiveRecord: 0.0ms)
|
5113
|
+
I, [2016-09-08T12:13:05.824816 #20137] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:13:05 -0700
|
5114
|
+
I, [2016-09-08T12:13:05.826074 #20137] INFO -- : Processing by BaselineController#show as HTML
|
5115
|
+
I, [2016-09-08T12:13:05.826643 #20137] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
5116
|
+
I, [2016-09-08T12:13:05.827173 #20137] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
5117
|
+
I, [2016-09-08T12:13:05.828391 #20137] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:13:05 -0700
|
5118
|
+
I, [2016-09-08T12:13:05.828919 #20137] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5119
|
+
I, [2016-09-08T12:13:05.828952 #20137] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5120
|
+
I, [2016-09-08T12:13:08.760948 #20137] INFO -- : Rendered inline template within layouts/application (1379.7ms)
|
5121
|
+
I, [2016-09-08T12:13:08.762833 #20137] INFO -- : Completed 200 OK in 2934ms (Views: 1381.8ms | ActiveRecord: 0.0ms)
|
5122
|
+
I, [2016-09-08T12:13:08.766216 #20137] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:13:08 -0700
|
5123
|
+
I, [2016-09-08T12:13:08.766752 #20137] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5124
|
+
I, [2016-09-08T12:13:08.766789 #20137] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5125
|
+
I, [2016-09-08T12:13:11.854710 #20137] INFO -- : Rendered inline template within layouts/application (1291.8ms)
|
5126
|
+
I, [2016-09-08T12:13:11.856815 #20137] INFO -- : Completed 200 OK in 3090ms (Views: 1294.0ms | ActiveRecord: 0.0ms)
|
5127
|
+
I, [2016-09-08T12:13:14.088954 #20137] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:13:14 -0700
|
5128
|
+
I, [2016-09-08T12:13:14.089554 #20137] INFO -- : Processing by BaselineController#show as HTML
|
5129
|
+
I, [2016-09-08T12:13:14.089985 #20137] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5130
|
+
I, [2016-09-08T12:13:14.090476 #20137] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
5131
|
+
I, [2016-09-08T12:13:14.256600 #20137] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:13:14 -0700
|
5132
|
+
I, [2016-09-08T12:13:14.257141 #20137] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5133
|
+
I, [2016-09-08T12:13:14.257175 #20137] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5134
|
+
I, [2016-09-08T12:13:17.010263 #20137] INFO -- : Rendered inline template within layouts/application (1234.3ms)
|
5135
|
+
I, [2016-09-08T12:13:17.011334 #20137] INFO -- : Completed 200 OK in 2754ms (Views: 1235.5ms | ActiveRecord: 0.0ms)
|
5136
|
+
I, [2016-09-08T12:13:17.306947 #20137] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:13:17 -0700
|
5137
|
+
I, [2016-09-08T12:13:17.307450 #20137] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5138
|
+
I, [2016-09-08T12:13:17.307483 #20137] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5139
|
+
I, [2016-09-08T12:13:20.103951 #20137] INFO -- : Rendered inline template within layouts/application (1306.4ms)
|
5140
|
+
I, [2016-09-08T12:13:20.105484 #20137] INFO -- : Completed 200 OK in 2798ms (Views: 1308.1ms | ActiveRecord: 0.0ms)
|
5141
|
+
I, [2016-09-08T12:16:08.402141 #20295] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:16:08 -0700
|
5142
|
+
I, [2016-09-08T12:16:08.421323 #20295] INFO -- : Processing by BaselineController#show as HTML
|
5143
|
+
I, [2016-09-08T12:16:08.429365 #20295] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.6ms)
|
5144
|
+
I, [2016-09-08T12:16:08.435342 #20295] INFO -- : Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
|
5145
|
+
I, [2016-09-08T12:16:08.436838 #20295] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:16:08 -0700
|
5146
|
+
I, [2016-09-08T12:16:08.438054 #20295] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5147
|
+
I, [2016-09-08T12:16:08.438095 #20295] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5148
|
+
I, [2016-09-08T12:16:11.509915 #20295] INFO -- : Rendered inline template within layouts/application (1394.3ms)
|
5149
|
+
I, [2016-09-08T12:16:11.511691 #20295] INFO -- : Completed 200 OK in 3073ms (Views: 1398.9ms | ActiveRecord: 0.0ms)
|
5150
|
+
I, [2016-09-08T12:16:11.515110 #20295] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:16:11 -0700
|
5151
|
+
I, [2016-09-08T12:16:11.515727 #20295] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5152
|
+
I, [2016-09-08T12:16:11.515768 #20295] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5153
|
+
I, [2016-09-08T12:16:14.371300 #20295] INFO -- : Rendered inline template within layouts/application (1262.6ms)
|
5154
|
+
I, [2016-09-08T12:16:14.372604 #20295] INFO -- : Completed 200 OK in 2857ms (Views: 1264.0ms | ActiveRecord: 0.0ms)
|
5155
|
+
I, [2016-09-08T12:16:16.436376 #20295] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:16:16 -0700
|
5156
|
+
I, [2016-09-08T12:16:16.437103 #20295] INFO -- : Processing by BaselineController#show as HTML
|
5157
|
+
I, [2016-09-08T12:16:16.437618 #20295] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5158
|
+
I, [2016-09-08T12:16:16.438209 #20295] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
5159
|
+
I, [2016-09-08T12:16:16.593562 #20295] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:16:16 -0700
|
5160
|
+
I, [2016-09-08T12:16:16.594063 #20295] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5161
|
+
I, [2016-09-08T12:16:16.594094 #20295] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5162
|
+
I, [2016-09-08T12:16:19.254305 #20295] INFO -- : Rendered inline template within layouts/application (1282.0ms)
|
5163
|
+
I, [2016-09-08T12:16:19.255097 #20295] INFO -- : Completed 200 OK in 2661ms (Views: 1283.0ms | ActiveRecord: 0.0ms)
|
5164
|
+
I, [2016-09-08T12:16:19.537645 #20295] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:16:19 -0700
|
5165
|
+
I, [2016-09-08T12:16:19.538158 #20295] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5166
|
+
I, [2016-09-08T12:16:19.538192 #20295] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5167
|
+
I, [2016-09-08T12:16:22.904308 #20295] INFO -- : Rendered inline template within layouts/application (1870.6ms)
|
5168
|
+
I, [2016-09-08T12:16:22.905741 #20295] INFO -- : Completed 200 OK in 3367ms (Views: 1872.1ms | ActiveRecord: 0.0ms)
|
5169
|
+
I, [2016-09-08T12:16:26.576466 #20295] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:16:26 -0700
|
5170
|
+
I, [2016-09-08T12:16:26.576997 #20295] INFO -- : Processing by BaselineController#show as HTML
|
5171
|
+
I, [2016-09-08T12:16:26.577446 #20295] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
5172
|
+
I, [2016-09-08T12:16:26.577939 #20295] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
5173
|
+
I, [2016-09-08T12:16:26.579014 #20295] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:16:26 -0700
|
5174
|
+
I, [2016-09-08T12:16:26.580098 #20295] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5175
|
+
I, [2016-09-08T12:16:26.580176 #20295] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5176
|
+
I, [2016-09-08T12:16:29.450142 #20295] INFO -- : Rendered inline template within layouts/application (1298.0ms)
|
5177
|
+
I, [2016-09-08T12:16:29.450975 #20295] INFO -- : Completed 200 OK in 2871ms (Views: 1298.9ms | ActiveRecord: 0.0ms)
|
5178
|
+
I, [2016-09-08T12:16:29.455460 #20295] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:16:29 -0700
|
5179
|
+
I, [2016-09-08T12:16:29.456026 #20295] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5180
|
+
I, [2016-09-08T12:16:29.456165 #20295] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5181
|
+
I, [2016-09-08T12:16:32.519403 #20295] INFO -- : Rendered inline template within layouts/application (1215.1ms)
|
5182
|
+
I, [2016-09-08T12:16:32.520143 #20295] INFO -- : Completed 200 OK in 3064ms (Views: 1216.0ms | ActiveRecord: 0.0ms)
|
5183
|
+
I, [2016-09-08T12:16:34.697025 #20295] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:16:34 -0700
|
5184
|
+
I, [2016-09-08T12:16:34.697714 #20295] INFO -- : Processing by BaselineController#show as HTML
|
5185
|
+
I, [2016-09-08T12:16:34.698170 #20295] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5186
|
+
I, [2016-09-08T12:16:34.698671 #20295] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
5187
|
+
I, [2016-09-08T12:16:34.864919 #20295] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:16:34 -0700
|
5188
|
+
I, [2016-09-08T12:16:34.865460 #20295] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5189
|
+
I, [2016-09-08T12:16:34.865504 #20295] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5190
|
+
I, [2016-09-08T12:16:37.491170 #20295] INFO -- : Rendered inline template within layouts/application (1239.2ms)
|
5191
|
+
I, [2016-09-08T12:16:37.492004 #20295] INFO -- : Completed 200 OK in 2626ms (Views: 1240.1ms | ActiveRecord: 0.0ms)
|
5192
|
+
I, [2016-09-08T12:16:37.776877 #20295] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:16:37 -0700
|
5193
|
+
I, [2016-09-08T12:16:37.777398 #20295] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5194
|
+
I, [2016-09-08T12:16:37.777430 #20295] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5195
|
+
I, [2016-09-08T12:16:40.425749 #20295] INFO -- : Rendered inline template within layouts/application (1190.7ms)
|
5196
|
+
I, [2016-09-08T12:16:40.426498 #20295] INFO -- : Completed 200 OK in 2649ms (Views: 1191.5ms | ActiveRecord: 0.0ms)
|
5197
|
+
I, [2016-09-08T12:24:59.158317 #20735] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:24:59 -0700
|
5198
|
+
I, [2016-09-08T12:24:59.173355 #20735] INFO -- : Processing by BaselineController#show as HTML
|
5199
|
+
I, [2016-09-08T12:24:59.178997 #20735] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
5200
|
+
I, [2016-09-08T12:24:59.185172 #20735] INFO -- : Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
|
5201
|
+
I, [2016-09-08T12:24:59.186278 #20735] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:24:59 -0700
|
5202
|
+
I, [2016-09-08T12:24:59.187201 #20735] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5203
|
+
I, [2016-09-08T12:24:59.187237 #20735] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5204
|
+
I, [2016-09-08T12:25:00.968228 #20735] INFO -- : Rendered inline template within layouts/application (1777.3ms)
|
5205
|
+
I, [2016-09-08T12:25:00.972477 #20735] INFO -- : Completed 200 OK in 1785ms (Views: 1782.8ms | ActiveRecord: 0.0ms)
|
5206
|
+
I, [2016-09-08T12:25:00.977310 #20735] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:25:00 -0700
|
5207
|
+
I, [2016-09-08T12:25:00.977802 #20735] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5208
|
+
I, [2016-09-08T12:25:00.978366 #20735] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5209
|
+
I, [2016-09-08T12:25:01.257775 #20735] INFO -- : Rendered inline template within layouts/application (278.9ms)
|
5210
|
+
I, [2016-09-08T12:25:01.260821 #20735] INFO -- : Completed 200 OK in 282ms (Views: 282.1ms | ActiveRecord: 0.0ms)
|
5211
|
+
I, [2016-09-08T12:25:01.642928 #20735] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:25:01 -0700
|
5212
|
+
I, [2016-09-08T12:25:01.644292 #20735] INFO -- : Processing by BaselineController#show as HTML
|
5213
|
+
I, [2016-09-08T12:25:01.645164 #20735] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5214
|
+
I, [2016-09-08T12:25:01.646103 #20735] INFO -- : Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
5215
|
+
I, [2016-09-08T12:25:01.756902 #20735] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:25:01 -0700
|
5216
|
+
I, [2016-09-08T12:25:01.758213 #20735] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5217
|
+
I, [2016-09-08T12:25:01.758306 #20735] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5218
|
+
I, [2016-09-08T12:25:01.945112 #20735] INFO -- : Rendered inline template within layouts/application (185.6ms)
|
5219
|
+
I, [2016-09-08T12:25:01.946085 #20735] INFO -- : Completed 200 OK in 188ms (Views: 186.8ms | ActiveRecord: 0.0ms)
|
5220
|
+
I, [2016-09-08T12:25:02.083912 #20735] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:25:02 -0700
|
5221
|
+
I, [2016-09-08T12:25:02.084422 #20735] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5222
|
+
I, [2016-09-08T12:25:02.084456 #20735] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5223
|
+
I, [2016-09-08T12:25:02.247296 #20735] INFO -- : Rendered inline template within layouts/application (162.3ms)
|
5224
|
+
I, [2016-09-08T12:25:02.248884 #20735] INFO -- : Completed 200 OK in 164ms (Views: 164.0ms | ActiveRecord: 0.0ms)
|
5225
|
+
I, [2016-09-08T12:25:05.602495 #20735] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:25:05 -0700
|
5226
|
+
I, [2016-09-08T12:25:05.603003 #20735] INFO -- : Processing by BaselineController#show as HTML
|
5227
|
+
I, [2016-09-08T12:25:05.603353 #20735] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5228
|
+
I, [2016-09-08T12:25:05.603744 #20735] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
5229
|
+
I, [2016-09-08T12:25:05.604561 #20735] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:25:05 -0700
|
5230
|
+
I, [2016-09-08T12:25:05.604888 #20735] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5231
|
+
I, [2016-09-08T12:25:05.604922 #20735] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5232
|
+
I, [2016-09-08T12:25:08.456363 #20735] INFO -- : Rendered inline template within layouts/application (1304.2ms)
|
5233
|
+
I, [2016-09-08T12:25:08.458063 #20735] INFO -- : Completed 200 OK in 2853ms (Views: 1306.0ms | ActiveRecord: 0.0ms)
|
5234
|
+
I, [2016-09-08T12:25:08.461573 #20735] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:25:08 -0700
|
5235
|
+
I, [2016-09-08T12:25:08.462166 #20735] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5236
|
+
I, [2016-09-08T12:25:08.462209 #20735] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5237
|
+
I, [2016-09-08T12:25:11.507429 #20735] INFO -- : Rendered inline template within layouts/application (1309.2ms)
|
5238
|
+
I, [2016-09-08T12:25:11.509072 #20735] INFO -- : Completed 200 OK in 3047ms (Views: 1310.9ms | ActiveRecord: 0.0ms)
|
5239
|
+
I, [2016-09-08T12:25:13.847233 #20735] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:25:13 -0700
|
5240
|
+
I, [2016-09-08T12:25:13.847878 #20735] INFO -- : Processing by BaselineController#show as HTML
|
5241
|
+
I, [2016-09-08T12:25:13.848318 #20735] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5242
|
+
I, [2016-09-08T12:25:13.848847 #20735] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
5243
|
+
I, [2016-09-08T12:25:14.016250 #20735] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:25:14 -0700
|
5244
|
+
I, [2016-09-08T12:25:14.016769 #20735] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5245
|
+
I, [2016-09-08T12:25:14.016810 #20735] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5246
|
+
I, [2016-09-08T12:25:16.808050 #20735] INFO -- : Rendered inline template within layouts/application (1338.1ms)
|
5247
|
+
I, [2016-09-08T12:25:16.808943 #20735] INFO -- : Completed 200 OK in 2792ms (Views: 1339.1ms | ActiveRecord: 0.0ms)
|
5248
|
+
I, [2016-09-08T12:25:17.072464 #20735] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:25:17 -0700
|
5249
|
+
I, [2016-09-08T12:25:17.072965 #20735] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5250
|
+
I, [2016-09-08T12:25:17.072999 #20735] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5251
|
+
I, [2016-09-08T12:25:19.804360 #20735] INFO -- : Rendered inline template within layouts/application (1275.2ms)
|
5252
|
+
I, [2016-09-08T12:25:19.805912 #20735] INFO -- : Completed 200 OK in 2733ms (Views: 1276.8ms | ActiveRecord: 0.0ms)
|
5253
|
+
I, [2016-09-08T12:26:31.362515 #20864] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:26:31 -0700
|
5254
|
+
I, [2016-09-08T12:26:31.379670 #20864] INFO -- : Processing by BaselineController#show as HTML
|
5255
|
+
I, [2016-09-08T12:26:31.385622 #20864] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
5256
|
+
I, [2016-09-08T12:26:31.392032 #20864] INFO -- : Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
|
5257
|
+
I, [2016-09-08T12:26:31.393286 #20864] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:26:31 -0700
|
5258
|
+
I, [2016-09-08T12:26:31.394322 #20864] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5259
|
+
I, [2016-09-08T12:26:31.394381 #20864] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5260
|
+
I, [2016-09-08T12:26:32.957442 #20864] INFO -- : Rendered inline template within layouts/application (1559.3ms)
|
5261
|
+
I, [2016-09-08T12:26:32.959149 #20864] INFO -- : Completed 200 OK in 1565ms (Views: 1562.6ms | ActiveRecord: 0.0ms)
|
5262
|
+
I, [2016-09-08T12:26:32.962424 #20864] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:26:32 -0700
|
5263
|
+
I, [2016-09-08T12:26:32.962946 #20864] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5264
|
+
I, [2016-09-08T12:26:32.962980 #20864] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5265
|
+
I, [2016-09-08T12:26:33.203136 #20864] INFO -- : Rendered inline template within layouts/application (239.6ms)
|
5266
|
+
I, [2016-09-08T12:26:33.204764 #20864] INFO -- : Completed 200 OK in 242ms (Views: 241.4ms | ActiveRecord: 0.0ms)
|
5267
|
+
I, [2016-09-08T12:26:33.483745 #20864] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:26:33 -0700
|
5268
|
+
I, [2016-09-08T12:26:33.484289 #20864] INFO -- : Processing by BaselineController#show as HTML
|
5269
|
+
I, [2016-09-08T12:26:33.484661 #20864] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5270
|
+
I, [2016-09-08T12:26:33.485062 #20864] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
5271
|
+
I, [2016-09-08T12:26:33.557957 #20864] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:26:33 -0700
|
5272
|
+
I, [2016-09-08T12:26:33.558565 #20864] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5273
|
+
I, [2016-09-08T12:26:33.558615 #20864] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5274
|
+
I, [2016-09-08T12:26:33.706782 #20864] INFO -- : Rendered inline template within layouts/application (147.7ms)
|
5275
|
+
I, [2016-09-08T12:26:33.707740 #20864] INFO -- : Completed 200 OK in 149ms (Views: 148.8ms | ActiveRecord: 0.0ms)
|
5276
|
+
I, [2016-09-08T12:26:33.808700 #20864] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:26:33 -0700
|
5277
|
+
I, [2016-09-08T12:26:33.809276 #20864] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5278
|
+
I, [2016-09-08T12:26:33.809324 #20864] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5279
|
+
I, [2016-09-08T12:26:33.959687 #20864] INFO -- : Rendered inline template within layouts/application (149.9ms)
|
5280
|
+
I, [2016-09-08T12:26:33.961113 #20864] INFO -- : Completed 200 OK in 152ms (Views: 151.5ms | ActiveRecord: 0.0ms)
|
5281
|
+
I, [2016-09-08T12:26:37.151661 #20864] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:26:37 -0700
|
5282
|
+
I, [2016-09-08T12:26:37.152172 #20864] INFO -- : Processing by BaselineController#show as HTML
|
5283
|
+
I, [2016-09-08T12:26:37.152528 #20864] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5284
|
+
I, [2016-09-08T12:26:37.152930 #20864] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
5285
|
+
I, [2016-09-08T12:26:37.153737 #20864] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:26:37 -0700
|
5286
|
+
I, [2016-09-08T12:26:37.154072 #20864] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5287
|
+
I, [2016-09-08T12:26:37.154100 #20864] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5288
|
+
I, [2016-09-08T12:26:40.105234 #20864] INFO -- : Rendered inline template within layouts/application (1317.3ms)
|
5289
|
+
I, [2016-09-08T12:26:40.107308 #20864] INFO -- : Completed 200 OK in 2953ms (Views: 1319.4ms | ActiveRecord: 0.0ms)
|
5290
|
+
I, [2016-09-08T12:26:40.111013 #20864] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:26:40 -0700
|
5291
|
+
I, [2016-09-08T12:26:40.111471 #20864] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5292
|
+
I, [2016-09-08T12:26:40.111504 #20864] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5293
|
+
I, [2016-09-08T12:26:43.618818 #20864] INFO -- : Rendered inline template within layouts/application (1510.1ms)
|
5294
|
+
I, [2016-09-08T12:26:43.620395 #20864] INFO -- : Completed 200 OK in 3509ms (Views: 1511.8ms | ActiveRecord: 0.0ms)
|
5295
|
+
I, [2016-09-08T12:26:46.672973 #20864] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:26:46 -0700
|
5296
|
+
I, [2016-09-08T12:26:46.673948 #20864] INFO -- : Processing by BaselineController#show as HTML
|
5297
|
+
I, [2016-09-08T12:26:46.675408 #20864] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
5298
|
+
I, [2016-09-08T12:26:46.676849 #20864] INFO -- : Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
5299
|
+
I, [2016-09-08T12:26:46.902385 #20864] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:26:46 -0700
|
5300
|
+
I, [2016-09-08T12:26:46.902883 #20864] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5301
|
+
I, [2016-09-08T12:26:46.902914 #20864] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5302
|
+
I, [2016-09-08T12:26:49.625689 #20864] INFO -- : Rendered inline template within layouts/application (1314.5ms)
|
5303
|
+
I, [2016-09-08T12:26:49.626650 #20864] INFO -- : Completed 200 OK in 2724ms (Views: 1315.5ms | ActiveRecord: 0.0ms)
|
5304
|
+
I, [2016-09-08T12:26:49.900298 #20864] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:26:49 -0700
|
5305
|
+
I, [2016-09-08T12:26:49.900800 #20864] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5306
|
+
I, [2016-09-08T12:26:49.900834 #20864] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5307
|
+
I, [2016-09-08T12:26:52.757408 #20864] INFO -- : Rendered inline template within layouts/application (1314.9ms)
|
5308
|
+
I, [2016-09-08T12:26:52.758861 #20864] INFO -- : Completed 200 OK in 2858ms (Views: 1316.5ms | ActiveRecord: 0.0ms)
|
5309
|
+
I, [2016-09-08T12:35:58.628416 #21630] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:35:58 -0700
|
5310
|
+
I, [2016-09-08T12:35:58.644222 #21630] INFO -- : Processing by BaselineController#show as HTML
|
5311
|
+
I, [2016-09-08T12:35:58.650349 #21630] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
5312
|
+
I, [2016-09-08T12:35:58.656773 #21630] INFO -- : Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
5313
|
+
I, [2016-09-08T12:35:58.657989 #21630] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:35:58 -0700
|
5314
|
+
I, [2016-09-08T12:35:58.658942 #21630] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5315
|
+
I, [2016-09-08T12:35:58.658974 #21630] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5316
|
+
I, [2016-09-08T12:36:00.050504 #21630] INFO -- : Rendered inline template within layouts/application (1387.8ms)
|
5317
|
+
I, [2016-09-08T12:36:00.052129 #21630] INFO -- : Completed 200 OK in 1393ms (Views: 1391.1ms | ActiveRecord: 0.0ms)
|
5318
|
+
I, [2016-09-08T12:36:00.055451 #21630] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:36:00 -0700
|
5319
|
+
I, [2016-09-08T12:36:00.056007 #21630] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5320
|
+
I, [2016-09-08T12:36:00.056047 #21630] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5321
|
+
I, [2016-09-08T12:36:00.253151 #21630] INFO -- : Rendered inline template within layouts/application (196.6ms)
|
5322
|
+
I, [2016-09-08T12:36:00.254666 #21630] INFO -- : Completed 200 OK in 199ms (Views: 198.1ms | ActiveRecord: 0.0ms)
|
5323
|
+
I, [2016-09-08T12:36:00.509271 #21630] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:36:00 -0700
|
5324
|
+
I, [2016-09-08T12:36:00.509851 #21630] INFO -- : Processing by BaselineController#show as HTML
|
5325
|
+
I, [2016-09-08T12:36:00.510241 #21630] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5326
|
+
I, [2016-09-08T12:36:00.510700 #21630] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
5327
|
+
I, [2016-09-08T12:36:00.596128 #21630] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:36:00 -0700
|
5328
|
+
I, [2016-09-08T12:36:00.596643 #21630] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5329
|
+
I, [2016-09-08T12:36:00.596677 #21630] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5330
|
+
I, [2016-09-08T12:36:00.746478 #21630] INFO -- : Rendered inline template within layouts/application (149.4ms)
|
5331
|
+
I, [2016-09-08T12:36:00.747300 #21630] INFO -- : Completed 200 OK in 151ms (Views: 150.3ms | ActiveRecord: 0.0ms)
|
5332
|
+
I, [2016-09-08T12:36:00.851393 #21630] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:36:00 -0700
|
5333
|
+
I, [2016-09-08T12:36:00.851857 #21630] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5334
|
+
I, [2016-09-08T12:36:00.851887 #21630] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5335
|
+
I, [2016-09-08T12:36:01.001311 #21630] INFO -- : Rendered inline template within layouts/application (149.0ms)
|
5336
|
+
I, [2016-09-08T12:36:01.002649 #21630] INFO -- : Completed 200 OK in 151ms (Views: 150.5ms | ActiveRecord: 0.0ms)
|
5337
|
+
I, [2016-09-08T12:36:04.095893 #21630] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:36:04 -0700
|
5338
|
+
I, [2016-09-08T12:36:04.096464 #21630] INFO -- : Processing by BaselineController#show as HTML
|
5339
|
+
I, [2016-09-08T12:36:04.097197 #21630] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5340
|
+
I, [2016-09-08T12:36:04.097617 #21630] INFO -- : Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
5341
|
+
I, [2016-09-08T12:36:04.099316 #21630] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:36:04 -0700
|
5342
|
+
I, [2016-09-08T12:36:04.099765 #21630] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5343
|
+
I, [2016-09-08T12:36:04.099798 #21630] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5344
|
+
I, [2016-09-08T12:36:06.767199 #21630] INFO -- : Rendered inline template within layouts/application (1266.9ms)
|
5345
|
+
I, [2016-09-08T12:36:06.768684 #21630] INFO -- : Completed 200 OK in 2669ms (Views: 1268.8ms | ActiveRecord: 0.0ms)
|
5346
|
+
I, [2016-09-08T12:36:06.772078 #21630] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:36:06 -0700
|
5347
|
+
I, [2016-09-08T12:36:06.772629 #21630] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5348
|
+
I, [2016-09-08T12:36:06.772660 #21630] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5349
|
+
I, [2016-09-08T12:36:09.745379 #21630] INFO -- : Rendered inline template within layouts/application (1275.5ms)
|
5350
|
+
I, [2016-09-08T12:36:09.746852 #21630] INFO -- : Completed 200 OK in 2974ms (Views: 1277.1ms | ActiveRecord: 0.0ms)
|
5351
|
+
I, [2016-09-08T12:36:11.971317 #21630] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:36:11 -0700
|
5352
|
+
I, [2016-09-08T12:36:11.971938 #21630] INFO -- : Processing by BaselineController#show as HTML
|
5353
|
+
I, [2016-09-08T12:36:11.972606 #21630] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5354
|
+
I, [2016-09-08T12:36:11.973094 #21630] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
5355
|
+
I, [2016-09-08T12:36:12.137068 #21630] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:36:12 -0700
|
5356
|
+
I, [2016-09-08T12:36:12.137578 #21630] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5357
|
+
I, [2016-09-08T12:36:12.137631 #21630] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5358
|
+
I, [2016-09-08T12:36:14.733822 #21630] INFO -- : Rendered inline template within layouts/application (1257.7ms)
|
5359
|
+
I, [2016-09-08T12:36:14.734689 #21630] INFO -- : Completed 200 OK in 2597ms (Views: 1258.7ms | ActiveRecord: 0.0ms)
|
5360
|
+
I, [2016-09-08T12:36:14.990582 #21630] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:36:14 -0700
|
5361
|
+
I, [2016-09-08T12:36:14.991087 #21630] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5362
|
+
I, [2016-09-08T12:36:14.991120 #21630] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5363
|
+
I, [2016-09-08T12:36:17.709255 #21630] INFO -- : Rendered inline template within layouts/application (1256.2ms)
|
5364
|
+
I, [2016-09-08T12:36:17.711157 #21630] INFO -- : Completed 200 OK in 2720ms (Views: 1258.2ms | ActiveRecord: 0.0ms)
|
5365
|
+
I, [2016-09-08T12:42:18.190874 #22149] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:42:18 -0700
|
5366
|
+
I, [2016-09-08T12:42:18.205137 #22149] INFO -- : Processing by BaselineController#show as HTML
|
5367
|
+
I, [2016-09-08T12:42:18.210898 #22149] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
5368
|
+
I, [2016-09-08T12:42:18.216637 #22149] INFO -- : Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
5369
|
+
I, [2016-09-08T12:42:18.217970 #22149] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:42:18 -0700
|
5370
|
+
I, [2016-09-08T12:42:18.219170 #22149] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5371
|
+
I, [2016-09-08T12:42:18.219209 #22149] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5372
|
+
I, [2016-09-08T12:42:19.747766 #22149] INFO -- : Rendered inline template within layouts/application (1524.9ms)
|
5373
|
+
I, [2016-09-08T12:42:19.749467 #22149] INFO -- : Completed 200 OK in 1530ms (Views: 1528.1ms | ActiveRecord: 0.0ms)
|
5374
|
+
I, [2016-09-08T12:42:19.752864 #22149] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:42:19 -0700
|
5375
|
+
I, [2016-09-08T12:42:19.753315 #22149] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5376
|
+
I, [2016-09-08T12:42:19.753345 #22149] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5377
|
+
I, [2016-09-08T12:42:19.959315 #22149] INFO -- : Rendered inline template within layouts/application (205.5ms)
|
5378
|
+
I, [2016-09-08T12:42:19.960787 #22149] INFO -- : Completed 200 OK in 207ms (Views: 207.0ms | ActiveRecord: 0.0ms)
|
5379
|
+
I, [2016-09-08T12:42:20.209251 #22149] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:42:20 -0700
|
5380
|
+
I, [2016-09-08T12:42:20.209811 #22149] INFO -- : Processing by BaselineController#show as HTML
|
5381
|
+
I, [2016-09-08T12:42:20.210168 #22149] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5382
|
+
I, [2016-09-08T12:42:20.210705 #22149] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
5383
|
+
I, [2016-09-08T12:42:20.283691 #22149] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:42:20 -0700
|
5384
|
+
I, [2016-09-08T12:42:20.284210 #22149] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5385
|
+
I, [2016-09-08T12:42:20.284244 #22149] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5386
|
+
I, [2016-09-08T12:42:20.432177 #22149] INFO -- : Rendered inline template within layouts/application (147.5ms)
|
5387
|
+
I, [2016-09-08T12:42:20.432898 #22149] INFO -- : Completed 200 OK in 149ms (Views: 148.3ms | ActiveRecord: 0.0ms)
|
5388
|
+
I, [2016-09-08T12:42:20.536847 #22149] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:42:20 -0700
|
5389
|
+
I, [2016-09-08T12:42:20.537340 #22149] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5390
|
+
I, [2016-09-08T12:42:20.537374 #22149] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5391
|
+
I, [2016-09-08T12:42:20.681838 #22149] INFO -- : Rendered inline template within layouts/application (144.0ms)
|
5392
|
+
I, [2016-09-08T12:42:20.682627 #22149] INFO -- : Completed 200 OK in 145ms (Views: 144.9ms | ActiveRecord: 0.0ms)
|
5393
|
+
I, [2016-09-08T12:42:23.758275 #22149] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:42:23 -0700
|
5394
|
+
I, [2016-09-08T12:42:23.758855 #22149] INFO -- : Processing by BaselineController#show as HTML
|
5395
|
+
I, [2016-09-08T12:42:23.759361 #22149] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5396
|
+
I, [2016-09-08T12:42:23.759779 #22149] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
5397
|
+
I, [2016-09-08T12:42:23.760637 #22149] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:42:23 -0700
|
5398
|
+
I, [2016-09-08T12:42:23.761057 #22149] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5399
|
+
I, [2016-09-08T12:42:23.761088 #22149] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5400
|
+
I, [2016-09-08T12:42:29.448221 #22149] INFO -- : Rendered inline template within layouts/application (4272.7ms)
|
5401
|
+
I, [2016-09-08T12:42:29.678427 #22149] INFO -- : Completed 200 OK in 5917ms (Views: 4273.5ms | ActiveRecord: 0.0ms)
|
5402
|
+
I, [2016-09-08T12:42:29.682052 #22149] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:42:29 -0700
|
5403
|
+
I, [2016-09-08T12:42:29.682525 #22149] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5404
|
+
I, [2016-09-08T12:42:29.682557 #22149] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5405
|
+
I, [2016-09-08T12:42:35.809452 #22149] INFO -- : Rendered inline template within layouts/application (4656.1ms)
|
5406
|
+
I, [2016-09-08T12:42:35.810162 #22149] INFO -- : Completed 200 OK in 6128ms (Views: 4656.8ms | ActiveRecord: 0.0ms)
|
5407
|
+
I, [2016-09-08T12:42:38.057057 #22149] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-08 12:42:38 -0700
|
5408
|
+
I, [2016-09-08T12:42:38.057593 #22149] INFO -- : Processing by BaselineController#show as HTML
|
5409
|
+
I, [2016-09-08T12:42:38.057935 #22149] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
5410
|
+
I, [2016-09-08T12:42:38.058336 #22149] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
5411
|
+
I, [2016-09-08T12:42:38.190294 #22149] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-08 12:42:38 -0700
|
5412
|
+
I, [2016-09-08T12:42:38.190830 #22149] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5413
|
+
I, [2016-09-08T12:42:38.190861 #22149] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
|
5414
|
+
I, [2016-09-08T12:42:43.906861 #22149] INFO -- : Rendered inline template within layouts/application (4329.7ms)
|
5415
|
+
I, [2016-09-08T12:42:43.908012 #22149] INFO -- : Completed 200 OK in 5717ms (Views: 4330.9ms | ActiveRecord: 0.0ms)
|
5416
|
+
I, [2016-09-08T12:42:44.293161 #22149] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-08 12:42:44 -0700
|
5417
|
+
I, [2016-09-08T12:42:44.293696 #22149] INFO -- : Processing by Mascot::SiteController#show as HTML
|
5418
|
+
I, [2016-09-08T12:42:44.293729 #22149] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
|
5419
|
+
I, [2016-09-08T12:42:50.271169 #22149] INFO -- : Rendered inline template within layouts/application (4568.0ms)
|
5420
|
+
I, [2016-09-08T12:42:50.306491 #22149] INFO -- : Completed 200 OK in 6013ms (Views: 4568.7ms | ActiveRecord: 0.0ms)
|