simplificator_infrastructure 0.0.2 → 0.0.3
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/simplificator_infrastructure/errors_controller.rb +1 -1
- data/lib/simplificator_infrastructure/error_page_handler.rb +5 -2
- data/lib/simplificator_infrastructure/error_summary.rb +19 -13
- data/lib/simplificator_infrastructure/version.rb +1 -1
- data/test/dummy/app/controllers/error_previews_controller.rb +0 -1
- data/test/dummy/config/routes.rb +1 -2
- data/test/dummy/log/development.log +22 -1972
- data/test/dummy/log/test.log +796 -0
- data/test/dummy/test/integration/error_previews_controller_test.rb +16 -0
- data/test/lib/simplificator_infrastructure/error_summary_test.rb +64 -0
- metadata +6 -46
- data/test/dummy/test/controllers/foos_controller_test.rb +0 -7
- data/test/dummy/tmp/cache/assets/development/sprockets/0500adeee201d5a348b4c3ec497adae2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/09ed1ef41f7cd9d17777b1411359e566 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1344657b8f5d1906efcbafe0e22c17cc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5acaff767402e80bb9961b92c8bc3dda +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6d07f71bc133b650e297569a7e19174e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7e3d3b1b8b95a568bcb68e2f29436ca3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7f0315cb615b6ab601fd42d59b8afde9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8861585cc3fb654bbf27d60c86aba449 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9c500634b58fe570e801dd477f2f9769 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9e70666db09ef523b119125cc9eb73c5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a58c29f74df199333ef9f066c7b436bd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d7cb110ec211a8c4ef021e93a2f976f7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e303fbe4b122fbe771c62af737c0e1b5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e96855d0fc8137ba701522baf08faf33 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f39692dced32f5d36d10caed783739ee +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6d24f4ec71fa7b254140c9d2198a9db1b533998
|
4
|
+
data.tar.gz: ecf7242efbb0ee2b70afbd4cba38bc1e7ce85faa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 09ac7f87ecae9bec61f8b8932371a607228dca34c9e7f848722f863069bbcb105998e28e82d30e7845c9415654c5e4b0d029dd849c8be6a320246e24f2a20297
|
7
|
+
data.tar.gz: 6c818cbfe5486ac54ef3edc4319775c6c11fe4f51c8b60d3f2ff81ab4b5a30aa056578482622d44fd89830a7322668412f98f184631e01e61b03234f48b83926
|
@@ -33,7 +33,7 @@ class SimplificatorInfrastructure::ErrorsController < ActionController::Base
|
|
33
33
|
|
34
34
|
def error_summary
|
35
35
|
@error_summary ||= begin
|
36
|
-
::SimplificatorInfrastructure::ErrorSummary.new(env
|
36
|
+
::SimplificatorInfrastructure::ErrorSummary.new(env)
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
@@ -1,14 +1,17 @@
|
|
1
1
|
class SimplificatorInfrastructure::ErrorPageHandler
|
2
2
|
|
3
3
|
def self.register
|
4
|
-
|
4
|
+
enable_error_page_rendering
|
5
5
|
register_exception_app
|
6
6
|
end
|
7
7
|
|
8
8
|
private
|
9
9
|
|
10
|
-
def self.
|
10
|
+
def self.enable_error_page_rendering
|
11
|
+
# Enables rendering of error pages.
|
12
|
+
# Those settings are usually set up properly in staging/production environments anyway.
|
11
13
|
Rails.application.config.consider_all_requests_local = false
|
14
|
+
Rails.application.config.action_dispatch.show_exceptions = true
|
12
15
|
end
|
13
16
|
|
14
17
|
def self.register_exception_app
|
@@ -2,8 +2,8 @@ class SimplificatorInfrastructure::ErrorSummary
|
|
2
2
|
|
3
3
|
attr_reader :env
|
4
4
|
|
5
|
-
def initialize(
|
6
|
-
@env =
|
5
|
+
def initialize(env)
|
6
|
+
@env = env
|
7
7
|
end
|
8
8
|
|
9
9
|
# detects the status code based on the exception that was thrown
|
@@ -21,29 +21,30 @@ class SimplificatorInfrastructure::ErrorSummary
|
|
21
21
|
end
|
22
22
|
|
23
23
|
# tries to detect locale based on #available_locales
|
24
|
-
# and a locale which is in the path, in the accept header or default
|
24
|
+
# and a locale which is in the path, in params (:locale), in the accept header or default
|
25
25
|
def locale
|
26
|
-
|
27
|
-
available_locales.include?(detected_locale) ? detected_locale : default_locale
|
26
|
+
path_locale || params_locale || accept_locale || default_locale
|
28
27
|
end
|
29
28
|
|
30
29
|
private
|
31
30
|
|
31
|
+
def request_path
|
32
|
+
env['REQUEST_PATH']
|
33
|
+
end
|
34
|
+
|
32
35
|
def default_locale
|
33
36
|
I18n.default_locale
|
34
37
|
end
|
35
38
|
|
36
39
|
def params_locale
|
37
|
-
locale = params['locale']
|
38
|
-
locale
|
40
|
+
locale = params['locale'].try(:to_sym)
|
41
|
+
nil_if_locale_is_unknown(locale)
|
39
42
|
end
|
40
43
|
|
41
44
|
def path_locale
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
match = path.match(/\A\/(#{locales_matcher})\/.*\z/)
|
46
|
-
match[1].to_sym if match && match[1]
|
45
|
+
match = request_path.try(:match, /\A\/([a-z]{2})\/.*\z/)
|
46
|
+
locale = match[1].try(:to_sym) if match
|
47
|
+
nil_if_locale_is_unknown(locale)
|
47
48
|
end
|
48
49
|
|
49
50
|
def available_locales
|
@@ -54,8 +55,13 @@ class SimplificatorInfrastructure::ErrorSummary
|
|
54
55
|
# (ignoring de_DE style locales and expecting locales to be ordered by quality)
|
55
56
|
def accept_locale
|
56
57
|
accept_header = env['HTTP_ACCEPT_LANGUAGE']
|
57
|
-
accept_header.scan
|
58
|
+
locale = accept_header.try(:scan, /[a-z]{2}/).try(:first).try(:to_sym)
|
59
|
+
nil_if_locale_is_unknown(locale)
|
58
60
|
end
|
59
61
|
|
60
62
|
|
63
|
+
def nil_if_locale_is_unknown(locale)
|
64
|
+
available_locales.include?(locale) ? locale : nil
|
65
|
+
end
|
66
|
+
|
61
67
|
end
|
data/test/dummy/config/routes.rb
CHANGED
@@ -2,8 +2,7 @@ Rails.application.routes.draw do
|
|
2
2
|
|
3
3
|
mount SimplificatorInfrastructure::Engine => "/simplificator_infrastructure"
|
4
4
|
|
5
|
-
resources :error_previews, only: [:index]
|
6
5
|
root to: 'error_previews#index'
|
7
|
-
|
6
|
+
get 'error_previews', to: 'error_previews#index'
|
8
7
|
get 'error_previews/preview', to: 'error_previews#preview'
|
9
8
|
end
|
@@ -1,2036 +1,86 @@
|
|
1
1
|
|
2
2
|
|
3
|
-
Started GET "/
|
4
|
-
|
5
|
-
ActionController::RoutingError (No route matches [GET] "/foos1"):
|
6
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
7
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
8
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
9
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
10
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
11
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
12
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
13
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
14
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
15
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
16
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
17
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
18
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
19
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
20
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
21
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
22
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
23
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
24
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
25
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
26
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
27
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
28
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
29
|
-
|
30
|
-
|
31
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
32
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (7.3ms)
|
33
|
-
Completed 500 Internal Server Error in 21ms
|
34
|
-
|
35
|
-
|
36
|
-
Started GET "/foos1" for ::1 at 2015-01-16 07:28:40 +0100
|
37
|
-
|
38
|
-
ActionController::RoutingError (No route matches [GET] "/foos1"):
|
39
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
40
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
41
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
42
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
43
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
44
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
45
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
46
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
47
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
48
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
49
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
50
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
51
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
52
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
53
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
54
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
55
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
56
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
57
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
58
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
59
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
60
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
61
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
62
|
-
|
63
|
-
|
64
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
65
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (5.6ms)
|
66
|
-
Completed 500 Internal Server Error in 21ms
|
67
|
-
|
68
|
-
|
69
|
-
Started GET "/foos1" for ::1 at 2015-01-16 07:28:41 +0100
|
70
|
-
|
71
|
-
ActionController::RoutingError (No route matches [GET] "/foos1"):
|
72
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
73
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
74
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
75
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
76
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
77
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
78
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
79
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
80
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
81
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
82
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
83
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
84
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
85
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
86
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
87
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
88
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
89
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
90
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
91
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
92
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
93
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
94
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
95
|
-
|
96
|
-
|
97
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
98
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (4.0ms)
|
99
|
-
Completed 500 Internal Server Error in 13ms
|
100
|
-
|
101
|
-
|
102
|
-
Started GET "/foos1" for ::1 at 2015-01-16 07:29:59 +0100
|
103
|
-
|
104
|
-
ActionController::RoutingError (No route matches [GET] "/foos1"):
|
105
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
106
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
107
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
108
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
109
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
110
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
111
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
112
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
113
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
114
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
115
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
116
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
117
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
118
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
119
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
120
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
121
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
122
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
123
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
124
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
125
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
126
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
127
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
128
|
-
|
129
|
-
|
130
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
131
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (5.5ms)
|
132
|
-
Completed 500 Internal Server Error in 23ms
|
133
|
-
|
134
|
-
|
135
|
-
Started GET "/foos1" for ::1 at 2015-01-16 07:31:06 +0100
|
136
|
-
|
137
|
-
ActionController::RoutingError (No route matches [GET] "/foos1"):
|
138
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
139
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
140
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
141
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
142
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
143
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
144
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
145
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
146
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
147
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
148
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
149
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
150
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
151
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
152
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
153
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
154
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
155
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
156
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
157
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
158
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
159
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
160
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
161
|
-
|
162
|
-
|
163
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
164
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (5.4ms)
|
165
|
-
Completed 404 Not Found in 51ms (Views: 45.8ms)
|
166
|
-
|
167
|
-
|
168
|
-
Started GET "/assets/simplificator_infrastructure/errors-596f278dce30394a88438b104b35a146.css?body=1" for ::1 at 2015-01-16 07:31:06 +0100
|
169
|
-
|
170
|
-
|
171
|
-
Started GET "/assets/simplificator_infrastructure/application-698f740673059b320f84825d1bb419a1.css?body=1" for ::1 at 2015-01-16 07:31:06 +0100
|
172
|
-
|
173
|
-
|
174
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:31:06 +0100
|
175
|
-
|
176
|
-
|
177
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:31:06 +0100
|
178
|
-
|
179
|
-
|
180
|
-
Started GET "/images/simplificator_infrastructure/errors/logo.png" for ::1 at 2015-01-16 07:31:06 +0100
|
181
|
-
|
182
|
-
ActionController::RoutingError (No route matches [GET] "/images/simplificator_infrastructure/errors/logo.png"):
|
183
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
184
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
185
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
186
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
187
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
188
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
189
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
190
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
191
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
192
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
193
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
194
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
195
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
196
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
197
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
198
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
199
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
200
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
201
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
202
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
203
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
204
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
205
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
206
|
-
|
207
|
-
|
208
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
209
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (3.4ms)
|
210
|
-
Completed 404 Not Found in 13ms (Views: 12.1ms)
|
211
|
-
|
212
|
-
|
213
|
-
Started GET "/foos1" for ::1 at 2015-01-16 07:32:01 +0100
|
214
|
-
|
215
|
-
ActionController::RoutingError (No route matches [GET] "/foos1"):
|
216
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
217
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
218
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
219
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
220
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
221
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
222
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
223
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
224
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
225
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
226
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
227
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
228
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
229
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
230
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
231
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
232
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
233
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
234
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
235
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
236
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
237
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
238
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
239
|
-
|
240
|
-
|
241
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
242
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (5.4ms)
|
243
|
-
Completed 404 Not Found in 39ms (Views: 32.8ms)
|
244
|
-
|
245
|
-
|
246
|
-
Started GET "/assets/simplificator_infrastructure/errors-596f278dce30394a88438b104b35a146.css?body=1" for ::1 at 2015-01-16 07:32:01 +0100
|
247
|
-
|
248
|
-
|
249
|
-
Started GET "/assets/simplificator_infrastructure/application-698f740673059b320f84825d1bb419a1.css?body=1" for ::1 at 2015-01-16 07:32:01 +0100
|
250
|
-
|
251
|
-
|
252
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:32:01 +0100
|
253
|
-
|
254
|
-
|
255
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:32:01 +0100
|
256
|
-
|
257
|
-
|
258
|
-
Started GET "/images/simplificator_infrastructure/errors/logo.png" for ::1 at 2015-01-16 07:32:01 +0100
|
259
|
-
|
260
|
-
ActionController::RoutingError (No route matches [GET] "/images/simplificator_infrastructure/errors/logo.png"):
|
261
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
262
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
263
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
264
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
265
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
266
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
267
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
268
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
269
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
270
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
271
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
272
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
273
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
274
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
275
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
276
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
277
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
278
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
279
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
280
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
281
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
282
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
283
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
284
|
-
|
285
|
-
|
286
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
287
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (3.8ms)
|
288
|
-
Completed 404 Not Found in 14ms (Views: 13.4ms)
|
289
|
-
|
290
|
-
|
291
|
-
Started GET "/foos1" for ::1 at 2015-01-16 07:32:02 +0100
|
292
|
-
|
293
|
-
ActionController::RoutingError (No route matches [GET] "/foos1"):
|
294
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
295
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
296
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
297
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
298
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
299
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
300
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
301
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
302
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
303
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
304
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
305
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
306
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
307
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
308
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
309
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
310
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
311
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
312
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
313
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
314
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
315
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
316
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
317
|
-
|
318
|
-
|
319
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
320
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (3.7ms)
|
321
|
-
Completed 404 Not Found in 13ms (Views: 12.2ms)
|
322
|
-
|
323
|
-
|
324
|
-
Started GET "/assets/simplificator_infrastructure/errors-596f278dce30394a88438b104b35a146.css?body=1" for ::1 at 2015-01-16 07:32:02 +0100
|
325
|
-
|
326
|
-
|
327
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:32:02 +0100
|
328
|
-
|
329
|
-
|
330
|
-
Started GET "/assets/simplificator_infrastructure/application-698f740673059b320f84825d1bb419a1.css?body=1" for ::1 at 2015-01-16 07:32:02 +0100
|
331
|
-
|
332
|
-
|
333
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:32:02 +0100
|
334
|
-
|
335
|
-
|
336
|
-
Started GET "/images/simplificator_infrastructure/errors/logo.png" for ::1 at 2015-01-16 07:32:02 +0100
|
337
|
-
|
338
|
-
ActionController::RoutingError (No route matches [GET] "/images/simplificator_infrastructure/errors/logo.png"):
|
339
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
340
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
341
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
342
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
343
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
344
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
345
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
346
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
347
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
348
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
349
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
350
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
351
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
352
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
353
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
354
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
355
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
356
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
357
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
358
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
359
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
360
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
361
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
362
|
-
|
363
|
-
|
364
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
365
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (3.9ms)
|
366
|
-
Completed 404 Not Found in 14ms (Views: 12.7ms)
|
367
|
-
|
368
|
-
|
369
|
-
Started GET "/foos1" for ::1 at 2015-01-16 07:32:03 +0100
|
370
|
-
|
371
|
-
ActionController::RoutingError (No route matches [GET] "/foos1"):
|
372
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
373
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
374
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
375
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
376
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
377
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
378
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
379
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
380
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
381
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
382
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
383
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
384
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
385
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
386
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
387
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
388
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
389
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
390
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
391
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
392
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
393
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
394
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
395
|
-
|
396
|
-
|
397
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
398
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (4.2ms)
|
399
|
-
Completed 404 Not Found in 14ms (Views: 13.1ms)
|
400
|
-
|
401
|
-
|
402
|
-
Started GET "/assets/simplificator_infrastructure/errors-596f278dce30394a88438b104b35a146.css?body=1" for ::1 at 2015-01-16 07:32:03 +0100
|
403
|
-
|
404
|
-
|
405
|
-
Started GET "/assets/simplificator_infrastructure/application-698f740673059b320f84825d1bb419a1.css?body=1" for ::1 at 2015-01-16 07:32:03 +0100
|
406
|
-
|
407
|
-
|
408
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:32:03 +0100
|
409
|
-
|
410
|
-
|
411
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:32:03 +0100
|
412
|
-
|
413
|
-
|
414
|
-
Started GET "/images/simplificator_infrastructure/errors/logo.png" for ::1 at 2015-01-16 07:32:03 +0100
|
415
|
-
|
416
|
-
ActionController::RoutingError (No route matches [GET] "/images/simplificator_infrastructure/errors/logo.png"):
|
417
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
418
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
419
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
420
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
421
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
422
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
423
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
424
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
425
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
426
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
427
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
428
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
429
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
430
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
431
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
432
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
433
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
434
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
435
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
436
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
437
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
438
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
439
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
440
|
-
|
441
|
-
|
442
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
443
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (3.4ms)
|
444
|
-
Completed 404 Not Found in 13ms (Views: 12.1ms)
|
445
|
-
|
446
|
-
|
447
|
-
Started GET "/foos1" for ::1 at 2015-01-16 07:32:17 +0100
|
448
|
-
|
449
|
-
ActionController::RoutingError (No route matches [GET] "/foos1"):
|
450
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
451
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
452
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
453
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
454
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
455
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
456
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
457
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
458
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
459
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
460
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
461
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
462
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
463
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
464
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
465
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
466
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
467
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
468
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
469
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
470
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
471
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
472
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
473
|
-
|
474
|
-
|
475
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
476
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (2.6ms)
|
477
|
-
Completed 404 Not Found in 12ms (Views: 11.3ms)
|
478
|
-
|
479
|
-
|
480
|
-
Started GET "/assets/simplificator_infrastructure/errors-596f278dce30394a88438b104b35a146.css?body=1" for ::1 at 2015-01-16 07:32:17 +0100
|
481
|
-
|
482
|
-
|
483
|
-
Started GET "/assets/simplificator_infrastructure/application-698f740673059b320f84825d1bb419a1.css?body=1" for ::1 at 2015-01-16 07:32:17 +0100
|
484
|
-
|
485
|
-
|
486
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:32:17 +0100
|
487
|
-
|
488
|
-
|
489
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:32:17 +0100
|
490
|
-
|
491
|
-
|
492
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:32:17 +0100
|
493
|
-
|
494
|
-
|
495
|
-
Started GET "/foos" for ::1 at 2015-01-16 07:36:41 +0100
|
496
|
-
|
497
|
-
ActionController::RoutingError (No route matches [GET] "/foos"):
|
498
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
499
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
500
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
501
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
502
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
503
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
504
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
505
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
506
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
507
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
508
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
509
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
510
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
511
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
512
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
513
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
514
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
515
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
516
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
517
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
518
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
519
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
520
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
521
|
-
|
522
|
-
|
523
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
524
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (3.9ms)
|
525
|
-
Completed 404 Not Found in 42ms (Views: 38.0ms)
|
526
|
-
|
527
|
-
|
528
|
-
Started GET "/foos" for ::1 at 2015-01-16 07:36:41 +0100
|
529
|
-
|
530
|
-
ActionController::RoutingError (No route matches [GET] "/foos"):
|
531
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
532
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
533
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
534
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
535
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
536
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
537
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
538
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
539
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
540
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
541
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
542
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
543
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
544
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
545
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
546
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
547
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
548
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
549
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
550
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
551
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
552
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
553
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
554
|
-
|
555
|
-
|
556
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
557
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.6ms)
|
558
|
-
Completed 404 Not Found in 11ms (Views: 9.7ms)
|
559
|
-
|
560
|
-
|
561
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:36:41 +0100
|
562
|
-
|
563
|
-
|
564
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:36:41 +0100
|
565
|
-
|
566
|
-
|
567
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:36:41 +0100
|
568
|
-
|
569
|
-
|
570
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:36:41 +0100
|
571
|
-
|
572
|
-
|
573
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:36:41 +0100
|
574
|
-
|
575
|
-
|
576
|
-
Started GET "/foos" for ::1 at 2015-01-16 07:37:45 +0100
|
577
|
-
Processing by FoosController#index as HTML
|
578
|
-
Completed 500 Internal Server Error in 0ms
|
579
|
-
|
580
|
-
RuntimeError (some generic exception):
|
581
|
-
app/controllers/foos_controller.rb:5:in `index'
|
582
|
-
|
583
|
-
|
584
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
585
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (8.0ms)
|
586
|
-
Completed 500 Internal Server Error in 46ms (Views: 41.1ms)
|
587
|
-
|
588
|
-
|
589
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:37:45 +0100
|
590
|
-
|
591
|
-
|
592
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:37:45 +0100
|
593
|
-
|
594
|
-
|
595
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:37:45 +0100
|
596
|
-
|
597
|
-
|
598
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:37:45 +0100
|
599
|
-
|
600
|
-
|
601
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:37:45 +0100
|
602
|
-
|
603
|
-
|
604
|
-
Started GET "/foos" for ::1 at 2015-01-16 07:37:45 +0100
|
605
|
-
Processing by FoosController#index as HTML
|
606
|
-
Completed 500 Internal Server Error in 0ms
|
607
|
-
|
608
|
-
RuntimeError (some generic exception):
|
609
|
-
app/controllers/foos_controller.rb:5:in `index'
|
610
|
-
|
611
|
-
|
612
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
613
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
614
|
-
Completed 500 Internal Server Error in 10ms (Views: 9.1ms)
|
615
|
-
|
616
|
-
|
617
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:37:45 +0100
|
618
|
-
|
619
|
-
|
620
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:37:45 +0100
|
621
|
-
|
622
|
-
|
623
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:37:45 +0100
|
624
|
-
|
625
|
-
|
626
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:37:45 +0100
|
627
|
-
|
628
|
-
|
629
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:37:45 +0100
|
630
|
-
|
631
|
-
|
632
|
-
Started GET "/foos?code=404" for ::1 at 2015-01-16 07:37:53 +0100
|
633
|
-
Processing by FoosController#index as HTML
|
634
|
-
Parameters: {"code"=>"404"}
|
635
|
-
Completed 500 Internal Server Error in 0ms
|
636
|
-
|
637
|
-
RuntimeError (Unhandled code 404 specified: raise StandardError):
|
638
|
-
app/controllers/foos_controller.rb:8:in `index'
|
639
|
-
|
640
|
-
|
641
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
642
|
-
Parameters: {"code"=>"404"}
|
643
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
644
|
-
Completed 500 Internal Server Error in 10ms (Views: 8.9ms)
|
645
|
-
|
646
|
-
|
647
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:37:53 +0100
|
648
|
-
|
649
|
-
|
650
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:37:53 +0100
|
651
|
-
|
652
|
-
|
653
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:37:53 +0100
|
654
|
-
|
655
|
-
|
656
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:37:53 +0100
|
657
|
-
|
658
|
-
|
659
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:37:53 +0100
|
660
|
-
|
661
|
-
|
662
|
-
Started GET "/foos?code=404" for ::1 at 2015-01-16 07:38:07 +0100
|
663
|
-
Processing by FoosController#index as HTML
|
664
|
-
Parameters: {"code"=>"404"}
|
665
|
-
Completed 500 Internal Server Error in 1ms
|
666
|
-
|
667
|
-
NameError (uninitialized constant FoosController::ActiveRecord):
|
668
|
-
app/controllers/foos_controller.rb:6:in `index'
|
669
|
-
|
670
|
-
|
671
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
672
|
-
Parameters: {"code"=>"404"}
|
673
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.5ms)
|
674
|
-
Completed 500 Internal Server Error in 12ms (Views: 10.7ms)
|
675
|
-
|
676
|
-
|
677
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:38:07 +0100
|
678
|
-
|
679
|
-
|
680
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:38:07 +0100
|
681
|
-
|
682
|
-
|
683
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:38:07 +0100
|
684
|
-
|
685
|
-
|
686
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:38:07 +0100
|
687
|
-
|
688
|
-
|
689
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:38:07 +0100
|
690
|
-
|
691
|
-
|
692
|
-
Started GET "/foos?code=404" for ::1 at 2015-01-16 07:38:08 +0100
|
693
|
-
Processing by FoosController#index as HTML
|
694
|
-
Parameters: {"code"=>"404"}
|
695
|
-
Completed 500 Internal Server Error in 1ms
|
696
|
-
|
697
|
-
NameError (uninitialized constant FoosController::ActiveRecord):
|
698
|
-
app/controllers/foos_controller.rb:6:in `index'
|
699
|
-
|
700
|
-
|
701
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
702
|
-
Parameters: {"code"=>"404"}
|
703
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
704
|
-
Completed 500 Internal Server Error in 9ms (Views: 8.8ms)
|
705
|
-
|
706
|
-
|
707
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:38:08 +0100
|
708
|
-
|
709
|
-
|
710
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:38:08 +0100
|
711
|
-
|
712
|
-
|
713
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:38:08 +0100
|
714
|
-
|
715
|
-
|
716
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:38:08 +0100
|
717
|
-
|
718
|
-
|
719
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:38:08 +0100
|
720
|
-
|
721
|
-
|
722
|
-
Started GET "/foos?code=404" for ::1 at 2015-01-16 07:38:45 +0100
|
723
|
-
Processing by FoosController#index as HTML
|
724
|
-
Parameters: {"code"=>"404"}
|
725
|
-
Completed 404 Not Found in 0ms
|
726
|
-
|
727
|
-
ActionController::RoutingError (Was asked to raise generate a 404):
|
728
|
-
app/controllers/foos_controller.rb:6:in `index'
|
729
|
-
|
730
|
-
|
731
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
732
|
-
Parameters: {"code"=>"404"}
|
733
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (2.0ms)
|
734
|
-
Completed 404 Not Found in 12ms (Views: 11.4ms)
|
735
|
-
|
736
|
-
|
737
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:38:45 +0100
|
738
|
-
|
739
|
-
|
740
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:38:45 +0100
|
741
|
-
|
742
|
-
|
743
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:38:45 +0100
|
744
|
-
|
745
|
-
|
746
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:38:45 +0100
|
747
|
-
|
748
|
-
|
749
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:38:45 +0100
|
750
|
-
|
751
|
-
|
752
|
-
Started GET "/" for ::1 at 2015-01-16 07:41:05 +0100
|
753
|
-
|
754
|
-
LoadError (Unable to autoload constant ErrorPreviewsController, expected /Users/pascal/repositories/simplificator/simplificator_infrastructure/test/dummy/app/controllers/error_previews_controller.rb to define it):
|
755
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:495:in `load_missing_constant'
|
756
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing'
|
757
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `const_get'
|
758
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `block in constantize'
|
759
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
|
760
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
|
761
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
|
762
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get'
|
763
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize'
|
764
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
765
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
|
766
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
|
767
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
768
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
769
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
770
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
771
|
-
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
772
|
-
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
773
|
-
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
774
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
775
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
776
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
777
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
778
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
779
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
780
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
781
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
782
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
783
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
784
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
785
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
786
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
787
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
788
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
789
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
790
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
791
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
792
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
793
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
794
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
795
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
796
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
797
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
798
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
799
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
800
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
801
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
802
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
803
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
804
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
805
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
806
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
807
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
808
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
809
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
810
|
-
|
811
|
-
|
812
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
813
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (5.0ms)
|
814
|
-
Completed 500 Internal Server Error in 38ms (Views: 33.0ms)
|
815
|
-
|
816
|
-
|
817
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:41:06 +0100
|
818
|
-
|
819
|
-
|
820
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:41:06 +0100
|
821
|
-
|
822
|
-
|
823
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:41:06 +0100
|
824
|
-
|
825
|
-
|
826
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:41:06 +0100
|
827
|
-
|
828
|
-
|
829
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:41:06 +0100
|
830
|
-
|
831
|
-
|
832
|
-
Started GET "/" for ::1 at 2015-01-16 07:42:50 +0100
|
833
|
-
|
834
|
-
LoadError (Unable to autoload constant ErrorPreviewsController, expected /Users/pascal/repositories/simplificator/simplificator_infrastructure/test/dummy/app/controllers/error_previews_controller.rb to define it):
|
835
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:495:in `load_missing_constant'
|
836
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing'
|
837
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `const_get'
|
838
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `block in constantize'
|
839
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
|
840
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
|
841
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
|
842
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get'
|
843
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize'
|
844
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
845
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
|
846
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
|
847
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
848
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
849
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
850
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
851
|
-
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
852
|
-
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
853
|
-
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
854
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
855
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
856
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
857
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
858
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
859
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
860
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
861
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
862
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
863
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
864
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
865
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
866
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
867
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
868
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
869
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
870
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
871
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
872
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
873
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
874
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
875
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
876
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
877
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
878
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
879
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
880
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
881
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
882
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
883
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
884
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
885
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
886
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
887
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
888
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
889
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
890
|
-
|
891
|
-
|
892
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
893
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
894
|
-
Completed 500 Internal Server Error in 11ms (Views: 10.2ms)
|
895
|
-
|
896
|
-
|
897
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:42:50 +0100
|
898
|
-
|
899
|
-
|
900
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:42:50 +0100
|
901
|
-
|
902
|
-
|
903
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:42:50 +0100
|
904
|
-
|
905
|
-
|
906
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:42:50 +0100
|
907
|
-
|
908
|
-
|
909
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:42:50 +0100
|
910
|
-
|
911
|
-
|
912
|
-
Started GET "/" for ::1 at 2015-01-16 07:42:51 +0100
|
913
|
-
|
914
|
-
LoadError (Unable to autoload constant ErrorPreviewsController, expected /Users/pascal/repositories/simplificator/simplificator_infrastructure/test/dummy/app/controllers/error_previews_controller.rb to define it):
|
915
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:495:in `load_missing_constant'
|
916
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing'
|
917
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `const_get'
|
918
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `block in constantize'
|
919
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
|
920
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
|
921
|
-
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
|
922
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get'
|
923
|
-
activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize'
|
924
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
925
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
|
926
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
|
927
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
928
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
929
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
930
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
931
|
-
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
932
|
-
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
933
|
-
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
934
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
935
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
936
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
937
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
938
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
939
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
940
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
941
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
942
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
943
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
944
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
945
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
946
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
947
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
948
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
949
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
950
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
951
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
952
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
953
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
954
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
955
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
956
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
957
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
958
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
959
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
960
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
961
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
962
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
963
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
964
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
965
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
966
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
967
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
968
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
969
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
970
|
-
|
971
|
-
|
972
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
973
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.5ms)
|
974
|
-
Completed 500 Internal Server Error in 14ms (Views: 12.6ms)
|
975
|
-
|
976
|
-
|
977
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:42:51 +0100
|
978
|
-
|
979
|
-
|
980
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:42:51 +0100
|
981
|
-
|
982
|
-
|
983
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:42:51 +0100
|
984
|
-
|
985
|
-
|
986
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:42:51 +0100
|
987
|
-
|
988
|
-
|
989
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:42:51 +0100
|
990
|
-
|
991
|
-
|
992
|
-
Started GET "/" for ::1 at 2015-01-16 07:43:22 +0100
|
993
|
-
Processing by ErrorPreviewsController#index as HTML
|
994
|
-
Completed 500 Internal Server Error in 4ms
|
995
|
-
|
996
|
-
ActionView::MissingTemplate (Missing template error_previews/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
997
|
-
* "/Users/pascal/repositories/simplificator/simplificator_infrastructure/test/dummy/app/views"
|
998
|
-
* "/Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views"
|
999
|
-
):
|
1000
|
-
actionview (4.2.0) lib/action_view/path_set.rb:46:in `find'
|
1001
|
-
actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find'
|
1002
|
-
actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
1003
|
-
actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
|
1004
|
-
actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
1005
|
-
actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
1006
|
-
actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
1007
|
-
actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template'
|
1008
|
-
actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
1009
|
-
actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body'
|
1010
|
-
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
1011
|
-
actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
|
1012
|
-
actionpack (4.2.0) lib/abstract_controller/rendering.rb:26:in `render'
|
1013
|
-
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
1014
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
1015
|
-
activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1016
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
|
1017
|
-
activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1018
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
1019
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
1020
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
1021
|
-
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1022
|
-
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
1023
|
-
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
1024
|
-
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1025
|
-
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
1026
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
1027
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
1028
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
1029
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
1030
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
1031
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
1032
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
1033
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
1034
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1035
|
-
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
1036
|
-
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1037
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1038
|
-
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
1039
|
-
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1040
|
-
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
1041
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1042
|
-
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
1043
|
-
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
1044
|
-
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
1045
|
-
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
1046
|
-
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1047
|
-
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
1048
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1049
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1050
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
1051
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
1052
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
1053
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
1054
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
1055
|
-
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
1056
|
-
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
1057
|
-
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
1058
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1059
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
1060
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
1061
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
1062
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
1063
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1064
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
1065
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
1066
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
1067
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1068
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1069
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
1070
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
1071
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1072
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1073
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1074
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1075
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1076
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1077
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1078
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1079
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1080
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1081
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1082
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1083
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1084
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1085
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1086
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1087
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1088
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1089
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1090
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1091
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1092
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1093
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1094
|
-
|
1095
|
-
|
1096
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1097
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
1098
|
-
Completed 500 Internal Server Error in 11ms (Views: 10.1ms)
|
1099
|
-
|
1100
|
-
|
1101
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:43:22 +0100
|
1102
|
-
|
1103
|
-
|
1104
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:43:22 +0100
|
1105
|
-
|
1106
|
-
|
1107
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:43:22 +0100
|
1108
|
-
|
1109
|
-
|
1110
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:43:22 +0100
|
1111
|
-
|
1112
|
-
|
1113
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:43:22 +0100
|
1114
|
-
|
1115
|
-
|
1116
|
-
Started GET "/" for ::1 at 2015-01-16 07:43:23 +0100
|
1117
|
-
Processing by ErrorPreviewsController#index as HTML
|
1118
|
-
Completed 500 Internal Server Error in 1ms
|
1119
|
-
|
1120
|
-
ActionView::MissingTemplate (Missing template error_previews/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
1121
|
-
* "/Users/pascal/repositories/simplificator/simplificator_infrastructure/test/dummy/app/views"
|
1122
|
-
* "/Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views"
|
1123
|
-
):
|
1124
|
-
actionview (4.2.0) lib/action_view/path_set.rb:46:in `find'
|
1125
|
-
actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find'
|
1126
|
-
actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
1127
|
-
actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
|
1128
|
-
actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
1129
|
-
actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
1130
|
-
actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
1131
|
-
actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template'
|
1132
|
-
actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
1133
|
-
actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body'
|
1134
|
-
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
1135
|
-
actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
|
1136
|
-
actionpack (4.2.0) lib/abstract_controller/rendering.rb:26:in `render'
|
1137
|
-
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
1138
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
1139
|
-
activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1140
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
|
1141
|
-
activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1142
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
1143
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
1144
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
1145
|
-
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1146
|
-
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
1147
|
-
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
1148
|
-
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1149
|
-
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
1150
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
1151
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
1152
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
1153
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
1154
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
1155
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
1156
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
1157
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
1158
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1159
|
-
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
1160
|
-
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1161
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1162
|
-
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
1163
|
-
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1164
|
-
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
1165
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1166
|
-
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
1167
|
-
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
1168
|
-
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
1169
|
-
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
1170
|
-
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1171
|
-
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
1172
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1173
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1174
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
1175
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
1176
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
1177
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
1178
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
1179
|
-
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
1180
|
-
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
1181
|
-
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
1182
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1183
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
1184
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
1185
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
1186
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
1187
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1188
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
1189
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
1190
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
1191
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1192
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1193
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
1194
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
1195
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1196
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1197
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1198
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1199
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1200
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1201
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1202
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1203
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1204
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1205
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1206
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1207
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1208
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1209
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1210
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1211
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1212
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1213
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1214
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1215
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1216
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1217
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1218
|
-
|
1219
|
-
|
1220
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1221
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.5ms)
|
1222
|
-
Completed 500 Internal Server Error in 11ms (Views: 10.1ms)
|
1223
|
-
|
1224
|
-
|
1225
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:43:23 +0100
|
1226
|
-
|
1227
|
-
|
1228
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:43:23 +0100
|
1229
|
-
|
1230
|
-
|
1231
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:43:23 +0100
|
1232
|
-
|
1233
|
-
|
1234
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:43:23 +0100
|
1235
|
-
|
1236
|
-
|
1237
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:43:23 +0100
|
1238
|
-
|
1239
|
-
|
1240
|
-
Started GET "/" for ::1 at 2015-01-16 07:43:45 +0100
|
1241
|
-
Processing by ErrorPreviewsController#index as HTML
|
1242
|
-
Completed 500 Internal Server Error in 7ms
|
1243
|
-
|
1244
|
-
ActionView::MissingTemplate (Missing template error_previews/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
1245
|
-
* "/Users/pascal/repositories/simplificator/simplificator_infrastructure/test/dummy/app/views"
|
1246
|
-
* "/Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views"
|
1247
|
-
):
|
1248
|
-
actionview (4.2.0) lib/action_view/path_set.rb:46:in `find'
|
1249
|
-
actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find'
|
1250
|
-
actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
1251
|
-
actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
|
1252
|
-
actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
1253
|
-
actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
1254
|
-
actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render'
|
1255
|
-
actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template'
|
1256
|
-
actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
1257
|
-
actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body'
|
1258
|
-
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
1259
|
-
actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
|
1260
|
-
actionpack (4.2.0) lib/abstract_controller/rendering.rb:26:in `render'
|
1261
|
-
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render'
|
1262
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
|
1263
|
-
activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1264
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
|
1265
|
-
activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1266
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
|
1267
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
|
1268
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
|
1269
|
-
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
1270
|
-
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
1271
|
-
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
1272
|
-
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1273
|
-
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
1274
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
1275
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
1276
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
1277
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
1278
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
1279
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
1280
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
1281
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
1282
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1283
|
-
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
1284
|
-
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1285
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
1286
|
-
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
1287
|
-
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1288
|
-
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
1289
|
-
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1290
|
-
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
1291
|
-
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
1292
|
-
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
1293
|
-
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
1294
|
-
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1295
|
-
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
1296
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1297
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1298
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
1299
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
1300
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
1301
|
-
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
1302
|
-
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
1303
|
-
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
1304
|
-
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
1305
|
-
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
1306
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1307
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
1308
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
1309
|
-
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
1310
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
1311
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1312
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
1313
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
1314
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
1315
|
-
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1316
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1317
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
1318
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
1319
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1320
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1321
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1322
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1323
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1324
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1325
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1326
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1327
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1328
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1329
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1330
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1331
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1332
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1333
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1334
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1335
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1336
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1337
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1338
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1339
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1340
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1341
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1342
|
-
|
1343
|
-
|
1344
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1345
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (4.0ms)
|
1346
|
-
Completed 500 Internal Server Error in 33ms (Views: 28.3ms)
|
1347
|
-
|
1348
|
-
|
1349
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:43:46 +0100
|
1350
|
-
|
1351
|
-
|
1352
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:43:46 +0100
|
1353
|
-
|
1354
|
-
|
1355
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:43:46 +0100
|
1356
|
-
|
1357
|
-
|
1358
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:43:46 +0100
|
1359
|
-
|
1360
|
-
|
1361
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:43:46 +0100
|
1362
|
-
|
1363
|
-
|
1364
|
-
Started GET "/" for ::1 at 2015-01-16 07:44:06 +0100
|
1365
|
-
Processing by ErrorPreviewsController#index as HTML
|
1366
|
-
Rendered error_previews/index.html.erb within layouts/application (0.3ms)
|
1367
|
-
Completed 200 OK in 27ms (Views: 27.0ms)
|
1368
|
-
|
1369
|
-
|
1370
|
-
Started GET "/assets/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1" for ::1 at 2015-01-16 07:44:06 +0100
|
1371
|
-
|
1372
|
-
|
1373
|
-
Started GET "/assets/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:44:06 +0100
|
1374
|
-
|
1375
|
-
|
1376
|
-
Started GET "/errors_preview?code=500" for ::1 at 2015-01-16 07:44:09 +0100
|
1377
|
-
|
1378
|
-
ActionController::RoutingError (No route matches [GET] "/errors_preview"):
|
1379
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1380
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1381
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1382
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1383
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1384
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1385
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1386
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1387
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1388
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1389
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1390
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1391
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1392
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1393
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1394
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1395
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1396
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1397
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1398
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1399
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1400
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1401
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1402
|
-
|
1403
|
-
|
1404
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1405
|
-
Parameters: {"code"=>"500"}
|
1406
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (2.5ms)
|
1407
|
-
Completed 404 Not Found in 14ms (Views: 12.6ms)
|
1408
|
-
|
1409
|
-
|
1410
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:44:09 +0100
|
1411
|
-
|
1412
|
-
|
1413
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:44:09 +0100
|
1414
|
-
|
1415
|
-
|
1416
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:44:09 +0100
|
1417
|
-
|
1418
|
-
|
1419
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:44:09 +0100
|
1420
|
-
|
1421
|
-
|
1422
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:44:09 +0100
|
1423
|
-
|
1424
|
-
|
1425
|
-
Started GET "/" for ::1 at 2015-01-16 07:45:38 +0100
|
1426
|
-
Processing by ErrorPreviewsController#index as HTML
|
1427
|
-
Rendered error_previews/index.html.erb within layouts/application (1.0ms)
|
1428
|
-
Completed 200 OK in 28ms (Views: 28.0ms)
|
1429
|
-
|
1430
|
-
|
1431
|
-
Started GET "/assets/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1" for ::1 at 2015-01-16 07:45:38 +0100
|
1432
|
-
|
1433
|
-
|
1434
|
-
Started GET "/assets/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:45:38 +0100
|
1435
|
-
|
1436
|
-
|
1437
|
-
Started GET "/errors_preview/preview?code=500" for ::1 at 2015-01-16 07:45:41 +0100
|
1438
|
-
|
1439
|
-
ActionController::RoutingError (No route matches [GET] "/errors_preview/preview"):
|
1440
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1441
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1442
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1443
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1444
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1445
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1446
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1447
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1448
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1449
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1450
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1451
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1452
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1453
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1454
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1455
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1456
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1457
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1458
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1459
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1460
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1461
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1462
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1463
|
-
|
1464
|
-
|
1465
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1466
|
-
Parameters: {"code"=>"500"}
|
1467
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (3.3ms)
|
1468
|
-
Completed 404 Not Found in 28ms (Views: 22.2ms)
|
1469
|
-
|
1470
|
-
|
1471
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:45:41 +0100
|
1472
|
-
|
1473
|
-
|
1474
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:45:41 +0100
|
1475
|
-
|
1476
|
-
|
1477
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:45:41 +0100
|
1478
|
-
|
1479
|
-
|
1480
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:45:41 +0100
|
1481
|
-
|
1482
|
-
|
1483
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:45:41 +0100
|
1484
|
-
|
1485
|
-
|
1486
|
-
Started GET "/errors_preview/preview?code=404" for ::1 at 2015-01-16 07:45:44 +0100
|
1487
|
-
|
1488
|
-
ActionController::RoutingError (No route matches [GET] "/errors_preview/preview"):
|
1489
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1490
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1491
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1492
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1493
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1494
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1495
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1496
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1497
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1498
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1499
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1500
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1501
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1502
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1503
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1504
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1505
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1506
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1507
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1508
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1509
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1510
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1511
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1512
|
-
|
1513
|
-
|
1514
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1515
|
-
Parameters: {"code"=>"404"}
|
1516
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
1517
|
-
Completed 404 Not Found in 11ms (Views: 10.5ms)
|
1518
|
-
|
1519
|
-
|
1520
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:45:44 +0100
|
1521
|
-
|
1522
|
-
|
1523
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:45:44 +0100
|
1524
|
-
|
1525
|
-
|
1526
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:45:44 +0100
|
1527
|
-
|
1528
|
-
|
1529
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:45:44 +0100
|
1530
|
-
|
1531
|
-
|
1532
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:45:44 +0100
|
1533
|
-
|
1534
|
-
|
1535
|
-
Started GET "/errors_preview/preview?code=404" for ::1 at 2015-01-16 07:45:59 +0100
|
1536
|
-
|
1537
|
-
ActionController::RoutingError (No route matches [GET] "/errors_preview/preview"):
|
1538
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1539
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1540
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1541
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1542
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1543
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1544
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1545
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1546
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1547
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1548
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1549
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1550
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1551
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1552
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1553
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1554
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1555
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1556
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1557
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1558
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1559
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1560
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1561
|
-
|
1562
|
-
|
1563
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1564
|
-
Parameters: {"code"=>"404"}
|
1565
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
1566
|
-
Completed 404 Not Found in 11ms (Views: 10.3ms)
|
1567
|
-
|
1568
|
-
|
1569
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:45:59 +0100
|
1570
|
-
|
1571
|
-
|
1572
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:45:59 +0100
|
1573
|
-
|
1574
|
-
|
1575
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:45:59 +0100
|
1576
|
-
|
1577
|
-
|
1578
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:45:59 +0100
|
1579
|
-
|
1580
|
-
|
1581
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:45:59 +0100
|
1582
|
-
|
1583
|
-
|
1584
|
-
Started GET "/errors_preview/preview?code=404" for ::1 at 2015-01-16 07:46:00 +0100
|
1585
|
-
|
1586
|
-
ActionController::RoutingError (No route matches [GET] "/errors_preview/preview"):
|
1587
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1588
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1589
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1590
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1591
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1592
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1593
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1594
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1595
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1596
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1597
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1598
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1599
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1600
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1601
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1602
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1603
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1604
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1605
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1606
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1607
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1608
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1609
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1610
|
-
|
1611
|
-
|
1612
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1613
|
-
Parameters: {"code"=>"404"}
|
1614
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
1615
|
-
Completed 404 Not Found in 10ms (Views: 8.9ms)
|
1616
|
-
|
1617
|
-
|
1618
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:46:00 +0100
|
1619
|
-
|
1620
|
-
|
1621
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:46:00 +0100
|
1622
|
-
|
1623
|
-
|
1624
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:46:00 +0100
|
1625
|
-
|
1626
|
-
|
1627
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:46:00 +0100
|
1628
|
-
|
1629
|
-
|
1630
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:46:00 +0100
|
1631
|
-
|
1632
|
-
|
1633
|
-
Started GET "/errors_preview/preview?code=123" for ::1 at 2015-01-16 07:46:06 +0100
|
1634
|
-
|
1635
|
-
ActionController::RoutingError (No route matches [GET] "/errors_preview/preview"):
|
1636
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1637
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1638
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1639
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1640
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1641
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1642
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1643
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1644
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1645
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1646
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1647
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1648
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1649
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1650
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1651
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1652
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1653
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1654
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1655
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1656
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1657
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1658
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1659
|
-
|
1660
|
-
|
1661
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1662
|
-
Parameters: {"code"=>"123"}
|
1663
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
1664
|
-
Completed 404 Not Found in 10ms (Views: 9.1ms)
|
1665
|
-
|
1666
|
-
|
1667
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:46:06 +0100
|
1668
|
-
|
1669
|
-
|
1670
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:46:06 +0100
|
1671
|
-
|
1672
|
-
|
1673
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:46:06 +0100
|
1674
|
-
|
1675
|
-
|
1676
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:46:06 +0100
|
1677
|
-
|
1678
|
-
|
1679
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:46:06 +0100
|
1680
|
-
|
1681
|
-
|
1682
|
-
Started GET "/errors_preview/preview?code=123" for ::1 at 2015-01-16 07:46:36 +0100
|
1683
|
-
|
1684
|
-
ActionController::RoutingError (No route matches [GET] "/errors_preview/preview"):
|
1685
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1686
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1687
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1688
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1689
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1690
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1691
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1692
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1693
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1694
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1695
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1696
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1697
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1698
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1699
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1700
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1701
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1702
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1703
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1704
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1705
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1706
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1707
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1708
|
-
|
1709
|
-
|
1710
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1711
|
-
Parameters: {"code"=>"123"}
|
1712
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
1713
|
-
Completed 404 Not Found in 15ms (Views: 13.7ms)
|
1714
|
-
|
1715
|
-
|
1716
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:46:36 +0100
|
1717
|
-
|
1718
|
-
|
1719
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:46:36 +0100
|
1720
|
-
|
1721
|
-
|
1722
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:46:36 +0100
|
1723
|
-
|
1724
|
-
|
1725
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:46:36 +0100
|
1726
|
-
|
1727
|
-
|
1728
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:46:36 +0100
|
1729
|
-
|
1730
|
-
|
1731
|
-
Started GET "/" for ::1 at 2015-01-16 07:46:41 +0100
|
1732
|
-
Processing by ErrorPreviewsController#index as HTML
|
1733
|
-
Rendered error_previews/index.html.erb within layouts/application (0.3ms)
|
1734
|
-
Completed 200 OK in 13ms (Views: 12.4ms)
|
1735
|
-
|
1736
|
-
|
1737
|
-
Started GET "/assets/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1" for ::1 at 2015-01-16 07:46:41 +0100
|
1738
|
-
|
1739
|
-
|
1740
|
-
Started GET "/assets/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:46:41 +0100
|
1741
|
-
|
1742
|
-
|
1743
|
-
Started GET "/error_previews/preview?code=500" for ::1 at 2015-01-16 07:46:44 +0100
|
1744
|
-
Processing by ErrorPreviewsController#preview as HTML
|
1745
|
-
Parameters: {"code"=>"500"}
|
1746
|
-
Completed 500 Internal Server Error in 0ms
|
1747
|
-
|
1748
|
-
RuntimeError (some generic exception):
|
1749
|
-
app/controllers/error_previews_controller.rb:9:in `preview'
|
1750
|
-
|
1751
|
-
|
1752
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1753
|
-
Parameters: {"code"=>"500"}
|
1754
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (2.3ms)
|
1755
|
-
Completed 500 Internal Server Error in 12ms (Views: 11.5ms)
|
1756
|
-
|
1757
|
-
|
1758
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:46:44 +0100
|
1759
|
-
|
1760
|
-
|
1761
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:46:44 +0100
|
1762
|
-
|
1763
|
-
|
1764
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:46:44 +0100
|
1765
|
-
|
1766
|
-
|
1767
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:46:44 +0100
|
1768
|
-
|
1769
|
-
|
1770
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:46:44 +0100
|
1771
|
-
|
1772
|
-
|
1773
|
-
Started GET "/error_previews/preview?code=404" for ::1 at 2015-01-16 07:46:47 +0100
|
1774
|
-
Processing by ErrorPreviewsController#preview as HTML
|
1775
|
-
Parameters: {"code"=>"404"}
|
1776
|
-
Completed 404 Not Found in 0ms
|
1777
|
-
|
1778
|
-
ActionController::RoutingError (Was asked to raise generate a 404):
|
1779
|
-
app/controllers/error_previews_controller.rb:10:in `preview'
|
1780
|
-
|
1781
|
-
|
1782
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1783
|
-
Parameters: {"code"=>"404"}
|
1784
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
1785
|
-
Completed 404 Not Found in 12ms (Views: 11.2ms)
|
1786
|
-
|
1787
|
-
|
1788
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:46:47 +0100
|
1789
|
-
|
1790
|
-
|
1791
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:46:47 +0100
|
1792
|
-
|
1793
|
-
|
1794
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:46:47 +0100
|
1795
|
-
|
1796
|
-
|
1797
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-16 07:46:47 +0100
|
1798
|
-
|
1799
|
-
|
1800
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:46:47 +0100
|
1801
|
-
|
1802
|
-
|
1803
|
-
Started GET "/api/lists/1.json" for ::1 at 2015-01-16 07:48:39 +0100
|
1804
|
-
|
1805
|
-
ActionController::RoutingError (No route matches [GET] "/api/lists/1.json"):
|
1806
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1807
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1808
|
-
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1809
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1810
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1811
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1812
|
-
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1813
|
-
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1814
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1815
|
-
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1816
|
-
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1817
|
-
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1818
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1819
|
-
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1820
|
-
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1821
|
-
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1822
|
-
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1823
|
-
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1824
|
-
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1825
|
-
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1826
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1827
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1828
|
-
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1829
|
-
|
1830
|
-
|
1831
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1832
|
-
Completed 500 Internal Server Error in 4ms
|
1833
|
-
|
1834
|
-
|
1835
|
-
Started GET "/" for ::1 at 2015-01-16 07:48:46 +0100
|
1836
|
-
Processing by ErrorPreviewsController#index as HTML
|
1837
|
-
Rendered error_previews/index.html.erb within layouts/application (1.0ms)
|
1838
|
-
Completed 200 OK in 29ms (Views: 28.4ms)
|
1839
|
-
|
1840
|
-
|
1841
|
-
Started GET "/assets/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1" for ::1 at 2015-01-16 07:48:46 +0100
|
1842
|
-
|
1843
|
-
|
1844
|
-
Started GET "/assets/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:48:46 +0100
|
1845
|
-
|
1846
|
-
|
1847
|
-
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-16 07:48:48 +0100
|
3
|
+
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-19 11:15:30 +0100
|
1848
4
|
Processing by ErrorPreviewsController#preview as HTML
|
1849
5
|
Parameters: {"code"=>"500", "locale"=>"en"}
|
1850
6
|
Completed 500 Internal Server Error in 0ms
|
1851
7
|
|
1852
8
|
RuntimeError (some generic exception):
|
1853
|
-
app/controllers/error_previews_controller.rb:
|
9
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1854
10
|
|
1855
11
|
|
1856
12
|
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1857
13
|
Parameters: {"code"=>"500", "locale"=>"en"}
|
1858
|
-
Completed 500 Internal Server Error in 1ms
|
1859
|
-
|
1860
|
-
|
1861
|
-
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-16 07:49:01 +0100
|
1862
|
-
Processing by ErrorPreviewsController#preview as HTML
|
1863
|
-
Parameters: {"code"=>"500", "locale"=>"en"}
|
1864
14
|
Completed 500 Internal Server Error in 0ms
|
1865
15
|
|
1866
|
-
RuntimeError (some generic exception):
|
1867
|
-
app/controllers/error_previews_controller.rb:9:in `preview'
|
1868
|
-
|
1869
|
-
|
1870
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1871
|
-
Parameters: {"code"=>"500", "locale"=>"en"}
|
1872
|
-
Completed 500 Internal Server Error in 1ms
|
1873
16
|
|
1874
|
-
|
1875
|
-
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-16 07:49:13 +0100
|
17
|
+
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-19 11:15:31 +0100
|
1876
18
|
Processing by ErrorPreviewsController#preview as HTML
|
1877
19
|
Parameters: {"code"=>"500", "locale"=>"en"}
|
1878
20
|
Completed 500 Internal Server Error in 0ms
|
1879
21
|
|
1880
22
|
RuntimeError (some generic exception):
|
1881
|
-
app/controllers/error_previews_controller.rb:
|
23
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1882
24
|
|
1883
25
|
|
1884
26
|
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1885
27
|
Parameters: {"code"=>"500", "locale"=>"en"}
|
1886
|
-
Completed 500 Internal Server Error in
|
28
|
+
Completed 500 Internal Server Error in 0ms
|
1887
29
|
|
1888
30
|
|
1889
|
-
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-
|
31
|
+
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-19 11:16:36 +0100
|
1890
32
|
Processing by ErrorPreviewsController#preview as HTML
|
1891
33
|
Parameters: {"code"=>"500", "locale"=>"en"}
|
1892
34
|
Completed 500 Internal Server Error in 0ms
|
1893
35
|
|
1894
36
|
RuntimeError (some generic exception):
|
1895
|
-
app/controllers/error_previews_controller.rb:
|
37
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1896
38
|
|
1897
39
|
|
1898
40
|
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1899
41
|
Parameters: {"code"=>"500", "locale"=>"en"}
|
1900
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (3.8ms)
|
1901
|
-
Completed 500 Internal Server Error in 36ms (Views: 31.5ms)
|
1902
|
-
|
1903
|
-
|
1904
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:51:25 +0100
|
1905
|
-
|
1906
|
-
|
1907
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:51:25 +0100
|
1908
|
-
|
1909
|
-
|
1910
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:51:25 +0100
|
1911
|
-
|
1912
|
-
|
1913
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:51:25 +0100
|
1914
|
-
|
1915
|
-
|
1916
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:51:25 +0100
|
1917
|
-
|
1918
|
-
|
1919
|
-
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-16 07:51:28 +0100
|
1920
|
-
Processing by ErrorPreviewsController#preview as HTML
|
1921
|
-
Parameters: {"code"=>"500", "locale"=>"de"}
|
1922
42
|
Completed 500 Internal Server Error in 0ms
|
1923
43
|
|
1924
|
-
RuntimeError (some generic exception):
|
1925
|
-
app/controllers/error_previews_controller.rb:9:in `preview'
|
1926
|
-
|
1927
|
-
|
1928
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1929
|
-
Parameters: {"code"=>"500", "locale"=>"de"}
|
1930
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.4ms)
|
1931
|
-
Completed 500 Internal Server Error in 9ms (Views: 8.5ms)
|
1932
|
-
|
1933
|
-
|
1934
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:51:28 +0100
|
1935
|
-
|
1936
|
-
|
1937
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:51:28 +0100
|
1938
|
-
|
1939
|
-
|
1940
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:51:28 +0100
|
1941
|
-
|
1942
|
-
|
1943
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:51:28 +0100
|
1944
|
-
|
1945
|
-
|
1946
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:51:28 +0100
|
1947
|
-
|
1948
44
|
|
1949
|
-
Started GET "/error_previews/preview?code=500&locale=
|
45
|
+
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-19 11:16:37 +0100
|
1950
46
|
Processing by ErrorPreviewsController#preview as HTML
|
1951
|
-
Parameters: {"code"=>"500", "locale"=>"
|
47
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
1952
48
|
Completed 500 Internal Server Error in 0ms
|
1953
49
|
|
1954
50
|
RuntimeError (some generic exception):
|
1955
|
-
app/controllers/error_previews_controller.rb:
|
51
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1956
52
|
|
1957
53
|
|
1958
54
|
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1959
|
-
Parameters: {"code"=>"500", "locale"=>"
|
1960
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (3.6ms)
|
1961
|
-
Completed 500 Internal Server Error in 38ms (Views: 33.7ms)
|
1962
|
-
|
1963
|
-
|
1964
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:51:51 +0100
|
1965
|
-
|
1966
|
-
|
1967
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:51:51 +0100
|
1968
|
-
|
1969
|
-
|
1970
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-16 07:51:51 +0100
|
1971
|
-
|
1972
|
-
|
1973
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:51:51 +0100
|
1974
|
-
|
1975
|
-
|
1976
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:51:51 +0100
|
1977
|
-
|
1978
|
-
|
1979
|
-
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-16 07:52:32 +0100
|
1980
|
-
Processing by ErrorPreviewsController#preview as HTML
|
1981
|
-
Parameters: {"code"=>"500", "locale"=>"de"}
|
55
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
1982
56
|
Completed 500 Internal Server Error in 0ms
|
1983
57
|
|
1984
|
-
RuntimeError (some generic exception):
|
1985
|
-
app/controllers/error_previews_controller.rb:9:in `preview'
|
1986
|
-
|
1987
|
-
|
1988
|
-
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1989
|
-
Parameters: {"code"=>"500", "locale"=>"de"}
|
1990
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (3.9ms)
|
1991
|
-
Completed 500 Internal Server Error in 35ms (Views: 31.0ms)
|
1992
|
-
|
1993
|
-
|
1994
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-16 07:52:32 +0100
|
1995
|
-
|
1996
|
-
|
1997
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-16 07:52:32 +0100
|
1998
|
-
|
1999
58
|
|
2000
|
-
Started GET "/
|
2001
|
-
|
2002
|
-
|
2003
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-16 07:52:32 +0100
|
2004
|
-
|
2005
|
-
|
2006
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-328dbd1c1c63b3c8fb22cf254c581cd4.png" for ::1 at 2015-01-16 07:52:32 +0100
|
2007
|
-
|
2008
|
-
|
2009
|
-
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-16 07:52:53 +0100
|
59
|
+
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-19 11:16:49 +0100
|
2010
60
|
Processing by ErrorPreviewsController#preview as HTML
|
2011
|
-
Parameters: {"code"=>"500", "locale"=>"
|
61
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
2012
62
|
Completed 500 Internal Server Error in 0ms
|
2013
63
|
|
2014
64
|
RuntimeError (some generic exception):
|
2015
|
-
app/controllers/error_previews_controller.rb:
|
65
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
2016
66
|
|
2017
67
|
|
2018
68
|
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
2019
|
-
Parameters: {"code"=>"500", "locale"=>"
|
2020
|
-
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (
|
2021
|
-
Completed 500 Internal Server Error in
|
69
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
70
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (5.2ms)
|
71
|
+
Completed 500 Internal Server Error in 40ms (Views: 34.4ms)
|
2022
72
|
|
2023
73
|
|
2024
|
-
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-
|
74
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-19 11:16:49 +0100
|
2025
75
|
|
2026
76
|
|
2027
|
-
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-
|
77
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-19 11:16:49 +0100
|
2028
78
|
|
2029
79
|
|
2030
|
-
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-
|
80
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-19 11:16:49 +0100
|
2031
81
|
|
2032
82
|
|
2033
|
-
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-
|
83
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-19 11:16:49 +0100
|
2034
84
|
|
2035
85
|
|
2036
|
-
Started GET "/assets/simplificator_infrastructure/errors/logo-
|
86
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-dff205c75e8806bd14f3bd9473e49c51.png" for ::1 at 2015-01-19 11:16:49 +0100
|