simplificator_infrastructure 0.0.5 → 0.0.6
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 +7 -0
- data/app/views/errors/404.html.erb +3 -1
- data/app/views/errors/generic_error.html.erb +5 -2
- data/config/locales/de.yml +1 -1
- data/config/locales/en.yml +1 -1
- data/config/locales/fr.yml +13 -0
- data/lib/simplificator_infrastructure/version.rb +1 -1
- data/test/dummy/app/views/error_previews/index.html.erb +2 -2
- data/test/dummy/log/development.log +990 -0
- data/test/dummy/log/test.log +56 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d7cb110ec211a8c4ef021e93a2f976f7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e96855d0fc8137ba701522baf08faf33 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/0500adeee201d5a348b4c3ec497adae2 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/09ed1ef41f7cd9d17777b1411359e566 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/1344657b8f5d1906efcbafe0e22c17cc +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5acaff767402e80bb9961b92c8bc3dda +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6d07f71bc133b650e297569a7e19174e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/7f0315cb615b6ab601fd42d59b8afde9 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8861585cc3fb654bbf27d60c86aba449 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9c500634b58fe570e801dd477f2f9769 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9e70666db09ef523b119125cc9eb73c5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/a58c29f74df199333ef9f066c7b436bd +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d7cb110ec211a8c4ef021e93a2f976f7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e303fbe4b122fbe771c62af737c0e1b5 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e96855d0fc8137ba701522baf08faf33 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f39692dced32f5d36d10caed783739ee +0 -0
- metadata +34 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 470c8469d2a9b2ef441ecc64d9e36c46d3d0a905
|
4
|
+
data.tar.gz: 58264fc65df96b030fb256caa218ce02ce5be4a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d593e230f1b84ebd3e8c16e0c3f9c69d102f3a16b177143e189068483439f9cac7f84c93cca8a453ee1d5b75d07dc7105d24c218b789f95aab414d0ec1981193
|
7
|
+
data.tar.gz: cbe4855ebeb4158830f73d01e2be9d24a20c997e4dd82dd3201a8a77cd74859832c0e2a14567d15576af7c26a32bd4ec144722cc23224d7a8af6329e55876be6
|
@@ -6,6 +6,7 @@ class SimplificatorInfrastructure::ErrorsController < ActionController::Base
|
|
6
6
|
|
7
7
|
|
8
8
|
def render_error
|
9
|
+
force_html_type
|
9
10
|
render template, status: error_summary.status_code
|
10
11
|
end
|
11
12
|
|
@@ -44,4 +45,10 @@ class SimplificatorInfrastructure::ErrorsController < ActionController::Base
|
|
44
45
|
end
|
45
46
|
end
|
46
47
|
|
48
|
+
# This allows to find the html error templates even though something non-html was requested.
|
49
|
+
# Useful if an error occurs in PDF rendering or JSON API request.
|
50
|
+
def force_html_type
|
51
|
+
request.format = MIME::Types.type_for('html').first
|
52
|
+
end
|
53
|
+
|
47
54
|
end
|
@@ -5,5 +5,7 @@
|
|
5
5
|
<p>
|
6
6
|
<%= image_tag("simplificator_infrastructure/errors/error_404.png", class: 'icon')%>
|
7
7
|
<br/>
|
8
|
-
<%=
|
8
|
+
<a href="<%= referrer_or_root(request) %>">
|
9
|
+
<%= image_tag('simplificator_infrastructure/errors/logo.png', class: 'logo') %>
|
10
|
+
</a>
|
9
11
|
</div>
|
@@ -1,9 +1,12 @@
|
|
1
1
|
<div class="content">
|
2
2
|
<h1 class="error"><%= I18n.t("simplificator_infrastructure.errors.generic.title") %></h1>
|
3
3
|
<p class="lead"><%= I18n.t("simplificator_infrastructure.errors.generic.lead") %></p>
|
4
|
-
<p><%= I18n.t("simplificator_infrastructure.errors.generic.text").html_safe %></p>
|
4
|
+
<p><%= (I18n.t("simplificator_infrastructure.errors.generic.text") % {referrer: referrer_or_root(request)}).html_safe %></p>
|
5
5
|
<p>
|
6
6
|
<%= image_tag("simplificator_infrastructure/errors/error_generic.png", class: 'icon')%>
|
7
7
|
<br/>
|
8
|
-
|
8
|
+
|
9
|
+
<a href="<%= referrer_or_root(request) %>">
|
10
|
+
<%= image_tag('simplificator_infrastructure/errors/logo.png', class: 'logo') %>
|
11
|
+
</a>
|
9
12
|
</div>
|
data/config/locales/de.yml
CHANGED
@@ -6,7 +6,7 @@ de:
|
|
6
6
|
generic:
|
7
7
|
title: 'Ohhh!'
|
8
8
|
lead: "Die Anfrage konnte leider nicht beantwortet werden."
|
9
|
-
text: "Wir sind benachrichtig worden und schauen uns das an. Bitte versuchen Sie es später nochmals"
|
9
|
+
text: "Wir sind benachrichtig worden und schauen uns das an. Bitte versuchen Sie es später <a href=\"%{referrer}\">nochmals</a>."
|
10
10
|
'404':
|
11
11
|
title: "Oooops!"
|
12
12
|
lead: "Diese Seite existiert nicht (mehr)"
|
data/config/locales/en.yml
CHANGED
@@ -6,7 +6,7 @@ en:
|
|
6
6
|
generic:
|
7
7
|
title: 'Ohhh!'
|
8
8
|
lead: "We had a problem serving your request."
|
9
|
-
text: "We have been notified and will take care of this.<br/>Please try again later."
|
9
|
+
text: "We have been notified and will take care of this.<br/>Please <a href=\"%{referrer}\">try again</a> later."
|
10
10
|
'404':
|
11
11
|
title: "Oooops!"
|
12
12
|
lead: "The page does not exist."
|
@@ -0,0 +1,13 @@
|
|
1
|
+
fr:
|
2
|
+
simplificator_infrastructure:
|
3
|
+
errors:
|
4
|
+
'404':
|
5
|
+
lead: Cette page n'existe (plus).
|
6
|
+
text: Merci de bien vouloir <a href="%{referrer}">retourner</a> et de recommencer.
|
7
|
+
title: Oups!
|
8
|
+
generic:
|
9
|
+
lead: La requête n'a pas pu être traitée.
|
10
|
+
text: Nous avons été notifiés et allons traiter cet évènement. Merci de <a href="%{referrer}">réessayer</a>
|
11
|
+
plus tard.
|
12
|
+
title: Ohhh!
|
13
|
+
page_title: Il s'est produit une erreur.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<h1>Welcome to Simplificator Infrastructure</a>
|
2
2
|
<h2>Error Pages</h2>
|
3
3
|
<ul>
|
4
|
-
<li
|
5
|
-
<li
|
4
|
+
<li>Generic in: <a href="/error_previews/preview?code=500&locale=en">en</a> | <a href="/error_previews/preview?code=500&locale=de">de</a> | <a href="/error_previews/preview?code=500&locale=fr">fr</a></li>
|
5
|
+
<li>404 in: <a href="/error_previews/preview?code=404&locale=en">en</a> | <a href="/error_previews/preview?code=404&locale=de">de</a> | <a href="/error_previews/preview?code=404&locale=fr">fr</a></li>
|
6
6
|
</ul>
|
@@ -1013,3 +1013,993 @@ Started GET "/assets/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1" fo
|
|
1013
1013
|
|
1014
1014
|
|
1015
1015
|
Started GET "/assets/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 10:02:27 +0100
|
1016
|
+
|
1017
|
+
|
1018
|
+
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-21 10:17:15 +0100
|
1019
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1020
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
1021
|
+
Completed 500 Internal Server Error in 0ms
|
1022
|
+
|
1023
|
+
RuntimeError (some generic exception):
|
1024
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1025
|
+
|
1026
|
+
|
1027
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1028
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
1029
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (4.7ms)
|
1030
|
+
Completed 500 Internal Server Error in 35ms (Views: 31.5ms)
|
1031
|
+
|
1032
|
+
|
1033
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 10:17:15 +0100
|
1034
|
+
|
1035
|
+
|
1036
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 10:17:15 +0100
|
1037
|
+
|
1038
|
+
|
1039
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 10:17:15 +0100
|
1040
|
+
|
1041
|
+
|
1042
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 10:17:15 +0100
|
1043
|
+
|
1044
|
+
|
1045
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 10:17:15 +0100
|
1046
|
+
|
1047
|
+
|
1048
|
+
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-21 10:17:34 +0100
|
1049
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1050
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1051
|
+
Completed 500 Internal Server Error in 0ms
|
1052
|
+
|
1053
|
+
RuntimeError (some generic exception):
|
1054
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1055
|
+
|
1056
|
+
|
1057
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1058
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1059
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (1.1ms)
|
1060
|
+
Completed 500 Internal Server Error in 12ms (Views: 10.9ms)
|
1061
|
+
|
1062
|
+
|
1063
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 10:17:34 +0100
|
1064
|
+
|
1065
|
+
|
1066
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 10:17:34 +0100
|
1067
|
+
|
1068
|
+
|
1069
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 10:17:34 +0100
|
1070
|
+
|
1071
|
+
|
1072
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 10:17:34 +0100
|
1073
|
+
|
1074
|
+
|
1075
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 10:17:34 +0100
|
1076
|
+
|
1077
|
+
|
1078
|
+
Started GET "/error_previews/preview?code=404&locale=en" for ::1 at 2015-01-21 14:07:44 +0100
|
1079
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1080
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1081
|
+
Completed 404 Not Found in 0ms
|
1082
|
+
|
1083
|
+
ActionController::RoutingError (Was asked to raise generate a 404):
|
1084
|
+
app/controllers/error_previews_controller.rb:9:in `preview'
|
1085
|
+
|
1086
|
+
|
1087
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1088
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1089
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (3.3ms)
|
1090
|
+
Completed 404 Not Found in 14ms (Views: 12.6ms)
|
1091
|
+
|
1092
|
+
|
1093
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:07:44 +0100
|
1094
|
+
|
1095
|
+
|
1096
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:07:44 +0100
|
1097
|
+
|
1098
|
+
|
1099
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:07:44 +0100
|
1100
|
+
|
1101
|
+
|
1102
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:07:44 +0100
|
1103
|
+
|
1104
|
+
|
1105
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:07:44 +0100
|
1106
|
+
|
1107
|
+
|
1108
|
+
Started GET "/error_previews/preview?code=404&locale=en" for ::1 at 2015-01-21 14:42:36 +0100
|
1109
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1110
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1111
|
+
Completed 404 Not Found in 0ms
|
1112
|
+
|
1113
|
+
ActionController::RoutingError (Was asked to raise generate a 404):
|
1114
|
+
app/controllers/error_previews_controller.rb:9:in `preview'
|
1115
|
+
|
1116
|
+
|
1117
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1118
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1119
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.8ms)
|
1120
|
+
Completed 404 Not Found in 10ms (Views: 9.1ms)
|
1121
|
+
|
1122
|
+
|
1123
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:42:36 +0100
|
1124
|
+
|
1125
|
+
|
1126
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:42:36 +0100
|
1127
|
+
|
1128
|
+
|
1129
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:42:36 +0100
|
1130
|
+
|
1131
|
+
|
1132
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:42:36 +0100
|
1133
|
+
|
1134
|
+
|
1135
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:42:36 +0100
|
1136
|
+
|
1137
|
+
|
1138
|
+
Started GET "/error_previews/preview?code=404&locale=en" for ::1 at 2015-01-21 14:43:50 +0100
|
1139
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1140
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1141
|
+
Completed 404 Not Found in 0ms
|
1142
|
+
|
1143
|
+
ActionController::RoutingError (Was asked to raise generate a 404):
|
1144
|
+
app/controllers/error_previews_controller.rb:9:in `preview'
|
1145
|
+
|
1146
|
+
|
1147
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1148
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1149
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.5ms)
|
1150
|
+
Completed 404 Not Found in 12ms (Views: 11.2ms)
|
1151
|
+
|
1152
|
+
|
1153
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:43:50 +0100
|
1154
|
+
|
1155
|
+
|
1156
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:43:50 +0100
|
1157
|
+
|
1158
|
+
|
1159
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:43:50 +0100
|
1160
|
+
|
1161
|
+
|
1162
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:43:50 +0100
|
1163
|
+
|
1164
|
+
|
1165
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:43:50 +0100
|
1166
|
+
|
1167
|
+
|
1168
|
+
Started GET "/error_previews/preview?code=404&locale=en" for ::1 at 2015-01-21 14:44:23 +0100
|
1169
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1170
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1171
|
+
Completed 404 Not Found in 0ms
|
1172
|
+
|
1173
|
+
ActionController::RoutingError (Was asked to raise generate a 404):
|
1174
|
+
app/controllers/error_previews_controller.rb:9:in `preview'
|
1175
|
+
|
1176
|
+
|
1177
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1178
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1179
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (1.2ms)
|
1180
|
+
Completed 404 Not Found in 12ms (Views: 11.4ms)
|
1181
|
+
|
1182
|
+
|
1183
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:44:23 +0100
|
1184
|
+
|
1185
|
+
|
1186
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:44:23 +0100
|
1187
|
+
|
1188
|
+
|
1189
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:44:23 +0100
|
1190
|
+
|
1191
|
+
|
1192
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:44:23 +0100
|
1193
|
+
|
1194
|
+
|
1195
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:44:23 +0100
|
1196
|
+
|
1197
|
+
|
1198
|
+
Started GET "/error_previews/preview?code=404&locale=en" for ::1 at 2015-01-21 14:44:29 +0100
|
1199
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1200
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1201
|
+
Completed 404 Not Found in 0ms
|
1202
|
+
|
1203
|
+
ActionController::RoutingError (Was asked to raise generate a 404):
|
1204
|
+
app/controllers/error_previews_controller.rb:9:in `preview'
|
1205
|
+
|
1206
|
+
|
1207
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1208
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1209
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.6ms)
|
1210
|
+
Completed 404 Not Found in 11ms (Views: 9.8ms)
|
1211
|
+
|
1212
|
+
|
1213
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:44:29 +0100
|
1214
|
+
|
1215
|
+
|
1216
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:44:29 +0100
|
1217
|
+
|
1218
|
+
|
1219
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:44:29 +0100
|
1220
|
+
|
1221
|
+
|
1222
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:44:29 +0100
|
1223
|
+
|
1224
|
+
|
1225
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:44:29 +0100
|
1226
|
+
|
1227
|
+
|
1228
|
+
Started GET "/error_previews/preview?code=404&locale=en" for ::1 at 2015-01-21 14:45:14 +0100
|
1229
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1230
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1231
|
+
Completed 404 Not Found in 0ms
|
1232
|
+
|
1233
|
+
ActionController::RoutingError (Was asked to raise generate a 404):
|
1234
|
+
app/controllers/error_previews_controller.rb:9:in `preview'
|
1235
|
+
|
1236
|
+
|
1237
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1238
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1239
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.7ms)
|
1240
|
+
Completed 500 Internal Server Error in 3ms
|
1241
|
+
|
1242
|
+
|
1243
|
+
Started GET "/error_previews/preview?code=404&locale=en" for ::1 at 2015-01-21 14:46:35 +0100
|
1244
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1245
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1246
|
+
Completed 404 Not Found in 0ms
|
1247
|
+
|
1248
|
+
ActionController::RoutingError (Was asked to raise generate a 404):
|
1249
|
+
app/controllers/error_previews_controller.rb:9:in `preview'
|
1250
|
+
|
1251
|
+
|
1252
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1253
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1254
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.9ms)
|
1255
|
+
Completed 404 Not Found in 10ms (Views: 9.0ms)
|
1256
|
+
|
1257
|
+
|
1258
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:46:35 +0100
|
1259
|
+
|
1260
|
+
|
1261
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:46:35 +0100
|
1262
|
+
|
1263
|
+
|
1264
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:46:35 +0100
|
1265
|
+
|
1266
|
+
|
1267
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:46:35 +0100
|
1268
|
+
|
1269
|
+
|
1270
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:46:35 +0100
|
1271
|
+
|
1272
|
+
|
1273
|
+
Started GET "/" for ::1 at 2015-01-21 14:46:39 +0100
|
1274
|
+
Processing by ErrorPreviewsController#index as HTML
|
1275
|
+
Rendered error_previews/index.html.erb within layouts/application (0.3ms)
|
1276
|
+
Completed 200 OK in 23ms (Views: 23.1ms)
|
1277
|
+
|
1278
|
+
|
1279
|
+
Started GET "/assets/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1" for ::1 at 2015-01-21 14:46:39 +0100
|
1280
|
+
|
1281
|
+
|
1282
|
+
Started GET "/assets/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:46:39 +0100
|
1283
|
+
|
1284
|
+
|
1285
|
+
Started GET "/error_previews/preview?code=404&locale=en" for ::1 at 2015-01-21 14:46:40 +0100
|
1286
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1287
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1288
|
+
Completed 404 Not Found in 0ms
|
1289
|
+
|
1290
|
+
ActionController::RoutingError (Was asked to raise generate a 404):
|
1291
|
+
app/controllers/error_previews_controller.rb:9:in `preview'
|
1292
|
+
|
1293
|
+
|
1294
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1295
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1296
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.7ms)
|
1297
|
+
Completed 404 Not Found in 12ms (Views: 11.0ms)
|
1298
|
+
|
1299
|
+
|
1300
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:46:41 +0100
|
1301
|
+
|
1302
|
+
|
1303
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:46:41 +0100
|
1304
|
+
|
1305
|
+
|
1306
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:46:41 +0100
|
1307
|
+
|
1308
|
+
|
1309
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:46:41 +0100
|
1310
|
+
|
1311
|
+
|
1312
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:46:41 +0100
|
1313
|
+
|
1314
|
+
|
1315
|
+
Started GET "/error_previews/preview?code=404&locale=en" for ::1 at 2015-01-21 14:48:30 +0100
|
1316
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1317
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1318
|
+
Completed 404 Not Found in 0ms
|
1319
|
+
|
1320
|
+
ActionController::RoutingError (Was asked to raise generate a 404):
|
1321
|
+
app/controllers/error_previews_controller.rb:9:in `preview'
|
1322
|
+
|
1323
|
+
|
1324
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1325
|
+
Parameters: {"code"=>"404", "locale"=>"en"}
|
1326
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (1.0ms)
|
1327
|
+
Completed 404 Not Found in 15ms (Views: 10.3ms)
|
1328
|
+
|
1329
|
+
|
1330
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:48:30 +0100
|
1331
|
+
|
1332
|
+
|
1333
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:48:30 +0100
|
1334
|
+
|
1335
|
+
|
1336
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:48:30 +0100
|
1337
|
+
|
1338
|
+
|
1339
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:48:30 +0100
|
1340
|
+
|
1341
|
+
|
1342
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:48:30 +0100
|
1343
|
+
|
1344
|
+
|
1345
|
+
Started GET "/error_previews/preview?code=404&locale=de" for ::1 at 2015-01-21 14:48:32 +0100
|
1346
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1347
|
+
Parameters: {"code"=>"404", "locale"=>"de"}
|
1348
|
+
Completed 404 Not Found in 0ms
|
1349
|
+
|
1350
|
+
ActionController::RoutingError (Was asked to raise generate a 404):
|
1351
|
+
app/controllers/error_previews_controller.rb:9:in `preview'
|
1352
|
+
|
1353
|
+
|
1354
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1355
|
+
Parameters: {"code"=>"404", "locale"=>"de"}
|
1356
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.9ms)
|
1357
|
+
Completed 404 Not Found in 11ms (Views: 10.1ms)
|
1358
|
+
|
1359
|
+
|
1360
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:48:32 +0100
|
1361
|
+
|
1362
|
+
|
1363
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:48:32 +0100
|
1364
|
+
|
1365
|
+
|
1366
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:48:32 +0100
|
1367
|
+
|
1368
|
+
|
1369
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:48:32 +0100
|
1370
|
+
|
1371
|
+
|
1372
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:48:32 +0100
|
1373
|
+
|
1374
|
+
|
1375
|
+
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-21 14:48:36 +0100
|
1376
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1377
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1378
|
+
Completed 500 Internal Server Error in 0ms
|
1379
|
+
|
1380
|
+
RuntimeError (some generic exception):
|
1381
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1382
|
+
|
1383
|
+
|
1384
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1385
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1386
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (1.0ms)
|
1387
|
+
Completed 500 Internal Server Error in 11ms (Views: 10.0ms)
|
1388
|
+
|
1389
|
+
|
1390
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:48:37 +0100
|
1391
|
+
|
1392
|
+
|
1393
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:48:37 +0100
|
1394
|
+
|
1395
|
+
|
1396
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:48:37 +0100
|
1397
|
+
|
1398
|
+
|
1399
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 14:48:37 +0100
|
1400
|
+
|
1401
|
+
|
1402
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:48:37 +0100
|
1403
|
+
|
1404
|
+
|
1405
|
+
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-21 14:48:45 +0100
|
1406
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1407
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1408
|
+
Completed 500 Internal Server Error in 0ms
|
1409
|
+
|
1410
|
+
RuntimeError (some generic exception):
|
1411
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1412
|
+
|
1413
|
+
|
1414
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1415
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1416
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (5.7ms)
|
1417
|
+
Completed 500 Internal Server Error in 41ms (Views: 36.9ms)
|
1418
|
+
|
1419
|
+
|
1420
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:48:45 +0100
|
1421
|
+
|
1422
|
+
|
1423
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:48:45 +0100
|
1424
|
+
|
1425
|
+
|
1426
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 14:48:45 +0100
|
1427
|
+
|
1428
|
+
|
1429
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:48:45 +0100
|
1430
|
+
|
1431
|
+
|
1432
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:48:45 +0100
|
1433
|
+
|
1434
|
+
|
1435
|
+
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-21 14:48:46 +0100
|
1436
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1437
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1438
|
+
Completed 500 Internal Server Error in 0ms
|
1439
|
+
|
1440
|
+
RuntimeError (some generic exception):
|
1441
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1442
|
+
|
1443
|
+
|
1444
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1445
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1446
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.6ms)
|
1447
|
+
Completed 500 Internal Server Error in 12ms (Views: 11.3ms)
|
1448
|
+
|
1449
|
+
|
1450
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:48:46 +0100
|
1451
|
+
|
1452
|
+
|
1453
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:48:46 +0100
|
1454
|
+
|
1455
|
+
|
1456
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:48:46 +0100
|
1457
|
+
|
1458
|
+
|
1459
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 14:48:46 +0100
|
1460
|
+
|
1461
|
+
|
1462
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:48:46 +0100
|
1463
|
+
|
1464
|
+
|
1465
|
+
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-21 14:49:50 +0100
|
1466
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1467
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1468
|
+
Completed 500 Internal Server Error in 0ms
|
1469
|
+
|
1470
|
+
RuntimeError (some generic exception):
|
1471
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1472
|
+
|
1473
|
+
|
1474
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1475
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1476
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (1.1ms)
|
1477
|
+
Completed 500 Internal Server Error in 11ms (Views: 9.9ms)
|
1478
|
+
|
1479
|
+
|
1480
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:49:50 +0100
|
1481
|
+
|
1482
|
+
|
1483
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:49:50 +0100
|
1484
|
+
|
1485
|
+
|
1486
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:49:50 +0100
|
1487
|
+
|
1488
|
+
|
1489
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 14:49:50 +0100
|
1490
|
+
|
1491
|
+
|
1492
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:49:50 +0100
|
1493
|
+
|
1494
|
+
|
1495
|
+
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-21 14:50:18 +0100
|
1496
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1497
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1498
|
+
Completed 500 Internal Server Error in 0ms
|
1499
|
+
|
1500
|
+
RuntimeError (some generic exception):
|
1501
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1502
|
+
|
1503
|
+
|
1504
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1505
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1506
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (1.0ms)
|
1507
|
+
Completed 500 Internal Server Error in 10ms (Views: 9.4ms)
|
1508
|
+
|
1509
|
+
|
1510
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:50:18 +0100
|
1511
|
+
|
1512
|
+
|
1513
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:50:18 +0100
|
1514
|
+
|
1515
|
+
|
1516
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:50:18 +0100
|
1517
|
+
|
1518
|
+
|
1519
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 14:50:18 +0100
|
1520
|
+
|
1521
|
+
|
1522
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:50:18 +0100
|
1523
|
+
|
1524
|
+
|
1525
|
+
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-21 14:50:55 +0100
|
1526
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1527
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1528
|
+
Completed 500 Internal Server Error in 0ms
|
1529
|
+
|
1530
|
+
RuntimeError (some generic exception):
|
1531
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1532
|
+
|
1533
|
+
|
1534
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1535
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1536
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.6ms)
|
1537
|
+
Completed 500 Internal Server Error in 14ms (Views: 10.2ms)
|
1538
|
+
|
1539
|
+
|
1540
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:50:55 +0100
|
1541
|
+
|
1542
|
+
|
1543
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:50:55 +0100
|
1544
|
+
|
1545
|
+
|
1546
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:50:55 +0100
|
1547
|
+
|
1548
|
+
|
1549
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 14:50:55 +0100
|
1550
|
+
|
1551
|
+
|
1552
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:50:55 +0100
|
1553
|
+
|
1554
|
+
|
1555
|
+
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-21 14:51:00 +0100
|
1556
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1557
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
1558
|
+
Completed 500 Internal Server Error in 0ms
|
1559
|
+
|
1560
|
+
RuntimeError (some generic exception):
|
1561
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1562
|
+
|
1563
|
+
|
1564
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1565
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
1566
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (1.0ms)
|
1567
|
+
Completed 500 Internal Server Error in 11ms (Views: 10.1ms)
|
1568
|
+
|
1569
|
+
|
1570
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:51:00 +0100
|
1571
|
+
|
1572
|
+
|
1573
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:51:00 +0100
|
1574
|
+
|
1575
|
+
|
1576
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 14:51:00 +0100
|
1577
|
+
|
1578
|
+
|
1579
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:51:00 +0100
|
1580
|
+
|
1581
|
+
|
1582
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:51:00 +0100
|
1583
|
+
|
1584
|
+
|
1585
|
+
Started GET "/error_previews/preview.pdf?code=500&locale=en" for ::1 at 2015-01-21 14:52:16 +0100
|
1586
|
+
Processing by ErrorPreviewsController#preview as PDF
|
1587
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
1588
|
+
Completed 500 Internal Server Error in 0ms
|
1589
|
+
|
1590
|
+
RuntimeError (some generic exception):
|
1591
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1592
|
+
|
1593
|
+
|
1594
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as PDF
|
1595
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
1596
|
+
Completed 500 Internal Server Error in 3ms
|
1597
|
+
|
1598
|
+
|
1599
|
+
Started GET "/error_previews/preview.pdf?code=500&locale=fr" for ::1 at 2015-01-21 14:54:04 +0100
|
1600
|
+
Processing by ErrorPreviewsController#preview as PDF
|
1601
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1602
|
+
Completed 500 Internal Server Error in 0ms
|
1603
|
+
|
1604
|
+
RuntimeError (some generic exception):
|
1605
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1606
|
+
|
1607
|
+
|
1608
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as PDF
|
1609
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1610
|
+
Completed 500 Internal Server Error in 2ms
|
1611
|
+
|
1612
|
+
|
1613
|
+
Started GET "/error_previews/preview?code=500&locale=fr" for ::1 at 2015-01-21 14:54:08 +0100
|
1614
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1615
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1616
|
+
Completed 500 Internal Server Error in 0ms
|
1617
|
+
|
1618
|
+
RuntimeError (some generic exception):
|
1619
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1620
|
+
|
1621
|
+
|
1622
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1623
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1624
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (0.6ms)
|
1625
|
+
Completed 500 Internal Server Error in 10ms (Views: 9.0ms)
|
1626
|
+
|
1627
|
+
|
1628
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:54:09 +0100
|
1629
|
+
|
1630
|
+
|
1631
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:54:09 +0100
|
1632
|
+
|
1633
|
+
|
1634
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:54:09 +0100
|
1635
|
+
|
1636
|
+
|
1637
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 14:54:09 +0100
|
1638
|
+
|
1639
|
+
|
1640
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:54:09 +0100
|
1641
|
+
|
1642
|
+
|
1643
|
+
Started GET "/error_previews/preview?code=500&locale=fr" for ::1 at 2015-01-21 14:54:14 +0100
|
1644
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1645
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1646
|
+
Completed 500 Internal Server Error in 0ms
|
1647
|
+
|
1648
|
+
RuntimeError (some generic exception):
|
1649
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1650
|
+
|
1651
|
+
|
1652
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1653
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1654
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (5.6ms)
|
1655
|
+
Completed 500 Internal Server Error in 37ms (Views: 32.8ms)
|
1656
|
+
|
1657
|
+
|
1658
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:54:14 +0100
|
1659
|
+
|
1660
|
+
|
1661
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:54:14 +0100
|
1662
|
+
|
1663
|
+
|
1664
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:54:14 +0100
|
1665
|
+
|
1666
|
+
|
1667
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 14:54:14 +0100
|
1668
|
+
|
1669
|
+
|
1670
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:54:14 +0100
|
1671
|
+
|
1672
|
+
|
1673
|
+
Started GET "/error_previews/preview.type.pdf?code=500&locale=fr" for ::1 at 2015-01-21 14:56:27 +0100
|
1674
|
+
|
1675
|
+
ActionController::RoutingError (No route matches [GET] "/error_previews/preview.type.pdf"):
|
1676
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1677
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1678
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1679
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1680
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1681
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1682
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1683
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1684
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1685
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1686
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1687
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1688
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1689
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1690
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1691
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1692
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1693
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1694
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1695
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1696
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1697
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1698
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1699
|
+
|
1700
|
+
|
1701
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1702
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1703
|
+
Completed 500 Internal Server Error in 2ms
|
1704
|
+
|
1705
|
+
|
1706
|
+
Started GET "/error_previews/preview.type.pdf?code=500&locale=fr" for ::1 at 2015-01-21 14:56:41 +0100
|
1707
|
+
|
1708
|
+
ActionController::RoutingError (No route matches [GET] "/error_previews/preview.type.pdf"):
|
1709
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1710
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1711
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1712
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1713
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1714
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1715
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1716
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1717
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1718
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1719
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1720
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1721
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1722
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1723
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1724
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1725
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1726
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1727
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1728
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1729
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1730
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1731
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1732
|
+
|
1733
|
+
|
1734
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1735
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1736
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (2.5ms)
|
1737
|
+
Completed 404 Not Found in 14ms (Views: 12.6ms)
|
1738
|
+
|
1739
|
+
|
1740
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:56:41 +0100
|
1741
|
+
|
1742
|
+
|
1743
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:56:41 +0100
|
1744
|
+
|
1745
|
+
|
1746
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:56:41 +0100
|
1747
|
+
|
1748
|
+
|
1749
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:56:41 +0100
|
1750
|
+
|
1751
|
+
|
1752
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:56:41 +0100
|
1753
|
+
|
1754
|
+
|
1755
|
+
Started GET "/error_previews/preview.type.pdf?code=500&locale=fr" for ::1 at 2015-01-21 14:59:26 +0100
|
1756
|
+
|
1757
|
+
ActionController::RoutingError (No route matches [GET] "/error_previews/preview.type.pdf"):
|
1758
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1759
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1760
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1761
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1762
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1763
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1764
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1765
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1766
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1767
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1768
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1769
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1770
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1771
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1772
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1773
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1774
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1775
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1776
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1777
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1778
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1779
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1780
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1781
|
+
|
1782
|
+
|
1783
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1784
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1785
|
+
Completed 500 Internal Server Error in 4ms
|
1786
|
+
|
1787
|
+
|
1788
|
+
Started GET "/error_previews/preview.type.pdf?code=500&locale=fr" for ::1 at 2015-01-21 14:59:27 +0100
|
1789
|
+
|
1790
|
+
ActionController::RoutingError (No route matches [GET] "/error_previews/preview.type.pdf"):
|
1791
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1792
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1793
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1794
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1795
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1796
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1797
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1798
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1799
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1800
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1801
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1802
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1803
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1804
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1805
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1806
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1807
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1808
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1809
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1810
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1811
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1812
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1813
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1814
|
+
|
1815
|
+
|
1816
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1817
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1818
|
+
Completed 500 Internal Server Error in 0ms
|
1819
|
+
|
1820
|
+
|
1821
|
+
Started GET "/error_previews/preview.type.pdf?code=500&locale=fr" for ::1 at 2015-01-21 14:59:55 +0100
|
1822
|
+
|
1823
|
+
ActionController::RoutingError (No route matches [GET] "/error_previews/preview.type.pdf"):
|
1824
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1825
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1826
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
1827
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
1828
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1829
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1830
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1831
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
1832
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1833
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
1834
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
1835
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1836
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1837
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
1838
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
1839
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
1840
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
1841
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
1842
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
1843
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
1844
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
1845
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
1846
|
+
/Users/pascal/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
1847
|
+
|
1848
|
+
|
1849
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1850
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1851
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (5.1ms)
|
1852
|
+
Completed 404 Not Found in 38ms (Views: 33.6ms)
|
1853
|
+
|
1854
|
+
|
1855
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 14:59:56 +0100
|
1856
|
+
|
1857
|
+
|
1858
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 14:59:56 +0100
|
1859
|
+
|
1860
|
+
|
1861
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 14:59:56 +0100
|
1862
|
+
|
1863
|
+
|
1864
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_404-1b456d7204a73d7e2b991d63e1bb0bb6.png" for ::1 at 2015-01-21 14:59:56 +0100
|
1865
|
+
|
1866
|
+
|
1867
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 14:59:56 +0100
|
1868
|
+
|
1869
|
+
|
1870
|
+
Started GET "/" for ::1 at 2015-01-21 15:01:40 +0100
|
1871
|
+
Processing by ErrorPreviewsController#index as HTML
|
1872
|
+
Rendered error_previews/index.html.erb within layouts/application (0.9ms)
|
1873
|
+
Completed 200 OK in 27ms (Views: 26.5ms)
|
1874
|
+
|
1875
|
+
|
1876
|
+
Started GET "/assets/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1" for ::1 at 2015-01-21 15:01:40 +0100
|
1877
|
+
|
1878
|
+
|
1879
|
+
Started GET "/assets/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 15:01:40 +0100
|
1880
|
+
|
1881
|
+
|
1882
|
+
Started GET "/error_previews/preview?code=500&locale=en" for ::1 at 2015-01-21 15:01:42 +0100
|
1883
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1884
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
1885
|
+
Completed 500 Internal Server Error in 0ms
|
1886
|
+
|
1887
|
+
RuntimeError (some generic exception):
|
1888
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1889
|
+
|
1890
|
+
|
1891
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1892
|
+
Parameters: {"code"=>"500", "locale"=>"en"}
|
1893
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (3.4ms)
|
1894
|
+
Completed 500 Internal Server Error in 26ms (Views: 21.2ms)
|
1895
|
+
|
1896
|
+
|
1897
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 15:01:42 +0100
|
1898
|
+
|
1899
|
+
|
1900
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 15:01:42 +0100
|
1901
|
+
|
1902
|
+
|
1903
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 15:01:42 +0100
|
1904
|
+
|
1905
|
+
|
1906
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 15:01:42 +0100
|
1907
|
+
|
1908
|
+
|
1909
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 15:01:42 +0100
|
1910
|
+
|
1911
|
+
|
1912
|
+
Started GET "/" for ::1 at 2015-01-21 15:01:44 +0100
|
1913
|
+
Processing by ErrorPreviewsController#index as HTML
|
1914
|
+
Rendered error_previews/index.html.erb within layouts/application (0.1ms)
|
1915
|
+
Completed 200 OK in 10ms (Views: 9.6ms)
|
1916
|
+
|
1917
|
+
|
1918
|
+
Started GET "/assets/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1" for ::1 at 2015-01-21 15:01:44 +0100
|
1919
|
+
|
1920
|
+
|
1921
|
+
Started GET "/assets/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 15:01:44 +0100
|
1922
|
+
|
1923
|
+
|
1924
|
+
Started GET "/error_previews/preview?code=500&locale=de" for ::1 at 2015-01-21 15:01:48 +0100
|
1925
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1926
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1927
|
+
Completed 500 Internal Server Error in 0ms
|
1928
|
+
|
1929
|
+
RuntimeError (some generic exception):
|
1930
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1931
|
+
|
1932
|
+
|
1933
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1934
|
+
Parameters: {"code"=>"500", "locale"=>"de"}
|
1935
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (1.1ms)
|
1936
|
+
Completed 500 Internal Server Error in 12ms (Views: 10.6ms)
|
1937
|
+
|
1938
|
+
|
1939
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 15:01:48 +0100
|
1940
|
+
|
1941
|
+
|
1942
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 15:01:48 +0100
|
1943
|
+
|
1944
|
+
|
1945
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 15:01:48 +0100
|
1946
|
+
|
1947
|
+
|
1948
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 15:01:48 +0100
|
1949
|
+
|
1950
|
+
|
1951
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 15:01:48 +0100
|
1952
|
+
|
1953
|
+
|
1954
|
+
Started GET "/" for ::1 at 2015-01-21 15:01:50 +0100
|
1955
|
+
Processing by ErrorPreviewsController#index as HTML
|
1956
|
+
Rendered error_previews/index.html.erb within layouts/application (0.0ms)
|
1957
|
+
Completed 200 OK in 9ms (Views: 9.0ms)
|
1958
|
+
|
1959
|
+
|
1960
|
+
Started GET "/assets/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1" for ::1 at 2015-01-21 15:01:50 +0100
|
1961
|
+
|
1962
|
+
|
1963
|
+
Started GET "/assets/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 15:01:50 +0100
|
1964
|
+
|
1965
|
+
|
1966
|
+
Started GET "/error_previews/preview?code=500&locale=fr" for ::1 at 2015-01-21 15:01:51 +0100
|
1967
|
+
Processing by ErrorPreviewsController#preview as HTML
|
1968
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1969
|
+
Completed 500 Internal Server Error in 0ms
|
1970
|
+
|
1971
|
+
RuntimeError (some generic exception):
|
1972
|
+
app/controllers/error_previews_controller.rb:8:in `preview'
|
1973
|
+
|
1974
|
+
|
1975
|
+
Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
|
1976
|
+
Parameters: {"code"=>"500", "locale"=>"fr"}
|
1977
|
+
Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (1.1ms)
|
1978
|
+
Completed 500 Internal Server Error in 12ms (Views: 10.8ms)
|
1979
|
+
|
1980
|
+
|
1981
|
+
Started GET "/assets/simplificator_infrastructure/errors-928ba3bb41870ff2506534e889b5a343.css?body=1" for ::1 at 2015-01-21 15:01:51 +0100
|
1982
|
+
|
1983
|
+
|
1984
|
+
Started GET "/assets/simplificator_infrastructure/application-680fe1d8377d3b30ccc6040ff6efb0f6.css?body=1" for ::1 at 2015-01-21 15:01:51 +0100
|
1985
|
+
|
1986
|
+
|
1987
|
+
Started GET "/assets/simplificator_infrastructure/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 15:01:51 +0100
|
1988
|
+
|
1989
|
+
|
1990
|
+
Started GET "/assets/simplificator_infrastructure/errors/error_generic-a968490d61f954f36a76c8e28c134c0c.png" for ::1 at 2015-01-21 15:01:51 +0100
|
1991
|
+
|
1992
|
+
|
1993
|
+
Started GET "/assets/simplificator_infrastructure/errors/logo-48573dc0d89ffec82bd936f919c7b96d.png" for ::1 at 2015-01-21 15:01:51 +0100
|
1994
|
+
|
1995
|
+
|
1996
|
+
Started GET "/" for ::1 at 2015-01-21 15:01:53 +0100
|
1997
|
+
Processing by ErrorPreviewsController#index as HTML
|
1998
|
+
Rendered error_previews/index.html.erb within layouts/application (0.0ms)
|
1999
|
+
Completed 200 OK in 10ms (Views: 9.8ms)
|
2000
|
+
|
2001
|
+
|
2002
|
+
Started GET "/assets/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1" for ::1 at 2015-01-21 15:01:53 +0100
|
2003
|
+
|
2004
|
+
|
2005
|
+
Started GET "/assets/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1" for ::1 at 2015-01-21 15:01:53 +0100
|