rails-rfc6570 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +3 -1
- data/lib/rails/rfc6570.rb +60 -11
- data/lib/rails/rfc6570/version.rb +1 -1
- data/rails-rfc6570.gemspec +1 -1
- data/spec/dummy/log/test.log +2394 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe0a2171639cd02d609193683e4537b8c13a0af9
|
4
|
+
data.tar.gz: d407c343aa810e9d88ed85e40a5c842b55d3ba49
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 651b5ca68c7b084d95f5af70fd0534558e16bfb565e473d06f5ca831b6be3c28caf7dc391d79fe470c016791f34d6b9f638bd1e791e738ea08be56d002398904
|
7
|
+
data.tar.gz: 5dc1887c8c6845f3096804f0d2df102f574b51c2e3f2a697ee6db8ed8cb34937dc5c9acaaf1a3c0cc4e6d4ce611040a77ef19c185c8e6f475ea76067879b3bda
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# Rails::RFC6570
|
2
2
|
|
3
|
-
|
3
|
+
[](https://travis-ci.org/jgraichen/rails-rfc6570)
|
4
|
+
|
5
|
+
Pragmatical access to your Rails 4.0 or 4.1 or 4.2 or 5.0 routes as RFC6570 URI templates. Since version 0.3.0 Ruby 2.0+ is required.
|
4
6
|
|
5
7
|
## Installation
|
6
8
|
|
data/lib/rails/rfc6570.rb
CHANGED
@@ -3,7 +3,9 @@ require 'rails/rfc6570/version'
|
|
3
3
|
module ActionDispatch
|
4
4
|
module Journey
|
5
5
|
module Visitors
|
6
|
-
class RFC6570 <
|
6
|
+
class RFC6570 < Visitor
|
7
|
+
DISPATCH_CACHE = {}
|
8
|
+
|
7
9
|
def initialize(opts = {})
|
8
10
|
super()
|
9
11
|
|
@@ -21,7 +23,7 @@ module ActionDispatch
|
|
21
23
|
end
|
22
24
|
|
23
25
|
def accept(node)
|
24
|
-
str =
|
26
|
+
str = visit(node)
|
25
27
|
|
26
28
|
if @opts.fetch(:params, true) && route
|
27
29
|
controller = route.defaults[:controller].to_s
|
@@ -38,7 +40,7 @@ module ActionDispatch
|
|
38
40
|
|
39
41
|
def visit(node)
|
40
42
|
@stack.unshift node.type
|
41
|
-
|
43
|
+
send DISPATCH_CACHE.fetch(node.type), node
|
42
44
|
ensure
|
43
45
|
@stack.shift
|
44
46
|
end
|
@@ -62,10 +64,6 @@ module ActionDispatch
|
|
62
64
|
end
|
63
65
|
end
|
64
66
|
|
65
|
-
def visit_SYMBOL(node)
|
66
|
-
placeholder node
|
67
|
-
end
|
68
|
-
|
69
67
|
def binary(node)
|
70
68
|
case [node.left.type, node.right.type]
|
71
69
|
when [:DOT, :SYMBOL]
|
@@ -86,19 +84,62 @@ module ActionDispatch
|
|
86
84
|
if node.right.left.type == :STAR
|
87
85
|
placeholder(node.right.left, '/', '*') + visit(node.right.right)
|
88
86
|
else
|
89
|
-
|
87
|
+
[visit(node.left), visit(node.right)].join
|
90
88
|
end
|
91
89
|
when [:CAT, :STAR]
|
92
90
|
visit(node.left).to_s.gsub(/\/+$/, '') + placeholder(node.right, '/', '*')
|
93
91
|
else
|
94
|
-
|
92
|
+
[visit(node.left), visit(node.right)].join
|
95
93
|
end
|
96
94
|
end
|
97
95
|
|
96
|
+
def terminal(node)
|
97
|
+
node.left
|
98
|
+
end
|
99
|
+
|
100
|
+
def nary(node)
|
101
|
+
node.children.each { |c| visit(c) }
|
102
|
+
end
|
103
|
+
|
104
|
+
def unary(node)
|
105
|
+
visit(node.left)
|
106
|
+
end
|
107
|
+
|
108
|
+
def visit_CAT(node)
|
109
|
+
binary(node)
|
110
|
+
end
|
111
|
+
|
112
|
+
def visit_SYMBOL(node)
|
113
|
+
terminal(node)
|
114
|
+
end
|
115
|
+
|
116
|
+
def visit_LITERAL(node)
|
117
|
+
terminal(node)
|
118
|
+
end
|
119
|
+
|
120
|
+
def visit_SLASH(node)
|
121
|
+
terminal(node)
|
122
|
+
end
|
123
|
+
|
124
|
+
def visit_DOT(node)
|
125
|
+
terminal(node)
|
126
|
+
end
|
127
|
+
|
128
|
+
def visit_SYMBOL(node)
|
129
|
+
placeholder(node)
|
130
|
+
end
|
131
|
+
|
132
|
+
def visit_OR(node)
|
133
|
+
nary(node)
|
134
|
+
end
|
135
|
+
|
136
|
+
def visit_STAR(node)
|
137
|
+
unary(node)
|
138
|
+
end
|
139
|
+
|
98
140
|
def visit_GROUP(node)
|
99
141
|
if @group_depth >= 1
|
100
|
-
raise RuntimeError.new
|
101
|
-
'Cannot transform nested groups.'
|
142
|
+
raise RuntimeError.new 'Cannot transform nested groups.'
|
102
143
|
else
|
103
144
|
@group_depth += 1
|
104
145
|
visit node.left
|
@@ -106,6 +147,11 @@ module ActionDispatch
|
|
106
147
|
ensure
|
107
148
|
@group_depth -= 1
|
108
149
|
end
|
150
|
+
|
151
|
+
instance_methods(true).each do |meth|
|
152
|
+
next unless meth =~ /^visit_(.*)$/
|
153
|
+
DISPATCH_CACHE[$1.to_sym] = meth
|
154
|
+
end
|
109
155
|
end
|
110
156
|
end
|
111
157
|
end
|
@@ -128,6 +174,9 @@ module Rails
|
|
128
174
|
if MAJOR == 4 && (0..1).include?(MINOR)
|
129
175
|
::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
|
130
176
|
:prepend, Rails::RFC6570::Extensions::NamedRouteCollection40
|
177
|
+
elsif MAJOR == 4 && MINOR == 2
|
178
|
+
::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
|
179
|
+
:prepend, Rails::RFC6570::Extensions::NamedRouteCollection42
|
131
180
|
else
|
132
181
|
::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
|
133
182
|
:prepend, Rails::RFC6570::Extensions::NamedRouteCollection42
|
data/rails-rfc6570.gemspec
CHANGED
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.test_files = spec.files.grep(/^(test|spec|features)\//)
|
22
22
|
spec.require_paths = ['lib']
|
23
23
|
|
24
|
-
spec.add_runtime_dependency 'actionpack', '>= 4', '< 5'
|
24
|
+
spec.add_runtime_dependency 'actionpack', '>= 4', '< 5.1'
|
25
25
|
spec.add_runtime_dependency 'addressable', '~> 2.3'
|
26
26
|
|
27
27
|
spec.add_development_dependency 'bundler', '~> 1.5'
|
data/spec/dummy/log/test.log
CHANGED
@@ -40,3 +40,2397 @@ Completed 200 OK in 1ms (Views: 0.1ms)
|
|
40
40
|
Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
|
41
41
|
Processing by APIController#index as HTML
|
42
42
|
Completed 200 OK in 1ms (Views: 0.1ms)
|
43
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
44
|
+
Processing by APIController#index as HTML
|
45
|
+
Completed 500 Internal Server Error in 0ms
|
46
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
47
|
+
Processing by APIController#index as HTML
|
48
|
+
Completed 500 Internal Server Error in 0ms
|
49
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
50
|
+
Processing by APIController#index as HTML
|
51
|
+
Completed 500 Internal Server Error in 0ms
|
52
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
53
|
+
Processing by APIController#index as HTML
|
54
|
+
Completed 500 Internal Server Error in 0ms
|
55
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
56
|
+
Processing by APIController#index as HTML
|
57
|
+
Completed 500 Internal Server Error in 0ms
|
58
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
59
|
+
Processing by APIController#index as HTML
|
60
|
+
Completed 500 Internal Server Error in 0ms
|
61
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
62
|
+
Processing by APIController#index as HTML
|
63
|
+
Completed 500 Internal Server Error in 0ms
|
64
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
65
|
+
Processing by APIController#index as HTML
|
66
|
+
Completed 500 Internal Server Error in 0ms
|
67
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
68
|
+
Processing by APIController#action as HTML
|
69
|
+
Completed 500 Internal Server Error in 0ms
|
70
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
71
|
+
Processing by APIController#action as HTML
|
72
|
+
Completed 500 Internal Server Error in 0ms
|
73
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
74
|
+
Processing by APIController#action as HTML
|
75
|
+
Completed 500 Internal Server Error in 0ms
|
76
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
77
|
+
Processing by APIController#action as HTML
|
78
|
+
Completed 500 Internal Server Error in 0ms
|
79
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
80
|
+
Processing by APIController#action as HTML
|
81
|
+
Completed 500 Internal Server Error in 0ms
|
82
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
|
83
|
+
Processing by APIController#action as HTML
|
84
|
+
Completed 500 Internal Server Error in 0ms
|
85
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
86
|
+
Processing by APIController#action as HTML
|
87
|
+
Completed 500 Internal Server Error in 0ms
|
88
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
89
|
+
Processing by APIController#action as HTML
|
90
|
+
Completed 500 Internal Server Error in 0ms
|
91
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
92
|
+
Processing by APIController#action as HTML
|
93
|
+
Completed 500 Internal Server Error in 0ms
|
94
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
95
|
+
Processing by APIController#action as HTML
|
96
|
+
Completed 500 Internal Server Error in 0ms
|
97
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
98
|
+
Processing by APIController#action as HTML
|
99
|
+
Completed 500 Internal Server Error in 0ms
|
100
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
101
|
+
Processing by APIController#action as HTML
|
102
|
+
Completed 500 Internal Server Error in 0ms
|
103
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
104
|
+
Processing by APIController#index as HTML
|
105
|
+
Completed 500 Internal Server Error in 0ms
|
106
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
107
|
+
Processing by APIController#index as HTML
|
108
|
+
Completed 500 Internal Server Error in 0ms
|
109
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
110
|
+
Processing by APIController#index as HTML
|
111
|
+
Completed 500 Internal Server Error in 0ms
|
112
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
113
|
+
Processing by APIController#index as HTML
|
114
|
+
Completed 500 Internal Server Error in 0ms
|
115
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
116
|
+
Processing by APIController#index as HTML
|
117
|
+
Completed 500 Internal Server Error in 0ms
|
118
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
119
|
+
Processing by APIController#index as HTML
|
120
|
+
Completed 500 Internal Server Error in 0ms
|
121
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
122
|
+
Processing by APIController#index as HTML
|
123
|
+
Completed 500 Internal Server Error in 0ms
|
124
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
|
125
|
+
Processing by APIController#index as HTML
|
126
|
+
Completed 500 Internal Server Error in 0ms
|
127
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
128
|
+
Processing by APIController#index as HTML
|
129
|
+
Completed 500 Internal Server Error in 0ms
|
130
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
131
|
+
Processing by APIController#index as HTML
|
132
|
+
Completed 500 Internal Server Error in 0ms
|
133
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
134
|
+
Processing by APIController#index as HTML
|
135
|
+
Completed 500 Internal Server Error in 0ms
|
136
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
137
|
+
Processing by APIController#index as HTML
|
138
|
+
Completed 500 Internal Server Error in 0ms
|
139
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
140
|
+
Processing by APIController#index as HTML
|
141
|
+
Completed 500 Internal Server Error in 0ms
|
142
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
143
|
+
Processing by APIController#index as HTML
|
144
|
+
Completed 500 Internal Server Error in 0ms
|
145
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
146
|
+
Processing by APIController#index as HTML
|
147
|
+
Completed 500 Internal Server Error in 0ms
|
148
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
149
|
+
Processing by APIController#index as HTML
|
150
|
+
Completed 500 Internal Server Error in 0ms
|
151
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
152
|
+
Processing by APIController#action as HTML
|
153
|
+
Completed 500 Internal Server Error in 0ms
|
154
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
155
|
+
Processing by APIController#action as HTML
|
156
|
+
Completed 500 Internal Server Error in 0ms
|
157
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
158
|
+
Processing by APIController#action as HTML
|
159
|
+
Completed 500 Internal Server Error in 0ms
|
160
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
161
|
+
Processing by APIController#action as HTML
|
162
|
+
Completed 500 Internal Server Error in 0ms
|
163
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
164
|
+
Processing by APIController#action as HTML
|
165
|
+
Completed 500 Internal Server Error in 0ms
|
166
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
|
167
|
+
Processing by APIController#action as HTML
|
168
|
+
Completed 500 Internal Server Error in 0ms
|
169
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
170
|
+
Processing by APIController#index as HTML
|
171
|
+
Completed 500 Internal Server Error in 0ms
|
172
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
173
|
+
Processing by APIController#index as HTML
|
174
|
+
Completed 500 Internal Server Error in 0ms
|
175
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
176
|
+
Processing by APIController#index as HTML
|
177
|
+
Completed 500 Internal Server Error in 0ms
|
178
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
179
|
+
Processing by APIController#index as HTML
|
180
|
+
Completed 500 Internal Server Error in 0ms
|
181
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
182
|
+
Processing by APIController#index as HTML
|
183
|
+
Completed 500 Internal Server Error in 0ms
|
184
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
185
|
+
Processing by APIController#index as HTML
|
186
|
+
Completed 500 Internal Server Error in 0ms
|
187
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
188
|
+
Processing by APIController#index as HTML
|
189
|
+
Completed 500 Internal Server Error in 0ms
|
190
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
191
|
+
Processing by APIController#index as HTML
|
192
|
+
Completed 500 Internal Server Error in 0ms
|
193
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
194
|
+
Processing by APIController#action as HTML
|
195
|
+
Completed 500 Internal Server Error in 0ms
|
196
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
197
|
+
Processing by APIController#action as HTML
|
198
|
+
Completed 500 Internal Server Error in 0ms
|
199
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
200
|
+
Processing by APIController#action as HTML
|
201
|
+
Completed 500 Internal Server Error in 0ms
|
202
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
203
|
+
Processing by APIController#action as HTML
|
204
|
+
Completed 500 Internal Server Error in 0ms
|
205
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
206
|
+
Processing by APIController#action as HTML
|
207
|
+
Completed 500 Internal Server Error in 0ms
|
208
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
|
209
|
+
Processing by APIController#action as HTML
|
210
|
+
Completed 500 Internal Server Error in 0ms
|
211
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
212
|
+
Processing by APIController#index as HTML
|
213
|
+
Completed 500 Internal Server Error in 0ms
|
214
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
215
|
+
Processing by APIController#index as HTML
|
216
|
+
Completed 500 Internal Server Error in 0ms
|
217
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
218
|
+
Processing by APIController#index as HTML
|
219
|
+
Completed 500 Internal Server Error in 0ms
|
220
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
221
|
+
Processing by APIController#index as HTML
|
222
|
+
Completed 500 Internal Server Error in 0ms
|
223
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
224
|
+
Processing by APIController#index as HTML
|
225
|
+
Completed 500 Internal Server Error in 0ms
|
226
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
227
|
+
Processing by APIController#index as HTML
|
228
|
+
Completed 500 Internal Server Error in 0ms
|
229
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
230
|
+
Processing by APIController#index as HTML
|
231
|
+
Completed 500 Internal Server Error in 0ms
|
232
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
233
|
+
Processing by APIController#index as HTML
|
234
|
+
Completed 500 Internal Server Error in 0ms
|
235
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
236
|
+
Processing by APIController#action as HTML
|
237
|
+
Completed 500 Internal Server Error in 0ms
|
238
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
239
|
+
Processing by APIController#action as HTML
|
240
|
+
Completed 500 Internal Server Error in 0ms
|
241
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
242
|
+
Processing by APIController#action as HTML
|
243
|
+
Completed 500 Internal Server Error in 0ms
|
244
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
245
|
+
Processing by APIController#action as HTML
|
246
|
+
Completed 500 Internal Server Error in 0ms
|
247
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
248
|
+
Processing by APIController#action as HTML
|
249
|
+
Completed 500 Internal Server Error in 0ms
|
250
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
|
251
|
+
Processing by APIController#action as HTML
|
252
|
+
Completed 500 Internal Server Error in 0ms
|
253
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
254
|
+
Processing by APIController#index as HTML
|
255
|
+
Completed 500 Internal Server Error in 0ms
|
256
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
257
|
+
Processing by APIController#index as HTML
|
258
|
+
Completed 500 Internal Server Error in 0ms
|
259
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
260
|
+
Processing by APIController#index as HTML
|
261
|
+
Completed 500 Internal Server Error in 0ms
|
262
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
263
|
+
Processing by APIController#index as HTML
|
264
|
+
Completed 500 Internal Server Error in 0ms
|
265
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
266
|
+
Processing by APIController#index as HTML
|
267
|
+
Completed 500 Internal Server Error in 0ms
|
268
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
269
|
+
Processing by APIController#index as HTML
|
270
|
+
Completed 500 Internal Server Error in 0ms
|
271
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
272
|
+
Processing by APIController#index as HTML
|
273
|
+
Completed 500 Internal Server Error in 0ms
|
274
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
275
|
+
Processing by APIController#index as HTML
|
276
|
+
Completed 500 Internal Server Error in 0ms
|
277
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
278
|
+
Processing by APIController#action as HTML
|
279
|
+
Completed 500 Internal Server Error in 0ms
|
280
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
281
|
+
Processing by APIController#action as HTML
|
282
|
+
Completed 500 Internal Server Error in 0ms
|
283
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
284
|
+
Processing by APIController#action as HTML
|
285
|
+
Completed 500 Internal Server Error in 0ms
|
286
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
287
|
+
Processing by APIController#action as HTML
|
288
|
+
Completed 500 Internal Server Error in 0ms
|
289
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
290
|
+
Processing by APIController#action as HTML
|
291
|
+
Completed 500 Internal Server Error in 0ms
|
292
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
|
293
|
+
Processing by APIController#action as HTML
|
294
|
+
Completed 500 Internal Server Error in 0ms
|
295
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
296
|
+
Processing by APIController#index as HTML
|
297
|
+
Completed 500 Internal Server Error in 0ms
|
298
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
299
|
+
Processing by APIController#index as HTML
|
300
|
+
Completed 500 Internal Server Error in 0ms
|
301
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
302
|
+
Processing by APIController#index as HTML
|
303
|
+
Completed 500 Internal Server Error in 0ms
|
304
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
305
|
+
Processing by APIController#index as HTML
|
306
|
+
Completed 500 Internal Server Error in 0ms
|
307
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
308
|
+
Processing by APIController#index as HTML
|
309
|
+
Completed 500 Internal Server Error in 0ms
|
310
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
311
|
+
Processing by APIController#index as HTML
|
312
|
+
Completed 500 Internal Server Error in 0ms
|
313
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
314
|
+
Processing by APIController#index as HTML
|
315
|
+
Completed 500 Internal Server Error in 0ms
|
316
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
317
|
+
Processing by APIController#index as HTML
|
318
|
+
Completed 500 Internal Server Error in 0ms
|
319
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
320
|
+
Processing by APIController#action as HTML
|
321
|
+
Completed 500 Internal Server Error in 0ms
|
322
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
323
|
+
Processing by APIController#action as HTML
|
324
|
+
Completed 500 Internal Server Error in 0ms
|
325
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
326
|
+
Processing by APIController#action as HTML
|
327
|
+
Completed 500 Internal Server Error in 0ms
|
328
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
329
|
+
Processing by APIController#action as HTML
|
330
|
+
Completed 500 Internal Server Error in 0ms
|
331
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
332
|
+
Processing by APIController#action as HTML
|
333
|
+
Completed 500 Internal Server Error in 0ms
|
334
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
|
335
|
+
Processing by APIController#action as HTML
|
336
|
+
Completed 500 Internal Server Error in 0ms
|
337
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
338
|
+
Processing by APIController#action as HTML
|
339
|
+
Completed 500 Internal Server Error in 0ms
|
340
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
341
|
+
Processing by APIController#action as HTML
|
342
|
+
Completed 500 Internal Server Error in 0ms
|
343
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
344
|
+
Processing by APIController#action as HTML
|
345
|
+
Completed 500 Internal Server Error in 0ms
|
346
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
347
|
+
Processing by APIController#action as HTML
|
348
|
+
Completed 500 Internal Server Error in 0ms
|
349
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
350
|
+
Processing by APIController#action as HTML
|
351
|
+
Completed 500 Internal Server Error in 0ms
|
352
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
353
|
+
Processing by APIController#action as HTML
|
354
|
+
Completed 500 Internal Server Error in 0ms
|
355
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
356
|
+
Processing by APIController#index as HTML
|
357
|
+
Completed 500 Internal Server Error in 0ms
|
358
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
359
|
+
Processing by APIController#index as HTML
|
360
|
+
Completed 500 Internal Server Error in 0ms
|
361
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
362
|
+
Processing by APIController#index as HTML
|
363
|
+
Completed 500 Internal Server Error in 0ms
|
364
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
365
|
+
Processing by APIController#index as HTML
|
366
|
+
Completed 500 Internal Server Error in 0ms
|
367
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
368
|
+
Processing by APIController#index as HTML
|
369
|
+
Completed 500 Internal Server Error in 0ms
|
370
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
371
|
+
Processing by APIController#index as HTML
|
372
|
+
Completed 500 Internal Server Error in 0ms
|
373
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
374
|
+
Processing by APIController#index as HTML
|
375
|
+
Completed 500 Internal Server Error in 0ms
|
376
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
|
377
|
+
Processing by APIController#index as HTML
|
378
|
+
Completed 500 Internal Server Error in 0ms
|
379
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
380
|
+
Processing by APIController#action as HTML
|
381
|
+
Completed 500 Internal Server Error in 0ms
|
382
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
383
|
+
Processing by APIController#action as HTML
|
384
|
+
Completed 500 Internal Server Error in 0ms
|
385
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
386
|
+
Processing by APIController#action as HTML
|
387
|
+
Completed 500 Internal Server Error in 0ms
|
388
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
389
|
+
Processing by APIController#action as HTML
|
390
|
+
Completed 500 Internal Server Error in 0ms
|
391
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
392
|
+
Processing by APIController#action as HTML
|
393
|
+
Completed 500 Internal Server Error in 0ms
|
394
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
395
|
+
Processing by APIController#action as HTML
|
396
|
+
Completed 500 Internal Server Error in 0ms
|
397
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
398
|
+
Processing by APIController#index as HTML
|
399
|
+
Completed 500 Internal Server Error in 0ms
|
400
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
401
|
+
Processing by APIController#index as HTML
|
402
|
+
Completed 500 Internal Server Error in 0ms
|
403
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
404
|
+
Processing by APIController#index as HTML
|
405
|
+
Completed 500 Internal Server Error in 0ms
|
406
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
407
|
+
Processing by APIController#index as HTML
|
408
|
+
Completed 500 Internal Server Error in 0ms
|
409
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
410
|
+
Processing by APIController#index as HTML
|
411
|
+
Completed 500 Internal Server Error in 0ms
|
412
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
413
|
+
Processing by APIController#index as HTML
|
414
|
+
Completed 500 Internal Server Error in 0ms
|
415
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
416
|
+
Processing by APIController#index as HTML
|
417
|
+
Completed 500 Internal Server Error in 0ms
|
418
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
|
419
|
+
Processing by APIController#index as HTML
|
420
|
+
Completed 500 Internal Server Error in 0ms
|
421
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
422
|
+
Processing by APIController#index as HTML
|
423
|
+
Completed 500 Internal Server Error in 0ms
|
424
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
425
|
+
Processing by APIController#index as HTML
|
426
|
+
Completed 500 Internal Server Error in 0ms
|
427
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
428
|
+
Processing by APIController#index as HTML
|
429
|
+
Completed 500 Internal Server Error in 0ms
|
430
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
431
|
+
Processing by APIController#index as HTML
|
432
|
+
Completed 500 Internal Server Error in 0ms
|
433
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
434
|
+
Processing by APIController#index as HTML
|
435
|
+
Completed 500 Internal Server Error in 0ms
|
436
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
437
|
+
Processing by APIController#index as HTML
|
438
|
+
Completed 500 Internal Server Error in 0ms
|
439
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
440
|
+
Processing by APIController#index as HTML
|
441
|
+
Completed 500 Internal Server Error in 0ms
|
442
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
443
|
+
Processing by APIController#index as HTML
|
444
|
+
Completed 500 Internal Server Error in 0ms
|
445
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
446
|
+
Processing by APIController#action as HTML
|
447
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
448
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
449
|
+
Processing by APIController#action as HTML
|
450
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
451
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
452
|
+
Processing by APIController#action as HTML
|
453
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
454
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
455
|
+
Processing by APIController#action as HTML
|
456
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
457
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
458
|
+
Processing by APIController#action as HTML
|
459
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
460
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
|
461
|
+
Processing by APIController#action as HTML
|
462
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
463
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
464
|
+
Processing by APIController#action as HTML
|
465
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
466
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
467
|
+
Processing by APIController#action as HTML
|
468
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
469
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
470
|
+
Processing by APIController#action as HTML
|
471
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
472
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
473
|
+
Processing by APIController#action as HTML
|
474
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
475
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
476
|
+
Processing by APIController#action as HTML
|
477
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
478
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
479
|
+
Processing by APIController#action as HTML
|
480
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
481
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
482
|
+
Processing by APIController#index as HTML
|
483
|
+
Completed 500 Internal Server Error in 0ms
|
484
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
485
|
+
Processing by APIController#index as HTML
|
486
|
+
Completed 500 Internal Server Error in 0ms
|
487
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
488
|
+
Processing by APIController#index as HTML
|
489
|
+
Completed 500 Internal Server Error in 0ms
|
490
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
491
|
+
Processing by APIController#index as HTML
|
492
|
+
Completed 500 Internal Server Error in 0ms
|
493
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
494
|
+
Processing by APIController#index as HTML
|
495
|
+
Completed 500 Internal Server Error in 0ms
|
496
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
497
|
+
Processing by APIController#index as HTML
|
498
|
+
Completed 500 Internal Server Error in 0ms
|
499
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
500
|
+
Processing by APIController#index as HTML
|
501
|
+
Completed 500 Internal Server Error in 0ms
|
502
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
|
503
|
+
Processing by APIController#index as HTML
|
504
|
+
Completed 500 Internal Server Error in 0ms
|
505
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
506
|
+
Processing by APIController#action as HTML
|
507
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
508
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
509
|
+
Processing by APIController#action as HTML
|
510
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
511
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
512
|
+
Processing by APIController#action as HTML
|
513
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
514
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
515
|
+
Processing by APIController#action as HTML
|
516
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
517
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
518
|
+
Processing by APIController#action as HTML
|
519
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
520
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
521
|
+
Processing by APIController#action as HTML
|
522
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
523
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
524
|
+
Processing by APIController#index as HTML
|
525
|
+
Completed 500 Internal Server Error in 0ms
|
526
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
527
|
+
Processing by APIController#index as HTML
|
528
|
+
Completed 500 Internal Server Error in 0ms
|
529
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
530
|
+
Processing by APIController#index as HTML
|
531
|
+
Completed 500 Internal Server Error in 0ms
|
532
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
533
|
+
Processing by APIController#index as HTML
|
534
|
+
Completed 500 Internal Server Error in 0ms
|
535
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
536
|
+
Processing by APIController#index as HTML
|
537
|
+
Completed 500 Internal Server Error in 0ms
|
538
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
539
|
+
Processing by APIController#index as HTML
|
540
|
+
Completed 500 Internal Server Error in 0ms
|
541
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
542
|
+
Processing by APIController#index as HTML
|
543
|
+
Completed 500 Internal Server Error in 0ms
|
544
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
|
545
|
+
Processing by APIController#index as HTML
|
546
|
+
Completed 500 Internal Server Error in 0ms
|
547
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
548
|
+
Processing by APIController#index as HTML
|
549
|
+
Completed 500 Internal Server Error in 0ms
|
550
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
551
|
+
Processing by APIController#index as HTML
|
552
|
+
Completed 500 Internal Server Error in 0ms
|
553
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
554
|
+
Processing by APIController#index as HTML
|
555
|
+
Completed 500 Internal Server Error in 0ms
|
556
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
557
|
+
Processing by APIController#index as HTML
|
558
|
+
Completed 500 Internal Server Error in 0ms
|
559
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
560
|
+
Processing by APIController#index as HTML
|
561
|
+
Completed 500 Internal Server Error in 0ms
|
562
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
563
|
+
Processing by APIController#index as HTML
|
564
|
+
Completed 500 Internal Server Error in 0ms
|
565
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
566
|
+
Processing by APIController#index as HTML
|
567
|
+
Completed 500 Internal Server Error in 0ms
|
568
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
569
|
+
Processing by APIController#index as HTML
|
570
|
+
Completed 500 Internal Server Error in 0ms
|
571
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
572
|
+
Processing by APIController#action as HTML
|
573
|
+
Completed 500 Internal Server Error in 0ms
|
574
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
575
|
+
Processing by APIController#action as HTML
|
576
|
+
Completed 500 Internal Server Error in 0ms
|
577
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
578
|
+
Processing by APIController#action as HTML
|
579
|
+
Completed 500 Internal Server Error in 0ms
|
580
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
581
|
+
Processing by APIController#action as HTML
|
582
|
+
Completed 500 Internal Server Error in 0ms
|
583
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
584
|
+
Processing by APIController#action as HTML
|
585
|
+
Completed 500 Internal Server Error in 0ms
|
586
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
|
587
|
+
Processing by APIController#action as HTML
|
588
|
+
Completed 500 Internal Server Error in 0ms
|
589
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
590
|
+
Processing by APIController#index as HTML
|
591
|
+
Completed 500 Internal Server Error in 0ms
|
592
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
593
|
+
Processing by APIController#index as HTML
|
594
|
+
Completed 500 Internal Server Error in 0ms
|
595
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
596
|
+
Processing by APIController#index as HTML
|
597
|
+
Completed 500 Internal Server Error in 0ms
|
598
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
599
|
+
Processing by APIController#index as HTML
|
600
|
+
Completed 500 Internal Server Error in 0ms
|
601
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
602
|
+
Processing by APIController#index as HTML
|
603
|
+
Completed 500 Internal Server Error in 0ms
|
604
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
605
|
+
Processing by APIController#index as HTML
|
606
|
+
Completed 500 Internal Server Error in 0ms
|
607
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
608
|
+
Processing by APIController#index as HTML
|
609
|
+
Completed 500 Internal Server Error in 0ms
|
610
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
611
|
+
Processing by APIController#index as HTML
|
612
|
+
Completed 500 Internal Server Error in 0ms
|
613
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
614
|
+
Processing by APIController#action as HTML
|
615
|
+
Completed 500 Internal Server Error in 0ms
|
616
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
617
|
+
Processing by APIController#action as HTML
|
618
|
+
Completed 500 Internal Server Error in 0ms
|
619
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
620
|
+
Processing by APIController#action as HTML
|
621
|
+
Completed 500 Internal Server Error in 0ms
|
622
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
623
|
+
Processing by APIController#action as HTML
|
624
|
+
Completed 500 Internal Server Error in 0ms
|
625
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
626
|
+
Processing by APIController#action as HTML
|
627
|
+
Completed 500 Internal Server Error in 0ms
|
628
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
|
629
|
+
Processing by APIController#action as HTML
|
630
|
+
Completed 500 Internal Server Error in 0ms
|
631
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
632
|
+
Processing by APIController#index as HTML
|
633
|
+
Completed 500 Internal Server Error in 0ms
|
634
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
635
|
+
Processing by APIController#index as HTML
|
636
|
+
Completed 500 Internal Server Error in 0ms
|
637
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
638
|
+
Processing by APIController#index as HTML
|
639
|
+
Completed 500 Internal Server Error in 0ms
|
640
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
641
|
+
Processing by APIController#index as HTML
|
642
|
+
Completed 500 Internal Server Error in 0ms
|
643
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
644
|
+
Processing by APIController#index as HTML
|
645
|
+
Completed 500 Internal Server Error in 0ms
|
646
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
647
|
+
Processing by APIController#index as HTML
|
648
|
+
Completed 500 Internal Server Error in 0ms
|
649
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
650
|
+
Processing by APIController#index as HTML
|
651
|
+
Completed 500 Internal Server Error in 0ms
|
652
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
653
|
+
Processing by APIController#index as HTML
|
654
|
+
Completed 500 Internal Server Error in 0ms
|
655
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
656
|
+
Processing by APIController#action as HTML
|
657
|
+
Completed 500 Internal Server Error in 0ms
|
658
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
659
|
+
Processing by APIController#action as HTML
|
660
|
+
Completed 500 Internal Server Error in 0ms
|
661
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
662
|
+
Processing by APIController#action as HTML
|
663
|
+
Completed 500 Internal Server Error in 0ms
|
664
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
665
|
+
Processing by APIController#action as HTML
|
666
|
+
Completed 500 Internal Server Error in 0ms
|
667
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
668
|
+
Processing by APIController#action as HTML
|
669
|
+
Completed 500 Internal Server Error in 0ms
|
670
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
|
671
|
+
Processing by APIController#action as HTML
|
672
|
+
Completed 500 Internal Server Error in 0ms
|
673
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
674
|
+
Processing by APIController#index as HTML
|
675
|
+
Completed 500 Internal Server Error in 0ms
|
676
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
677
|
+
Processing by APIController#index as HTML
|
678
|
+
Completed 500 Internal Server Error in 0ms
|
679
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
680
|
+
Processing by APIController#index as HTML
|
681
|
+
Completed 500 Internal Server Error in 0ms
|
682
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
683
|
+
Processing by APIController#index as HTML
|
684
|
+
Completed 500 Internal Server Error in 0ms
|
685
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
686
|
+
Processing by APIController#index as HTML
|
687
|
+
Completed 500 Internal Server Error in 0ms
|
688
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
689
|
+
Processing by APIController#index as HTML
|
690
|
+
Completed 500 Internal Server Error in 0ms
|
691
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
692
|
+
Processing by APIController#index as HTML
|
693
|
+
Completed 500 Internal Server Error in 0ms
|
694
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
695
|
+
Processing by APIController#index as HTML
|
696
|
+
Completed 500 Internal Server Error in 0ms
|
697
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
698
|
+
Processing by APIController#action as HTML
|
699
|
+
Completed 500 Internal Server Error in 0ms
|
700
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
701
|
+
Processing by APIController#action as HTML
|
702
|
+
Completed 500 Internal Server Error in 0ms
|
703
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
704
|
+
Processing by APIController#action as HTML
|
705
|
+
Completed 500 Internal Server Error in 0ms
|
706
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
707
|
+
Processing by APIController#action as HTML
|
708
|
+
Completed 500 Internal Server Error in 0ms
|
709
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
710
|
+
Processing by APIController#action as HTML
|
711
|
+
Completed 500 Internal Server Error in 0ms
|
712
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
|
713
|
+
Processing by APIController#action as HTML
|
714
|
+
Completed 500 Internal Server Error in 0ms
|
715
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
716
|
+
Processing by APIController#action as HTML
|
717
|
+
Completed 500 Internal Server Error in 0ms
|
718
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
719
|
+
Processing by APIController#action as HTML
|
720
|
+
Completed 500 Internal Server Error in 0ms
|
721
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
722
|
+
Processing by APIController#action as HTML
|
723
|
+
Completed 500 Internal Server Error in 0ms
|
724
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
725
|
+
Processing by APIController#action as HTML
|
726
|
+
Completed 500 Internal Server Error in 0ms
|
727
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
728
|
+
Processing by APIController#action as HTML
|
729
|
+
Completed 500 Internal Server Error in 0ms
|
730
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
731
|
+
Processing by APIController#action as HTML
|
732
|
+
Completed 500 Internal Server Error in 0ms
|
733
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
734
|
+
Processing by APIController#index as HTML
|
735
|
+
Completed 500 Internal Server Error in 0ms
|
736
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
737
|
+
Processing by APIController#index as HTML
|
738
|
+
Completed 500 Internal Server Error in 0ms
|
739
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
740
|
+
Processing by APIController#index as HTML
|
741
|
+
Completed 500 Internal Server Error in 0ms
|
742
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
743
|
+
Processing by APIController#index as HTML
|
744
|
+
Completed 500 Internal Server Error in 0ms
|
745
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
746
|
+
Processing by APIController#index as HTML
|
747
|
+
Completed 500 Internal Server Error in 0ms
|
748
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
749
|
+
Processing by APIController#index as HTML
|
750
|
+
Completed 500 Internal Server Error in 0ms
|
751
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
752
|
+
Processing by APIController#index as HTML
|
753
|
+
Completed 500 Internal Server Error in 0ms
|
754
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
|
755
|
+
Processing by APIController#index as HTML
|
756
|
+
Completed 500 Internal Server Error in 0ms
|
757
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
758
|
+
Processing by APIController#index as HTML
|
759
|
+
Completed 500 Internal Server Error in 0ms
|
760
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
761
|
+
Processing by APIController#index as HTML
|
762
|
+
Completed 500 Internal Server Error in 0ms
|
763
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
764
|
+
Processing by APIController#index as HTML
|
765
|
+
Completed 500 Internal Server Error in 0ms
|
766
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
767
|
+
Processing by APIController#index as HTML
|
768
|
+
Completed 500 Internal Server Error in 0ms
|
769
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
770
|
+
Processing by APIController#index as HTML
|
771
|
+
Completed 500 Internal Server Error in 0ms
|
772
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
773
|
+
Processing by APIController#index as HTML
|
774
|
+
Completed 500 Internal Server Error in 0ms
|
775
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
776
|
+
Processing by APIController#index as HTML
|
777
|
+
Completed 500 Internal Server Error in 0ms
|
778
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
779
|
+
Processing by APIController#index as HTML
|
780
|
+
Completed 500 Internal Server Error in 0ms
|
781
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
782
|
+
Processing by APIController#action as HTML
|
783
|
+
Completed 500 Internal Server Error in 0ms
|
784
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
785
|
+
Processing by APIController#action as HTML
|
786
|
+
Completed 500 Internal Server Error in 0ms
|
787
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
788
|
+
Processing by APIController#action as HTML
|
789
|
+
Completed 500 Internal Server Error in 0ms
|
790
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
791
|
+
Processing by APIController#action as HTML
|
792
|
+
Completed 500 Internal Server Error in 0ms
|
793
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
794
|
+
Processing by APIController#action as HTML
|
795
|
+
Completed 500 Internal Server Error in 0ms
|
796
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
|
797
|
+
Processing by APIController#action as HTML
|
798
|
+
Completed 500 Internal Server Error in 0ms
|
799
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
800
|
+
Processing by APIController#action as HTML
|
801
|
+
Completed 500 Internal Server Error in 0ms
|
802
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
803
|
+
Processing by APIController#action as HTML
|
804
|
+
Completed 500 Internal Server Error in 0ms
|
805
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
806
|
+
Processing by APIController#action as HTML
|
807
|
+
Completed 500 Internal Server Error in 0ms
|
808
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
809
|
+
Processing by APIController#action as HTML
|
810
|
+
Completed 500 Internal Server Error in 0ms
|
811
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
812
|
+
Processing by APIController#action as HTML
|
813
|
+
Completed 500 Internal Server Error in 0ms
|
814
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
815
|
+
Processing by APIController#action as HTML
|
816
|
+
Completed 500 Internal Server Error in 0ms
|
817
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
818
|
+
Processing by APIController#index as HTML
|
819
|
+
Completed 500 Internal Server Error in 0ms
|
820
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
821
|
+
Processing by APIController#index as HTML
|
822
|
+
Completed 500 Internal Server Error in 0ms
|
823
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
824
|
+
Processing by APIController#index as HTML
|
825
|
+
Completed 500 Internal Server Error in 0ms
|
826
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
827
|
+
Processing by APIController#index as HTML
|
828
|
+
Completed 500 Internal Server Error in 0ms
|
829
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
830
|
+
Processing by APIController#index as HTML
|
831
|
+
Completed 500 Internal Server Error in 0ms
|
832
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
833
|
+
Processing by APIController#index as HTML
|
834
|
+
Completed 500 Internal Server Error in 0ms
|
835
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
836
|
+
Processing by APIController#index as HTML
|
837
|
+
Completed 500 Internal Server Error in 0ms
|
838
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
|
839
|
+
Processing by APIController#index as HTML
|
840
|
+
Completed 500 Internal Server Error in 0ms
|
841
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
842
|
+
Processing by APIController#index as HTML
|
843
|
+
Completed 500 Internal Server Error in 0ms
|
844
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
845
|
+
Processing by APIController#index as HTML
|
846
|
+
Completed 500 Internal Server Error in 0ms
|
847
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
848
|
+
Processing by APIController#index as HTML
|
849
|
+
Completed 500 Internal Server Error in 0ms
|
850
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
851
|
+
Processing by APIController#index as HTML
|
852
|
+
Completed 500 Internal Server Error in 0ms
|
853
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
854
|
+
Processing by APIController#index as HTML
|
855
|
+
Completed 500 Internal Server Error in 0ms
|
856
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
857
|
+
Processing by APIController#index as HTML
|
858
|
+
Completed 500 Internal Server Error in 0ms
|
859
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
860
|
+
Processing by APIController#index as HTML
|
861
|
+
Completed 500 Internal Server Error in 0ms
|
862
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
863
|
+
Processing by APIController#index as HTML
|
864
|
+
Completed 500 Internal Server Error in 0ms
|
865
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
866
|
+
Processing by APIController#action as HTML
|
867
|
+
Completed 500 Internal Server Error in 0ms
|
868
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
869
|
+
Processing by APIController#action as HTML
|
870
|
+
Completed 500 Internal Server Error in 0ms
|
871
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
872
|
+
Processing by APIController#action as HTML
|
873
|
+
Completed 500 Internal Server Error in 0ms
|
874
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
875
|
+
Processing by APIController#action as HTML
|
876
|
+
Completed 500 Internal Server Error in 0ms
|
877
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
878
|
+
Processing by APIController#action as HTML
|
879
|
+
Completed 500 Internal Server Error in 0ms
|
880
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
|
881
|
+
Processing by APIController#action as HTML
|
882
|
+
Completed 500 Internal Server Error in 0ms
|
883
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
884
|
+
Processing by APIController#action as HTML
|
885
|
+
Completed 500 Internal Server Error in 0ms
|
886
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
887
|
+
Processing by APIController#action as HTML
|
888
|
+
Completed 500 Internal Server Error in 0ms
|
889
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
890
|
+
Processing by APIController#action as HTML
|
891
|
+
Completed 500 Internal Server Error in 0ms
|
892
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
893
|
+
Processing by APIController#action as HTML
|
894
|
+
Completed 500 Internal Server Error in 0ms
|
895
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
896
|
+
Processing by APIController#action as HTML
|
897
|
+
Completed 500 Internal Server Error in 0ms
|
898
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
899
|
+
Processing by APIController#action as HTML
|
900
|
+
Completed 500 Internal Server Error in 0ms
|
901
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
902
|
+
Processing by APIController#index as HTML
|
903
|
+
Completed 500 Internal Server Error in 0ms
|
904
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
905
|
+
Processing by APIController#index as HTML
|
906
|
+
Completed 500 Internal Server Error in 0ms
|
907
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
908
|
+
Processing by APIController#index as HTML
|
909
|
+
Completed 500 Internal Server Error in 0ms
|
910
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
911
|
+
Processing by APIController#index as HTML
|
912
|
+
Completed 500 Internal Server Error in 0ms
|
913
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
914
|
+
Processing by APIController#index as HTML
|
915
|
+
Completed 500 Internal Server Error in 0ms
|
916
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
917
|
+
Processing by APIController#index as HTML
|
918
|
+
Completed 500 Internal Server Error in 0ms
|
919
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
920
|
+
Processing by APIController#index as HTML
|
921
|
+
Completed 500 Internal Server Error in 0ms
|
922
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
|
923
|
+
Processing by APIController#index as HTML
|
924
|
+
Completed 500 Internal Server Error in 0ms
|
925
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
926
|
+
Processing by APIController#action as HTML
|
927
|
+
Completed 500 Internal Server Error in 1ms
|
928
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
929
|
+
Processing by APIController#action as HTML
|
930
|
+
Completed 500 Internal Server Error in 1ms
|
931
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
932
|
+
Processing by APIController#action as HTML
|
933
|
+
Completed 500 Internal Server Error in 1ms
|
934
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
935
|
+
Processing by APIController#action as HTML
|
936
|
+
Completed 500 Internal Server Error in 1ms
|
937
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
938
|
+
Processing by APIController#action as HTML
|
939
|
+
Completed 500 Internal Server Error in 1ms
|
940
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
941
|
+
Processing by APIController#action as HTML
|
942
|
+
Completed 500 Internal Server Error in 1ms
|
943
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
944
|
+
Processing by APIController#index as HTML
|
945
|
+
Completed 500 Internal Server Error in 1ms
|
946
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
947
|
+
Processing by APIController#index as HTML
|
948
|
+
Completed 500 Internal Server Error in 1ms
|
949
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
950
|
+
Processing by APIController#index as HTML
|
951
|
+
Completed 500 Internal Server Error in 1ms
|
952
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
953
|
+
Processing by APIController#index as HTML
|
954
|
+
Completed 500 Internal Server Error in 1ms
|
955
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
956
|
+
Processing by APIController#index as HTML
|
957
|
+
Completed 500 Internal Server Error in 1ms
|
958
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
959
|
+
Processing by APIController#index as HTML
|
960
|
+
Completed 500 Internal Server Error in 1ms
|
961
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
962
|
+
Processing by APIController#index as HTML
|
963
|
+
Completed 500 Internal Server Error in 1ms
|
964
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
|
965
|
+
Processing by APIController#index as HTML
|
966
|
+
Completed 500 Internal Server Error in 1ms
|
967
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
968
|
+
Processing by APIController#index as HTML
|
969
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
970
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
971
|
+
Processing by APIController#index as HTML
|
972
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
973
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
974
|
+
Processing by APIController#index as HTML
|
975
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
976
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
977
|
+
Processing by APIController#index as HTML
|
978
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
979
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
980
|
+
Processing by APIController#index as HTML
|
981
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
982
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
983
|
+
Processing by APIController#index as HTML
|
984
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
985
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
986
|
+
Processing by APIController#index as HTML
|
987
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
988
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
989
|
+
Processing by APIController#index as HTML
|
990
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
991
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
992
|
+
Processing by APIController#action as HTML
|
993
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
994
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
995
|
+
Processing by APIController#action as HTML
|
996
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
997
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
998
|
+
Processing by APIController#action as HTML
|
999
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1000
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
1001
|
+
Processing by APIController#action as HTML
|
1002
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1003
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
1004
|
+
Processing by APIController#action as HTML
|
1005
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1006
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
|
1007
|
+
Processing by APIController#action as HTML
|
1008
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1009
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1010
|
+
Processing by APIController#index as HTML
|
1011
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1012
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1013
|
+
Processing by APIController#index as HTML
|
1014
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1015
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1016
|
+
Processing by APIController#index as HTML
|
1017
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1018
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1019
|
+
Processing by APIController#index as HTML
|
1020
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1021
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1022
|
+
Processing by APIController#index as HTML
|
1023
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1024
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1025
|
+
Processing by APIController#index as HTML
|
1026
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1027
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1028
|
+
Processing by APIController#index as HTML
|
1029
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1030
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1031
|
+
Processing by APIController#index as HTML
|
1032
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1033
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1034
|
+
Processing by APIController#action as HTML
|
1035
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1036
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1037
|
+
Processing by APIController#action as HTML
|
1038
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1039
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1040
|
+
Processing by APIController#action as HTML
|
1041
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1042
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1043
|
+
Processing by APIController#action as HTML
|
1044
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1045
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1046
|
+
Processing by APIController#action as HTML
|
1047
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1048
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
|
1049
|
+
Processing by APIController#action as HTML
|
1050
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1051
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1052
|
+
Processing by APIController#index as HTML
|
1053
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1054
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1055
|
+
Processing by APIController#index as HTML
|
1056
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1057
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1058
|
+
Processing by APIController#index as HTML
|
1059
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1060
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1061
|
+
Processing by APIController#index as HTML
|
1062
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1063
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1064
|
+
Processing by APIController#index as HTML
|
1065
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1066
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1067
|
+
Processing by APIController#index as HTML
|
1068
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1069
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1070
|
+
Processing by APIController#index as HTML
|
1071
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1072
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1073
|
+
Processing by APIController#index as HTML
|
1074
|
+
Completed 200 OK in 2ms (Views: 0.1ms)
|
1075
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1076
|
+
Processing by APIController#action as HTML
|
1077
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1078
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1079
|
+
Processing by APIController#action as HTML
|
1080
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1081
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1082
|
+
Processing by APIController#action as HTML
|
1083
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1084
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1085
|
+
Processing by APIController#action as HTML
|
1086
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1087
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1088
|
+
Processing by APIController#action as HTML
|
1089
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1090
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
|
1091
|
+
Processing by APIController#action as HTML
|
1092
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1093
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1094
|
+
Processing by APIController#action as HTML
|
1095
|
+
Completed 500 Internal Server Error in 0ms
|
1096
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1097
|
+
Processing by APIController#action as HTML
|
1098
|
+
Completed 500 Internal Server Error in 0ms
|
1099
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1100
|
+
Processing by APIController#action as HTML
|
1101
|
+
Completed 500 Internal Server Error in 0ms
|
1102
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1103
|
+
Processing by APIController#action as HTML
|
1104
|
+
Completed 500 Internal Server Error in 0ms
|
1105
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1106
|
+
Processing by APIController#action as HTML
|
1107
|
+
Completed 500 Internal Server Error in 0ms
|
1108
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1109
|
+
Processing by APIController#action as HTML
|
1110
|
+
Completed 500 Internal Server Error in 0ms
|
1111
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1112
|
+
Processing by APIController#index as HTML
|
1113
|
+
Completed 500 Internal Server Error in 0ms
|
1114
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1115
|
+
Processing by APIController#index as HTML
|
1116
|
+
Completed 500 Internal Server Error in 0ms
|
1117
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1118
|
+
Processing by APIController#index as HTML
|
1119
|
+
Completed 500 Internal Server Error in 0ms
|
1120
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1121
|
+
Processing by APIController#index as HTML
|
1122
|
+
Completed 500 Internal Server Error in 0ms
|
1123
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1124
|
+
Processing by APIController#index as HTML
|
1125
|
+
Completed 500 Internal Server Error in 0ms
|
1126
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1127
|
+
Processing by APIController#index as HTML
|
1128
|
+
Completed 500 Internal Server Error in 0ms
|
1129
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1130
|
+
Processing by APIController#index as HTML
|
1131
|
+
Completed 500 Internal Server Error in 0ms
|
1132
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
|
1133
|
+
Processing by APIController#index as HTML
|
1134
|
+
Completed 500 Internal Server Error in 0ms
|
1135
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1136
|
+
Processing by APIController#index as HTML
|
1137
|
+
Completed 500 Internal Server Error in 0ms
|
1138
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1139
|
+
Processing by APIController#index as HTML
|
1140
|
+
Completed 500 Internal Server Error in 0ms
|
1141
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1142
|
+
Processing by APIController#index as HTML
|
1143
|
+
Completed 500 Internal Server Error in 0ms
|
1144
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1145
|
+
Processing by APIController#index as HTML
|
1146
|
+
Completed 500 Internal Server Error in 0ms
|
1147
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1148
|
+
Processing by APIController#index as HTML
|
1149
|
+
Completed 500 Internal Server Error in 0ms
|
1150
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1151
|
+
Processing by APIController#index as HTML
|
1152
|
+
Completed 500 Internal Server Error in 0ms
|
1153
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1154
|
+
Processing by APIController#index as HTML
|
1155
|
+
Completed 500 Internal Server Error in 0ms
|
1156
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1157
|
+
Processing by APIController#index as HTML
|
1158
|
+
Completed 500 Internal Server Error in 0ms
|
1159
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1160
|
+
Processing by APIController#action as HTML
|
1161
|
+
Completed 500 Internal Server Error in 0ms
|
1162
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1163
|
+
Processing by APIController#action as HTML
|
1164
|
+
Completed 500 Internal Server Error in 0ms
|
1165
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1166
|
+
Processing by APIController#action as HTML
|
1167
|
+
Completed 500 Internal Server Error in 0ms
|
1168
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1169
|
+
Processing by APIController#action as HTML
|
1170
|
+
Completed 500 Internal Server Error in 0ms
|
1171
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1172
|
+
Processing by APIController#action as HTML
|
1173
|
+
Completed 500 Internal Server Error in 0ms
|
1174
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
|
1175
|
+
Processing by APIController#action as HTML
|
1176
|
+
Completed 500 Internal Server Error in 0ms
|
1177
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1178
|
+
Processing by APIController#action as HTML
|
1179
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1180
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1181
|
+
Processing by APIController#action as HTML
|
1182
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1183
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1184
|
+
Processing by APIController#action as HTML
|
1185
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1186
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1187
|
+
Processing by APIController#action as HTML
|
1188
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1189
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1190
|
+
Processing by APIController#action as HTML
|
1191
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1192
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1193
|
+
Processing by APIController#action as HTML
|
1194
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1195
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1196
|
+
Processing by APIController#index as HTML
|
1197
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1198
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1199
|
+
Processing by APIController#index as HTML
|
1200
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1201
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1202
|
+
Processing by APIController#index as HTML
|
1203
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1204
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1205
|
+
Processing by APIController#index as HTML
|
1206
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1207
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1208
|
+
Processing by APIController#index as HTML
|
1209
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1210
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1211
|
+
Processing by APIController#index as HTML
|
1212
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1213
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1214
|
+
Processing by APIController#index as HTML
|
1215
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1216
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
|
1217
|
+
Processing by APIController#index as HTML
|
1218
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1219
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1220
|
+
Processing by APIController#action as HTML
|
1221
|
+
Completed 500 Internal Server Error in 1ms
|
1222
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1223
|
+
Processing by APIController#action as HTML
|
1224
|
+
Completed 500 Internal Server Error in 1ms
|
1225
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1226
|
+
Processing by APIController#action as HTML
|
1227
|
+
Completed 500 Internal Server Error in 1ms
|
1228
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1229
|
+
Processing by APIController#action as HTML
|
1230
|
+
Completed 500 Internal Server Error in 1ms
|
1231
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1232
|
+
Processing by APIController#action as HTML
|
1233
|
+
Completed 500 Internal Server Error in 1ms
|
1234
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1235
|
+
Processing by APIController#action as HTML
|
1236
|
+
Completed 500 Internal Server Error in 1ms
|
1237
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1238
|
+
Processing by APIController#index as HTML
|
1239
|
+
Completed 500 Internal Server Error in 1ms
|
1240
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1241
|
+
Processing by APIController#index as HTML
|
1242
|
+
Completed 500 Internal Server Error in 1ms
|
1243
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1244
|
+
Processing by APIController#index as HTML
|
1245
|
+
Completed 500 Internal Server Error in 1ms
|
1246
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1247
|
+
Processing by APIController#index as HTML
|
1248
|
+
Completed 500 Internal Server Error in 1ms
|
1249
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1250
|
+
Processing by APIController#index as HTML
|
1251
|
+
Completed 500 Internal Server Error in 1ms
|
1252
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1253
|
+
Processing by APIController#index as HTML
|
1254
|
+
Completed 500 Internal Server Error in 1ms
|
1255
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1256
|
+
Processing by APIController#index as HTML
|
1257
|
+
Completed 500 Internal Server Error in 1ms
|
1258
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
|
1259
|
+
Processing by APIController#index as HTML
|
1260
|
+
Completed 500 Internal Server Error in 1ms
|
1261
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1262
|
+
Processing by APIController#index as HTML
|
1263
|
+
Completed 500 Internal Server Error in 0ms
|
1264
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1265
|
+
Processing by APIController#index as HTML
|
1266
|
+
Completed 500 Internal Server Error in 0ms
|
1267
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1268
|
+
Processing by APIController#index as HTML
|
1269
|
+
Completed 500 Internal Server Error in 0ms
|
1270
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1271
|
+
Processing by APIController#index as HTML
|
1272
|
+
Completed 500 Internal Server Error in 0ms
|
1273
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1274
|
+
Processing by APIController#index as HTML
|
1275
|
+
Completed 500 Internal Server Error in 0ms
|
1276
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1277
|
+
Processing by APIController#index as HTML
|
1278
|
+
Completed 500 Internal Server Error in 0ms
|
1279
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1280
|
+
Processing by APIController#index as HTML
|
1281
|
+
Completed 500 Internal Server Error in 0ms
|
1282
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1283
|
+
Processing by APIController#index as HTML
|
1284
|
+
Completed 500 Internal Server Error in 0ms
|
1285
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1286
|
+
Processing by APIController#action as HTML
|
1287
|
+
Completed 500 Internal Server Error in 0ms
|
1288
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1289
|
+
Processing by APIController#action as HTML
|
1290
|
+
Completed 500 Internal Server Error in 0ms
|
1291
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1292
|
+
Processing by APIController#action as HTML
|
1293
|
+
Completed 500 Internal Server Error in 0ms
|
1294
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1295
|
+
Processing by APIController#action as HTML
|
1296
|
+
Completed 500 Internal Server Error in 0ms
|
1297
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1298
|
+
Processing by APIController#action as HTML
|
1299
|
+
Completed 500 Internal Server Error in 0ms
|
1300
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
|
1301
|
+
Processing by APIController#action as HTML
|
1302
|
+
Completed 500 Internal Server Error in 0ms
|
1303
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1304
|
+
Processing by APIController#index as HTML
|
1305
|
+
Completed 500 Internal Server Error in 1ms
|
1306
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1307
|
+
Processing by APIController#index as HTML
|
1308
|
+
Completed 500 Internal Server Error in 1ms
|
1309
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1310
|
+
Processing by APIController#index as HTML
|
1311
|
+
Completed 500 Internal Server Error in 1ms
|
1312
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1313
|
+
Processing by APIController#index as HTML
|
1314
|
+
Completed 500 Internal Server Error in 1ms
|
1315
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1316
|
+
Processing by APIController#index as HTML
|
1317
|
+
Completed 500 Internal Server Error in 1ms
|
1318
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1319
|
+
Processing by APIController#index as HTML
|
1320
|
+
Completed 500 Internal Server Error in 1ms
|
1321
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1322
|
+
Processing by APIController#index as HTML
|
1323
|
+
Completed 500 Internal Server Error in 1ms
|
1324
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1325
|
+
Processing by APIController#index as HTML
|
1326
|
+
Completed 500 Internal Server Error in 1ms
|
1327
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1328
|
+
Processing by APIController#action as HTML
|
1329
|
+
Completed 500 Internal Server Error in 1ms
|
1330
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1331
|
+
Processing by APIController#action as HTML
|
1332
|
+
Completed 500 Internal Server Error in 1ms
|
1333
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1334
|
+
Processing by APIController#action as HTML
|
1335
|
+
Completed 500 Internal Server Error in 1ms
|
1336
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1337
|
+
Processing by APIController#action as HTML
|
1338
|
+
Completed 500 Internal Server Error in 1ms
|
1339
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1340
|
+
Processing by APIController#action as HTML
|
1341
|
+
Completed 500 Internal Server Error in 1ms
|
1342
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
|
1343
|
+
Processing by APIController#action as HTML
|
1344
|
+
Completed 500 Internal Server Error in 1ms
|
1345
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1346
|
+
Processing by APIController#index as HTML
|
1347
|
+
Completed 500 Internal Server Error in 1ms
|
1348
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1349
|
+
Processing by APIController#index as HTML
|
1350
|
+
Completed 500 Internal Server Error in 1ms
|
1351
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1352
|
+
Processing by APIController#index as HTML
|
1353
|
+
Completed 500 Internal Server Error in 1ms
|
1354
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1355
|
+
Processing by APIController#index as HTML
|
1356
|
+
Completed 500 Internal Server Error in 1ms
|
1357
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1358
|
+
Processing by APIController#index as HTML
|
1359
|
+
Completed 500 Internal Server Error in 1ms
|
1360
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1361
|
+
Processing by APIController#index as HTML
|
1362
|
+
Completed 500 Internal Server Error in 2ms
|
1363
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1364
|
+
Processing by APIController#index as HTML
|
1365
|
+
Completed 500 Internal Server Error in 2ms
|
1366
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1367
|
+
Processing by APIController#index as HTML
|
1368
|
+
Completed 500 Internal Server Error in 2ms
|
1369
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1370
|
+
Processing by APIController#action as HTML
|
1371
|
+
Completed 500 Internal Server Error in 2ms
|
1372
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1373
|
+
Processing by APIController#action as HTML
|
1374
|
+
Completed 500 Internal Server Error in 2ms
|
1375
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1376
|
+
Processing by APIController#action as HTML
|
1377
|
+
Completed 500 Internal Server Error in 2ms
|
1378
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1379
|
+
Processing by APIController#action as HTML
|
1380
|
+
Completed 500 Internal Server Error in 1ms
|
1381
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1382
|
+
Processing by APIController#action as HTML
|
1383
|
+
Completed 500 Internal Server Error in 1ms
|
1384
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
|
1385
|
+
Processing by APIController#action as HTML
|
1386
|
+
Completed 500 Internal Server Error in 1ms
|
1387
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1388
|
+
Processing by APIController#action as HTML
|
1389
|
+
Completed 500 Internal Server Error in 1ms
|
1390
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1391
|
+
Processing by APIController#action as HTML
|
1392
|
+
Completed 500 Internal Server Error in 1ms
|
1393
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1394
|
+
Processing by APIController#action as HTML
|
1395
|
+
Completed 500 Internal Server Error in 1ms
|
1396
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1397
|
+
Processing by APIController#action as HTML
|
1398
|
+
Completed 500 Internal Server Error in 1ms
|
1399
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1400
|
+
Processing by APIController#action as HTML
|
1401
|
+
Completed 500 Internal Server Error in 1ms
|
1402
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1403
|
+
Processing by APIController#action as HTML
|
1404
|
+
Completed 500 Internal Server Error in 1ms
|
1405
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1406
|
+
Processing by APIController#index as HTML
|
1407
|
+
Completed 500 Internal Server Error in 1ms
|
1408
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1409
|
+
Processing by APIController#index as HTML
|
1410
|
+
Completed 500 Internal Server Error in 1ms
|
1411
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1412
|
+
Processing by APIController#index as HTML
|
1413
|
+
Completed 500 Internal Server Error in 1ms
|
1414
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1415
|
+
Processing by APIController#index as HTML
|
1416
|
+
Completed 500 Internal Server Error in 1ms
|
1417
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1418
|
+
Processing by APIController#index as HTML
|
1419
|
+
Completed 500 Internal Server Error in 1ms
|
1420
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1421
|
+
Processing by APIController#index as HTML
|
1422
|
+
Completed 500 Internal Server Error in 1ms
|
1423
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1424
|
+
Processing by APIController#index as HTML
|
1425
|
+
Completed 500 Internal Server Error in 1ms
|
1426
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
|
1427
|
+
Processing by APIController#index as HTML
|
1428
|
+
Completed 500 Internal Server Error in 1ms
|
1429
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1430
|
+
Processing by APIController#action as HTML
|
1431
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1432
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1433
|
+
Processing by APIController#action as HTML
|
1434
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1435
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1436
|
+
Processing by APIController#action as HTML
|
1437
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1438
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1439
|
+
Processing by APIController#action as HTML
|
1440
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1441
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1442
|
+
Processing by APIController#action as HTML
|
1443
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1444
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1445
|
+
Processing by APIController#action as HTML
|
1446
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1447
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1448
|
+
Processing by APIController#index as HTML
|
1449
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1450
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1451
|
+
Processing by APIController#index as HTML
|
1452
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1453
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1454
|
+
Processing by APIController#index as HTML
|
1455
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1456
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1457
|
+
Processing by APIController#index as HTML
|
1458
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1459
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1460
|
+
Processing by APIController#index as HTML
|
1461
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1462
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1463
|
+
Processing by APIController#index as HTML
|
1464
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1465
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1466
|
+
Processing by APIController#index as HTML
|
1467
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1468
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
|
1469
|
+
Processing by APIController#index as HTML
|
1470
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1471
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1472
|
+
Processing by APIController#index as HTML
|
1473
|
+
Completed 500 Internal Server Error in 1ms
|
1474
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1475
|
+
Processing by APIController#index as HTML
|
1476
|
+
Completed 500 Internal Server Error in 1ms
|
1477
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1478
|
+
Processing by APIController#index as HTML
|
1479
|
+
Completed 500 Internal Server Error in 1ms
|
1480
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1481
|
+
Processing by APIController#index as HTML
|
1482
|
+
Completed 500 Internal Server Error in 1ms
|
1483
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1484
|
+
Processing by APIController#index as HTML
|
1485
|
+
Completed 500 Internal Server Error in 1ms
|
1486
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1487
|
+
Processing by APIController#index as HTML
|
1488
|
+
Completed 500 Internal Server Error in 1ms
|
1489
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1490
|
+
Processing by APIController#index as HTML
|
1491
|
+
Completed 500 Internal Server Error in 1ms
|
1492
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1493
|
+
Processing by APIController#index as HTML
|
1494
|
+
Completed 500 Internal Server Error in 1ms
|
1495
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1496
|
+
Processing by APIController#action as HTML
|
1497
|
+
Completed 500 Internal Server Error in 1ms
|
1498
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1499
|
+
Processing by APIController#action as HTML
|
1500
|
+
Completed 500 Internal Server Error in 1ms
|
1501
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1502
|
+
Processing by APIController#action as HTML
|
1503
|
+
Completed 500 Internal Server Error in 1ms
|
1504
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1505
|
+
Processing by APIController#action as HTML
|
1506
|
+
Completed 500 Internal Server Error in 1ms
|
1507
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1508
|
+
Processing by APIController#action as HTML
|
1509
|
+
Completed 500 Internal Server Error in 1ms
|
1510
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
|
1511
|
+
Processing by APIController#action as HTML
|
1512
|
+
Completed 500 Internal Server Error in 1ms
|
1513
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1514
|
+
Processing by APIController#index as HTML
|
1515
|
+
Completed 500 Internal Server Error in 0ms
|
1516
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1517
|
+
Processing by APIController#index as HTML
|
1518
|
+
Completed 500 Internal Server Error in 0ms
|
1519
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1520
|
+
Processing by APIController#index as HTML
|
1521
|
+
Completed 500 Internal Server Error in 0ms
|
1522
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1523
|
+
Processing by APIController#index as HTML
|
1524
|
+
Completed 500 Internal Server Error in 0ms
|
1525
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1526
|
+
Processing by APIController#index as HTML
|
1527
|
+
Completed 500 Internal Server Error in 0ms
|
1528
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1529
|
+
Processing by APIController#index as HTML
|
1530
|
+
Completed 500 Internal Server Error in 0ms
|
1531
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1532
|
+
Processing by APIController#index as HTML
|
1533
|
+
Completed 500 Internal Server Error in 0ms
|
1534
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1535
|
+
Processing by APIController#index as HTML
|
1536
|
+
Completed 500 Internal Server Error in 0ms
|
1537
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1538
|
+
Processing by APIController#action as HTML
|
1539
|
+
Completed 500 Internal Server Error in 0ms
|
1540
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1541
|
+
Processing by APIController#action as HTML
|
1542
|
+
Completed 500 Internal Server Error in 0ms
|
1543
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1544
|
+
Processing by APIController#action as HTML
|
1545
|
+
Completed 500 Internal Server Error in 0ms
|
1546
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1547
|
+
Processing by APIController#action as HTML
|
1548
|
+
Completed 500 Internal Server Error in 0ms
|
1549
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1550
|
+
Processing by APIController#action as HTML
|
1551
|
+
Completed 500 Internal Server Error in 0ms
|
1552
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
|
1553
|
+
Processing by APIController#action as HTML
|
1554
|
+
Completed 500 Internal Server Error in 0ms
|
1555
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1556
|
+
Processing by APIController#action as HTML
|
1557
|
+
Completed 500 Internal Server Error in 0ms
|
1558
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1559
|
+
Processing by APIController#action as HTML
|
1560
|
+
Completed 500 Internal Server Error in 0ms
|
1561
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1562
|
+
Processing by APIController#action as HTML
|
1563
|
+
Completed 500 Internal Server Error in 0ms
|
1564
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1565
|
+
Processing by APIController#action as HTML
|
1566
|
+
Completed 500 Internal Server Error in 0ms
|
1567
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1568
|
+
Processing by APIController#action as HTML
|
1569
|
+
Completed 500 Internal Server Error in 0ms
|
1570
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1571
|
+
Processing by APIController#action as HTML
|
1572
|
+
Completed 500 Internal Server Error in 0ms
|
1573
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1574
|
+
Processing by APIController#index as HTML
|
1575
|
+
Completed 500 Internal Server Error in 0ms
|
1576
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1577
|
+
Processing by APIController#index as HTML
|
1578
|
+
Completed 500 Internal Server Error in 0ms
|
1579
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1580
|
+
Processing by APIController#index as HTML
|
1581
|
+
Completed 500 Internal Server Error in 0ms
|
1582
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1583
|
+
Processing by APIController#index as HTML
|
1584
|
+
Completed 500 Internal Server Error in 0ms
|
1585
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1586
|
+
Processing by APIController#index as HTML
|
1587
|
+
Completed 500 Internal Server Error in 0ms
|
1588
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1589
|
+
Processing by APIController#index as HTML
|
1590
|
+
Completed 500 Internal Server Error in 0ms
|
1591
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1592
|
+
Processing by APIController#index as HTML
|
1593
|
+
Completed 500 Internal Server Error in 0ms
|
1594
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
|
1595
|
+
Processing by APIController#index as HTML
|
1596
|
+
Completed 500 Internal Server Error in 0ms
|
1597
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1598
|
+
Processing by APIController#action as HTML
|
1599
|
+
Completed 500 Internal Server Error in 0ms
|
1600
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1601
|
+
Processing by APIController#action as HTML
|
1602
|
+
Completed 500 Internal Server Error in 0ms
|
1603
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1604
|
+
Processing by APIController#action as HTML
|
1605
|
+
Completed 500 Internal Server Error in 0ms
|
1606
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1607
|
+
Processing by APIController#action as HTML
|
1608
|
+
Completed 500 Internal Server Error in 0ms
|
1609
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1610
|
+
Processing by APIController#action as HTML
|
1611
|
+
Completed 500 Internal Server Error in 0ms
|
1612
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1613
|
+
Processing by APIController#action as HTML
|
1614
|
+
Completed 500 Internal Server Error in 0ms
|
1615
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1616
|
+
Processing by APIController#index as HTML
|
1617
|
+
Completed 500 Internal Server Error in 0ms
|
1618
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1619
|
+
Processing by APIController#index as HTML
|
1620
|
+
Completed 500 Internal Server Error in 0ms
|
1621
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1622
|
+
Processing by APIController#index as HTML
|
1623
|
+
Completed 500 Internal Server Error in 0ms
|
1624
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1625
|
+
Processing by APIController#index as HTML
|
1626
|
+
Completed 500 Internal Server Error in 0ms
|
1627
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1628
|
+
Processing by APIController#index as HTML
|
1629
|
+
Completed 500 Internal Server Error in 0ms
|
1630
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1631
|
+
Processing by APIController#index as HTML
|
1632
|
+
Completed 500 Internal Server Error in 0ms
|
1633
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1634
|
+
Processing by APIController#index as HTML
|
1635
|
+
Completed 500 Internal Server Error in 0ms
|
1636
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
|
1637
|
+
Processing by APIController#index as HTML
|
1638
|
+
Completed 500 Internal Server Error in 0ms
|
1639
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1640
|
+
Processing by APIController#action as HTML
|
1641
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1642
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1643
|
+
Processing by APIController#action as HTML
|
1644
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1645
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1646
|
+
Processing by APIController#action as HTML
|
1647
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1648
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1649
|
+
Processing by APIController#action as HTML
|
1650
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1651
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1652
|
+
Processing by APIController#action as HTML
|
1653
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1654
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1655
|
+
Processing by APIController#action as HTML
|
1656
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1657
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1658
|
+
Processing by APIController#index as HTML
|
1659
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1660
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1661
|
+
Processing by APIController#index as HTML
|
1662
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1663
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1664
|
+
Processing by APIController#index as HTML
|
1665
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1666
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1667
|
+
Processing by APIController#index as HTML
|
1668
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1669
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1670
|
+
Processing by APIController#index as HTML
|
1671
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1672
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1673
|
+
Processing by APIController#index as HTML
|
1674
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1675
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1676
|
+
Processing by APIController#index as HTML
|
1677
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1678
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
|
1679
|
+
Processing by APIController#index as HTML
|
1680
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1681
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1682
|
+
Processing by APIController#index as HTML
|
1683
|
+
Completed 500 Internal Server Error in 1ms
|
1684
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1685
|
+
Processing by APIController#index as HTML
|
1686
|
+
Completed 500 Internal Server Error in 0ms
|
1687
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1688
|
+
Processing by APIController#index as HTML
|
1689
|
+
Completed 500 Internal Server Error in 0ms
|
1690
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1691
|
+
Processing by APIController#index as HTML
|
1692
|
+
Completed 500 Internal Server Error in 0ms
|
1693
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1694
|
+
Processing by APIController#index as HTML
|
1695
|
+
Completed 500 Internal Server Error in 0ms
|
1696
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1697
|
+
Processing by APIController#index as HTML
|
1698
|
+
Completed 500 Internal Server Error in 0ms
|
1699
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1700
|
+
Processing by APIController#index as HTML
|
1701
|
+
Completed 500 Internal Server Error in 0ms
|
1702
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1703
|
+
Processing by APIController#index as HTML
|
1704
|
+
Completed 500 Internal Server Error in 0ms
|
1705
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1706
|
+
Processing by APIController#action as HTML
|
1707
|
+
Completed 500 Internal Server Error in 0ms
|
1708
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1709
|
+
Processing by APIController#action as HTML
|
1710
|
+
Completed 500 Internal Server Error in 0ms
|
1711
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1712
|
+
Processing by APIController#action as HTML
|
1713
|
+
Completed 500 Internal Server Error in 0ms
|
1714
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1715
|
+
Processing by APIController#action as HTML
|
1716
|
+
Completed 500 Internal Server Error in 0ms
|
1717
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1718
|
+
Processing by APIController#action as HTML
|
1719
|
+
Completed 500 Internal Server Error in 0ms
|
1720
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
|
1721
|
+
Processing by APIController#action as HTML
|
1722
|
+
Completed 500 Internal Server Error in 0ms
|
1723
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
|
1724
|
+
Processing by APIController#index as HTML
|
1725
|
+
Completed 500 Internal Server Error in 2ms
|
1726
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
|
1727
|
+
Processing by APIController#index as HTML
|
1728
|
+
Completed 500 Internal Server Error in 2ms
|
1729
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
|
1730
|
+
Processing by APIController#index as HTML
|
1731
|
+
Completed 500 Internal Server Error in 2ms
|
1732
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
|
1733
|
+
Processing by APIController#index as HTML
|
1734
|
+
Completed 500 Internal Server Error in 2ms
|
1735
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
|
1736
|
+
Processing by APIController#index as HTML
|
1737
|
+
Completed 500 Internal Server Error in 2ms
|
1738
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
|
1739
|
+
Processing by APIController#index as HTML
|
1740
|
+
Completed 500 Internal Server Error in 2ms
|
1741
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
|
1742
|
+
Processing by APIController#index as HTML
|
1743
|
+
Completed 500 Internal Server Error in 2ms
|
1744
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
|
1745
|
+
Processing by APIController#index as HTML
|
1746
|
+
Completed 500 Internal Server Error in 2ms
|
1747
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
|
1748
|
+
Processing by APIController#action as HTML
|
1749
|
+
Completed 500 Internal Server Error in 2ms
|
1750
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
|
1751
|
+
Processing by APIController#action as HTML
|
1752
|
+
Completed 500 Internal Server Error in 2ms
|
1753
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:44 +0200
|
1754
|
+
Processing by APIController#action as HTML
|
1755
|
+
Completed 500 Internal Server Error in 2ms
|
1756
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:44 +0200
|
1757
|
+
Processing by APIController#action as HTML
|
1758
|
+
Completed 500 Internal Server Error in 2ms
|
1759
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:44 +0200
|
1760
|
+
Processing by APIController#action as HTML
|
1761
|
+
Completed 500 Internal Server Error in 3ms
|
1762
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:44 +0200
|
1763
|
+
Processing by APIController#action as HTML
|
1764
|
+
Completed 500 Internal Server Error in 2ms
|
1765
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1766
|
+
Processing by APIController#index as HTML
|
1767
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1768
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1769
|
+
Processing by APIController#index as HTML
|
1770
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1771
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1772
|
+
Processing by APIController#index as HTML
|
1773
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1774
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1775
|
+
Processing by APIController#index as HTML
|
1776
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1777
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1778
|
+
Processing by APIController#index as HTML
|
1779
|
+
Completed 200 OK in 2ms (Views: 0.1ms)
|
1780
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1781
|
+
Processing by APIController#index as HTML
|
1782
|
+
Completed 200 OK in 2ms (Views: 0.1ms)
|
1783
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1784
|
+
Processing by APIController#index as HTML
|
1785
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1786
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1787
|
+
Processing by APIController#index as HTML
|
1788
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1789
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1790
|
+
Processing by APIController#action as HTML
|
1791
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1792
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1793
|
+
Processing by APIController#action as HTML
|
1794
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1795
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1796
|
+
Processing by APIController#action as HTML
|
1797
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1798
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1799
|
+
Processing by APIController#action as HTML
|
1800
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1801
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1802
|
+
Processing by APIController#action as HTML
|
1803
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1804
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
|
1805
|
+
Processing by APIController#action as HTML
|
1806
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1807
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1808
|
+
Processing by APIController#action as HTML
|
1809
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1810
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1811
|
+
Processing by APIController#action as HTML
|
1812
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1813
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1814
|
+
Processing by APIController#action as HTML
|
1815
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1816
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1817
|
+
Processing by APIController#action as HTML
|
1818
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1819
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1820
|
+
Processing by APIController#action as HTML
|
1821
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1822
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1823
|
+
Processing by APIController#action as HTML
|
1824
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1825
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1826
|
+
Processing by APIController#index as HTML
|
1827
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1828
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1829
|
+
Processing by APIController#index as HTML
|
1830
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1831
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1832
|
+
Processing by APIController#index as HTML
|
1833
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1834
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1835
|
+
Processing by APIController#index as HTML
|
1836
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1837
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1838
|
+
Processing by APIController#index as HTML
|
1839
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1840
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1841
|
+
Processing by APIController#index as HTML
|
1842
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1843
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1844
|
+
Processing by APIController#index as HTML
|
1845
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1846
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
|
1847
|
+
Processing by APIController#index as HTML
|
1848
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1849
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1850
|
+
Processing by APIController#index as HTML
|
1851
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1852
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1853
|
+
Processing by APIController#index as HTML
|
1854
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1855
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1856
|
+
Processing by APIController#index as HTML
|
1857
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1858
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1859
|
+
Processing by APIController#index as HTML
|
1860
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1861
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1862
|
+
Processing by APIController#index as HTML
|
1863
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1864
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1865
|
+
Processing by APIController#index as HTML
|
1866
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1867
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1868
|
+
Processing by APIController#index as HTML
|
1869
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1870
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1871
|
+
Processing by APIController#index as HTML
|
1872
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1873
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1874
|
+
Processing by APIController#action as HTML
|
1875
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1876
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1877
|
+
Processing by APIController#action as HTML
|
1878
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1879
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1880
|
+
Processing by APIController#action as HTML
|
1881
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1882
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1883
|
+
Processing by APIController#action as HTML
|
1884
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1885
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1886
|
+
Processing by APIController#action as HTML
|
1887
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1888
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
|
1889
|
+
Processing by APIController#action as HTML
|
1890
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1891
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1892
|
+
Processing by APIController#index as HTML
|
1893
|
+
Completed 500 Internal Server Error in 0ms
|
1894
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1895
|
+
Processing by APIController#index as HTML
|
1896
|
+
Completed 500 Internal Server Error in 0ms
|
1897
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1898
|
+
Processing by APIController#index as HTML
|
1899
|
+
Completed 500 Internal Server Error in 0ms
|
1900
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1901
|
+
Processing by APIController#index as HTML
|
1902
|
+
Completed 500 Internal Server Error in 0ms
|
1903
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1904
|
+
Processing by APIController#index as HTML
|
1905
|
+
Completed 500 Internal Server Error in 0ms
|
1906
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1907
|
+
Processing by APIController#index as HTML
|
1908
|
+
Completed 500 Internal Server Error in 0ms
|
1909
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1910
|
+
Processing by APIController#index as HTML
|
1911
|
+
Completed 500 Internal Server Error in 0ms
|
1912
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1913
|
+
Processing by APIController#index as HTML
|
1914
|
+
Completed 500 Internal Server Error in 0ms
|
1915
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1916
|
+
Processing by APIController#action as HTML
|
1917
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1918
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1919
|
+
Processing by APIController#action as HTML
|
1920
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1921
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1922
|
+
Processing by APIController#action as HTML
|
1923
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1924
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1925
|
+
Processing by APIController#action as HTML
|
1926
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1927
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1928
|
+
Processing by APIController#action as HTML
|
1929
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1930
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
|
1931
|
+
Processing by APIController#action as HTML
|
1932
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1933
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1934
|
+
Processing by APIController#index as HTML
|
1935
|
+
Completed 500 Internal Server Error in 0ms
|
1936
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1937
|
+
Processing by APIController#index as HTML
|
1938
|
+
Completed 500 Internal Server Error in 0ms
|
1939
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1940
|
+
Processing by APIController#index as HTML
|
1941
|
+
Completed 500 Internal Server Error in 0ms
|
1942
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1943
|
+
Processing by APIController#index as HTML
|
1944
|
+
Completed 500 Internal Server Error in 0ms
|
1945
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1946
|
+
Processing by APIController#index as HTML
|
1947
|
+
Completed 500 Internal Server Error in 0ms
|
1948
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1949
|
+
Processing by APIController#index as HTML
|
1950
|
+
Completed 500 Internal Server Error in 0ms
|
1951
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1952
|
+
Processing by APIController#index as HTML
|
1953
|
+
Completed 500 Internal Server Error in 0ms
|
1954
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1955
|
+
Processing by APIController#index as HTML
|
1956
|
+
Completed 500 Internal Server Error in 0ms
|
1957
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1958
|
+
Processing by APIController#action as HTML
|
1959
|
+
Completed 500 Internal Server Error in 0ms
|
1960
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1961
|
+
Processing by APIController#action as HTML
|
1962
|
+
Completed 500 Internal Server Error in 0ms
|
1963
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1964
|
+
Processing by APIController#action as HTML
|
1965
|
+
Completed 500 Internal Server Error in 0ms
|
1966
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1967
|
+
Processing by APIController#action as HTML
|
1968
|
+
Completed 500 Internal Server Error in 0ms
|
1969
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1970
|
+
Processing by APIController#action as HTML
|
1971
|
+
Completed 500 Internal Server Error in 0ms
|
1972
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
|
1973
|
+
Processing by APIController#action as HTML
|
1974
|
+
Completed 500 Internal Server Error in 0ms
|
1975
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
1976
|
+
Processing by APIController#index as HTML
|
1977
|
+
Completed 500 Internal Server Error in 0ms
|
1978
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
1979
|
+
Processing by APIController#index as HTML
|
1980
|
+
Completed 500 Internal Server Error in 0ms
|
1981
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
1982
|
+
Processing by APIController#index as HTML
|
1983
|
+
Completed 500 Internal Server Error in 0ms
|
1984
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
1985
|
+
Processing by APIController#index as HTML
|
1986
|
+
Completed 500 Internal Server Error in 0ms
|
1987
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
1988
|
+
Processing by APIController#index as HTML
|
1989
|
+
Completed 500 Internal Server Error in 0ms
|
1990
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
1991
|
+
Processing by APIController#index as HTML
|
1992
|
+
Completed 500 Internal Server Error in 0ms
|
1993
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
1994
|
+
Processing by APIController#index as HTML
|
1995
|
+
Completed 500 Internal Server Error in 0ms
|
1996
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
1997
|
+
Processing by APIController#index as HTML
|
1998
|
+
Completed 500 Internal Server Error in 0ms
|
1999
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
2000
|
+
Processing by APIController#action as HTML
|
2001
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2002
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
2003
|
+
Processing by APIController#action as HTML
|
2004
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
2005
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
2006
|
+
Processing by APIController#action as HTML
|
2007
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2008
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
2009
|
+
Processing by APIController#action as HTML
|
2010
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2011
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
2012
|
+
Processing by APIController#action as HTML
|
2013
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2014
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
|
2015
|
+
Processing by APIController#action as HTML
|
2016
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2017
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2018
|
+
Processing by APIController#action as HTML
|
2019
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2020
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2021
|
+
Processing by APIController#action as HTML
|
2022
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2023
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2024
|
+
Processing by APIController#action as HTML
|
2025
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2026
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2027
|
+
Processing by APIController#action as HTML
|
2028
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2029
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2030
|
+
Processing by APIController#action as HTML
|
2031
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2032
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2033
|
+
Processing by APIController#action as HTML
|
2034
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2035
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2036
|
+
Processing by APIController#index as HTML
|
2037
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2038
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2039
|
+
Processing by APIController#index as HTML
|
2040
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2041
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2042
|
+
Processing by APIController#index as HTML
|
2043
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2044
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2045
|
+
Processing by APIController#index as HTML
|
2046
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2047
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2048
|
+
Processing by APIController#index as HTML
|
2049
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2050
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2051
|
+
Processing by APIController#index as HTML
|
2052
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2053
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2054
|
+
Processing by APIController#index as HTML
|
2055
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2056
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
|
2057
|
+
Processing by APIController#index as HTML
|
2058
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2059
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2060
|
+
Processing by APIController#action as HTML
|
2061
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2062
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2063
|
+
Processing by APIController#action as HTML
|
2064
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2065
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2066
|
+
Processing by APIController#action as HTML
|
2067
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2068
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2069
|
+
Processing by APIController#action as HTML
|
2070
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2071
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2072
|
+
Processing by APIController#action as HTML
|
2073
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2074
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2075
|
+
Processing by APIController#action as HTML
|
2076
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2077
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2078
|
+
Processing by APIController#index as HTML
|
2079
|
+
Completed 200 OK in 2ms (Views: 0.1ms)
|
2080
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2081
|
+
Processing by APIController#index as HTML
|
2082
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
2083
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2084
|
+
Processing by APIController#index as HTML
|
2085
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
2086
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2087
|
+
Processing by APIController#index as HTML
|
2088
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
2089
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2090
|
+
Processing by APIController#index as HTML
|
2091
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2092
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2093
|
+
Processing by APIController#index as HTML
|
2094
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
2095
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2096
|
+
Processing by APIController#index as HTML
|
2097
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
2098
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
|
2099
|
+
Processing by APIController#index as HTML
|
2100
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
2101
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2102
|
+
Processing by APIController#action as HTML
|
2103
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2104
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2105
|
+
Processing by APIController#action as HTML
|
2106
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2107
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2108
|
+
Processing by APIController#action as HTML
|
2109
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2110
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2111
|
+
Processing by APIController#action as HTML
|
2112
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2113
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2114
|
+
Processing by APIController#action as HTML
|
2115
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2116
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2117
|
+
Processing by APIController#action as HTML
|
2118
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2119
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2120
|
+
Processing by APIController#index as HTML
|
2121
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2122
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2123
|
+
Processing by APIController#index as HTML
|
2124
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2125
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2126
|
+
Processing by APIController#index as HTML
|
2127
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2128
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2129
|
+
Processing by APIController#index as HTML
|
2130
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2131
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2132
|
+
Processing by APIController#index as HTML
|
2133
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2134
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2135
|
+
Processing by APIController#index as HTML
|
2136
|
+
Completed 200 OK in 2ms (Views: 0.1ms)
|
2137
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2138
|
+
Processing by APIController#index as HTML
|
2139
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2140
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
|
2141
|
+
Processing by APIController#index as HTML
|
2142
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2143
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2144
|
+
Processing by APIController#index as HTML
|
2145
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2146
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2147
|
+
Processing by APIController#index as HTML
|
2148
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2149
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2150
|
+
Processing by APIController#index as HTML
|
2151
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2152
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2153
|
+
Processing by APIController#index as HTML
|
2154
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2155
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2156
|
+
Processing by APIController#index as HTML
|
2157
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2158
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2159
|
+
Processing by APIController#index as HTML
|
2160
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2161
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2162
|
+
Processing by APIController#index as HTML
|
2163
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2164
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2165
|
+
Processing by APIController#index as HTML
|
2166
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2167
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2168
|
+
Processing by APIController#action as HTML
|
2169
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2170
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2171
|
+
Processing by APIController#action as HTML
|
2172
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2173
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2174
|
+
Processing by APIController#action as HTML
|
2175
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2176
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2177
|
+
Processing by APIController#action as HTML
|
2178
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2179
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2180
|
+
Processing by APIController#action as HTML
|
2181
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2182
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
|
2183
|
+
Processing by APIController#action as HTML
|
2184
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2185
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2186
|
+
Processing by APIController#index as HTML
|
2187
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2188
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2189
|
+
Processing by APIController#index as HTML
|
2190
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2191
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2192
|
+
Processing by APIController#index as HTML
|
2193
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2194
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2195
|
+
Processing by APIController#index as HTML
|
2196
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2197
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2198
|
+
Processing by APIController#index as HTML
|
2199
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2200
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2201
|
+
Processing by APIController#index as HTML
|
2202
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2203
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2204
|
+
Processing by APIController#index as HTML
|
2205
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2206
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2207
|
+
Processing by APIController#index as HTML
|
2208
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2209
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2210
|
+
Processing by APIController#action as HTML
|
2211
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2212
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2213
|
+
Processing by APIController#action as HTML
|
2214
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2215
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2216
|
+
Processing by APIController#action as HTML
|
2217
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2218
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2219
|
+
Processing by APIController#action as HTML
|
2220
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2221
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2222
|
+
Processing by APIController#action as HTML
|
2223
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2224
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
|
2225
|
+
Processing by APIController#action as HTML
|
2226
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2227
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2228
|
+
Processing by APIController#action as HTML
|
2229
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2230
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2231
|
+
Processing by APIController#action as HTML
|
2232
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2233
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2234
|
+
Processing by APIController#action as HTML
|
2235
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2236
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2237
|
+
Processing by APIController#action as HTML
|
2238
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2239
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2240
|
+
Processing by APIController#action as HTML
|
2241
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2242
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2243
|
+
Processing by APIController#action as HTML
|
2244
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2245
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2246
|
+
Processing by APIController#index as HTML
|
2247
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2248
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2249
|
+
Processing by APIController#index as HTML
|
2250
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2251
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2252
|
+
Processing by APIController#index as HTML
|
2253
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
2254
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2255
|
+
Processing by APIController#index as HTML
|
2256
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2257
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2258
|
+
Processing by APIController#index as HTML
|
2259
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2260
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2261
|
+
Processing by APIController#index as HTML
|
2262
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2263
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2264
|
+
Processing by APIController#index as HTML
|
2265
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2266
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
|
2267
|
+
Processing by APIController#index as HTML
|
2268
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2269
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2270
|
+
Processing by APIController#index as HTML
|
2271
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2272
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2273
|
+
Processing by APIController#index as HTML
|
2274
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2275
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2276
|
+
Processing by APIController#index as HTML
|
2277
|
+
Completed 200 OK in 2ms (Views: 0.1ms)
|
2278
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2279
|
+
Processing by APIController#index as HTML
|
2280
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2281
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2282
|
+
Processing by APIController#index as HTML
|
2283
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2284
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2285
|
+
Processing by APIController#index as HTML
|
2286
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2287
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2288
|
+
Processing by APIController#index as HTML
|
2289
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2290
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2291
|
+
Processing by APIController#index as HTML
|
2292
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2293
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2294
|
+
Processing by APIController#action as HTML
|
2295
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2296
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2297
|
+
Processing by APIController#action as HTML
|
2298
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2299
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2300
|
+
Processing by APIController#action as HTML
|
2301
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2302
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2303
|
+
Processing by APIController#action as HTML
|
2304
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2305
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2306
|
+
Processing by APIController#action as HTML
|
2307
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2308
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
|
2309
|
+
Processing by APIController#action as HTML
|
2310
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2311
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2312
|
+
Processing by APIController#action as HTML
|
2313
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
2314
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2315
|
+
Processing by APIController#action as HTML
|
2316
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2317
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2318
|
+
Processing by APIController#action as HTML
|
2319
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2320
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2321
|
+
Processing by APIController#action as HTML
|
2322
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2323
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2324
|
+
Processing by APIController#action as HTML
|
2325
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2326
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2327
|
+
Processing by APIController#action as HTML
|
2328
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2329
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2330
|
+
Processing by APIController#index as HTML
|
2331
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2332
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2333
|
+
Processing by APIController#index as HTML
|
2334
|
+
Completed 200 OK in 6ms (Views: 0.1ms)
|
2335
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2336
|
+
Processing by APIController#index as HTML
|
2337
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2338
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2339
|
+
Processing by APIController#index as HTML
|
2340
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2341
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2342
|
+
Processing by APIController#index as HTML
|
2343
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2344
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2345
|
+
Processing by APIController#index as HTML
|
2346
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2347
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2348
|
+
Processing by APIController#index as HTML
|
2349
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2350
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
|
2351
|
+
Processing by APIController#index as HTML
|
2352
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2353
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2354
|
+
Processing by APIController#index as HTML
|
2355
|
+
Completed 200 OK in 4ms (Views: 0.6ms)
|
2356
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2357
|
+
Processing by APIController#index as HTML
|
2358
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
2359
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2360
|
+
Processing by APIController#index as HTML
|
2361
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
2362
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2363
|
+
Processing by APIController#index as HTML
|
2364
|
+
Completed 200 OK in 5ms (Views: 0.4ms)
|
2365
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2366
|
+
Processing by APIController#index as HTML
|
2367
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
2368
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2369
|
+
Processing by APIController#index as HTML
|
2370
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
2371
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2372
|
+
Processing by APIController#index as HTML
|
2373
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
2374
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2375
|
+
Processing by APIController#index as HTML
|
2376
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
2377
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2378
|
+
Processing by APIController#action as HTML
|
2379
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
2380
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2381
|
+
Processing by APIController#action as HTML
|
2382
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2383
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2384
|
+
Processing by APIController#action as HTML
|
2385
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
2386
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2387
|
+
Processing by APIController#action as HTML
|
2388
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
2389
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2390
|
+
Processing by APIController#action as HTML
|
2391
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2392
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
|
2393
|
+
Processing by APIController#action as HTML
|
2394
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2395
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2396
|
+
Processing by APIController#action as HTML
|
2397
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
2398
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2399
|
+
Processing by APIController#action as HTML
|
2400
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2401
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2402
|
+
Processing by APIController#action as HTML
|
2403
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2404
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2405
|
+
Processing by APIController#action as HTML
|
2406
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2407
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2408
|
+
Processing by APIController#action as HTML
|
2409
|
+
Completed 200 OK in 2ms (Views: 0.1ms)
|
2410
|
+
Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2411
|
+
Processing by APIController#action as HTML
|
2412
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2413
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2414
|
+
Processing by APIController#index as HTML
|
2415
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2416
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2417
|
+
Processing by APIController#index as HTML
|
2418
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2419
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2420
|
+
Processing by APIController#index as HTML
|
2421
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2422
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2423
|
+
Processing by APIController#index as HTML
|
2424
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2425
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2426
|
+
Processing by APIController#index as HTML
|
2427
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2428
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2429
|
+
Processing by APIController#index as HTML
|
2430
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
2431
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2432
|
+
Processing by APIController#index as HTML
|
2433
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
2434
|
+
Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
|
2435
|
+
Processing by APIController#index as HTML
|
2436
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|