rails-rfc6570 2.0.0 → 2.5.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.
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rails
4
+ module RFC6570
5
+ class Formatter
6
+ attr_reader :route
7
+
8
+ def initialize(route)
9
+ @route = route
10
+ @parts = Visitor.new(factory: method(:symbol)).accept(route.path.spec)
11
+ end
12
+
13
+ def evaluate(ignore: %w[format], ctx:, **kwargs)
14
+ parts = @parts.reject do |part|
15
+ part.is_a?(Subst) && ignore.include?(part.name)
16
+ end
17
+
18
+ if kwargs.fetch(:params, true) && route
19
+ controller = route.defaults[:controller].to_s
20
+ action = route.defaults[:action].to_s
21
+
22
+ if controller.present? && action.present?
23
+ params = ::Rails::RFC6570.params_for(controller, action)
24
+ parts << '{?' + params.join(',') + '}' if params&.any?
25
+ end
26
+ end
27
+
28
+ if kwargs.fetch(:path_only, false)
29
+ ::Addressable::Template.new parts.join
30
+ else
31
+ options = ctx.url_options.merge(kwargs)
32
+ options[:path] = parts.join
33
+
34
+ if (osn = options.delete(:original_script_name))
35
+ options[:script_name] = osn + options[:script_name]
36
+ end
37
+
38
+ ::Addressable::Template.new \
39
+ ActionDispatch::Http::URL.url_for(options)
40
+ end
41
+ end
42
+
43
+ def symbol(node, prefix: nil, suffix: nil)
44
+ Subst.new(node.name, "{#{prefix}#{node.name}#{suffix}}")
45
+ end
46
+
47
+ Subst = Struct.new(:name, :string) do
48
+ alias_method :to_s, :string
49
+ end
50
+ end
51
+ end
52
+ end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'addressable/uri'
2
4
  require 'addressable/template'
3
5
 
@@ -1,8 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Rails
2
4
  module RFC6570
3
5
  module VERSION
4
6
  MAJOR = 2
5
- MINOR = 0
7
+ MINOR = 5
6
8
  PATCH = 0
7
9
  STAGE = nil
8
10
 
@@ -0,0 +1,119 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rails
4
+ module RFC6570
5
+ class Visitor < ::ActionDispatch::Journey::Visitors::Visitor
6
+ DISPATCH_CACHE = {} # rubocop:disable Style/MutableConstant
7
+
8
+ def initialize(factory: nil)
9
+ super()
10
+
11
+ @stack = []
12
+ @factory = factory || method(:symbolize)
13
+ end
14
+
15
+ def accept(node)
16
+ Array(visit(node)).flatten
17
+ end
18
+
19
+ def visit(node)
20
+ @stack.unshift node.type
21
+ send DISPATCH_CACHE.fetch(node.type), node
22
+ ensure
23
+ @stack.shift
24
+ end
25
+
26
+ def terminal(node)
27
+ node.left
28
+ end
29
+
30
+ # rubocop:disable Naming/MethodName
31
+ def visit_CAT(node)
32
+ if (mth = DISPATCH_CACHE[:"#{node.left.type}_#{node.right.type}"])
33
+ send mth, node.left, node.right
34
+ else
35
+ [visit(node.left), visit(node.right)]
36
+ end
37
+ end
38
+
39
+ def visit_LITERAL(node)
40
+ terminal(node)
41
+ end
42
+
43
+ def visit_SLASH(node)
44
+ terminal(node)
45
+ end
46
+
47
+ def visit_DOT(node)
48
+ terminal(node)
49
+ end
50
+
51
+ def visit_SYMBOL(node)
52
+ symbol(node)
53
+ end
54
+
55
+ def visit_OR(_node)
56
+ raise 'OR nodes cannot be serialized to URI templates'
57
+ end
58
+
59
+ def visit_GROUP(node)
60
+ # if @stack.include?(:GROUP) && @stack[1..-1].include?(:GROUP)
61
+ # raise 'Cannot transform nested groups.'
62
+ # end
63
+
64
+ visit node.left
65
+ end
66
+
67
+ def visit_DOT_SYMBOL(dot, node)
68
+ if @stack[0..1] == %i[CAT GROUP]
69
+ symbol(node, prefix: '.')
70
+ else
71
+ [visit(dot), visit(node)]
72
+ end
73
+ end
74
+
75
+ def visit_SLASH_SYMBOL(slash, node)
76
+ if @stack[0..1] == %i[CAT GROUP]
77
+ symbol(node, prefix: '/')
78
+ else
79
+ [visit(slash), visit(node)]
80
+ end
81
+ end
82
+
83
+ def visit_SLASH_CAT(slash, cat)
84
+ if cat.left.type == :STAR
85
+ [symbol(cat.left.left, prefix: '/', suffix: '*'), visit(cat.right)]
86
+ elsif cat.left.type == :SYMBOL && @stack[0..1] == %i[CAT GROUP]
87
+ [symbol(cat.left, prefix: '/'), visit(cat.right)]
88
+ else
89
+ [visit(slash), visit(cat)]
90
+ end
91
+ end
92
+
93
+ def visit_SLASH_STAR(_slash, star)
94
+ symbol(star.left, prefix: '/', suffix: '*')
95
+ end
96
+
97
+ def visit_STAR_CAT(star, cat)
98
+ [symbol(star.left, prefix: '/', suffix: '*'), visit(cat)]
99
+ end
100
+ # rubocop:enable Naming/MethodName
101
+
102
+ instance_methods(true).each do |meth|
103
+ next unless meth =~ /^visit_(.*)$/
104
+
105
+ DISPATCH_CACHE[Regexp.last_match(1).to_sym] = meth
106
+ end
107
+
108
+ private
109
+
110
+ def symbol(node, **kwargs)
111
+ @factory.call(node, **kwargs)
112
+ end
113
+
114
+ def symbolize(node, prefix: nil, suffix: nil)
115
+ "{#{prefix}#{node.name}#{suffix}}"
116
+ end
117
+ end
118
+ end
119
+ end
@@ -1,5 +1,6 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
5
  require 'rails/rfc6570/version'
5
6
 
@@ -7,22 +8,22 @@ Gem::Specification.new do |spec|
7
8
  spec.name = 'rails-rfc6570'
8
9
  spec.version = Rails::RFC6570::VERSION
9
10
  spec.authors = ['Jan Graichen']
10
- spec.email = ['jg@altimos.de']
11
- spec.summary = %q(Pragmatical access to your Rails routes as RFC6570 URI templates.)
12
- spec.description = %q(Pragmatical access to your Rails routes as RFC6570 URI templates.)
11
+ spec.email = ['jgraichen@altimos.de']
12
+ spec.summary = 'Pragmatical access to your Rails routes as ' \
13
+ 'RFC6570 URI templates.'
13
14
  spec.homepage = 'https://github.com/jgraichen/rails-rfc6570'
14
15
  spec.license = 'MIT'
15
16
 
16
- spec.files = Dir['**/*'].grep(/^(
17
- (bin|lib|test|spec|features)\/|
17
+ spec.files = Dir['**/*'].grep(%r{^(
18
+ (bin|lib|test|spec|features)/|
18
19
  (.*\.gemspec|.*LICENSE.*|.*README.*|.*CHANGELOG.*)
19
- )/x)
20
- spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
21
- spec.test_files = spec.files.grep(/^(test|spec|features)\//)
20
+ )}x)
21
+ spec.executables = spec.files.grep(%r{^bin/}) {|f| File.basename(f) }
22
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
22
23
  spec.require_paths = ['lib']
23
24
 
24
- spec.add_runtime_dependency 'actionpack', '>= 4.2', '< 5.2'
25
+ spec.add_runtime_dependency 'actionpack', '>= 4.2', '< 6.2'
25
26
  spec.add_runtime_dependency 'addressable', '~> 2.3'
26
27
 
27
- spec.add_development_dependency 'bundler', '~> 1.5'
28
+ spec.add_development_dependency 'bundler'
28
29
  end
@@ -1,985 +1,3012 @@
1
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
1
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
2
2
  Processing by APIController#action as HTML
3
+ Completed 200 OK in 2ms (Views: 0.2ms)
4
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
5
+ Processing by APIController#action as HTML
6
+ Completed 200 OK in 1ms (Views: 0.1ms)
7
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
8
+ Processing by APIController#action as HTML
9
+ Completed 200 OK in 1ms (Views: 0.1ms)
10
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
11
+ Processing by APIController#action as HTML
12
+ Completed 200 OK in 1ms (Views: 0.1ms)
13
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
14
+ Processing by APIController#action as HTML
15
+ Completed 200 OK in 1ms (Views: 0.1ms)
16
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
17
+ Processing by APIController#action as HTML
18
+ Completed 200 OK in 1ms (Views: 0.1ms)
19
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
20
+ Processing by APIController#index as HTML
21
+ Completed 200 OK in 2ms (Views: 0.2ms)
22
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
23
+ Processing by APIController#index as HTML
24
+ Completed 200 OK in 1ms (Views: 0.2ms)
25
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
26
+ Processing by APIController#index as HTML
27
+ Completed 200 OK in 1ms (Views: 0.1ms)
28
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
29
+ Processing by APIController#index as HTML
30
+ Completed 200 OK in 1ms (Views: 0.1ms)
31
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
32
+ Processing by APIController#index as HTML
33
+ Completed 200 OK in 5ms (Views: 0.1ms)
34
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
35
+ Processing by APIController#index as HTML
36
+ Completed 200 OK in 1ms (Views: 0.2ms)
37
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
38
+ Processing by APIController#index as HTML
39
+ Completed 200 OK in 1ms (Views: 0.1ms)
40
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
41
+ Processing by APIController#index as HTML
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
3
1674
  Completed 200 OK in 1ms (Views: 0.2ms)
4
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
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
5
1790
  Processing by APIController#action as HTML
6
1791
  Completed 200 OK in 1ms (Views: 0.1ms)
7
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
1792
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
8
1793
  Processing by APIController#action as HTML
9
1794
  Completed 200 OK in 1ms (Views: 0.1ms)
10
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
1795
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
11
1796
  Processing by APIController#action as HTML
12
1797
  Completed 200 OK in 1ms (Views: 0.1ms)
13
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
1798
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
14
1799
  Processing by APIController#action as HTML
15
1800
  Completed 200 OK in 1ms (Views: 0.1ms)
16
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
1801
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
17
1802
  Processing by APIController#action as HTML
18
1803
  Completed 200 OK in 1ms (Views: 0.1ms)
19
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
20
- Processing by APIController#index as HTML
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
21
1815
  Completed 200 OK in 1ms (Views: 0.1ms)
22
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
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
23
1826
  Processing by APIController#index as HTML
24
1827
  Completed 200 OK in 1ms (Views: 0.1ms)
25
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
1828
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
26
1829
  Processing by APIController#index as HTML
27
- Completed 200 OK in 1ms (Views: 0.2ms)
28
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
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
29
1832
  Processing by APIController#index as HTML
30
1833
  Completed 200 OK in 1ms (Views: 0.1ms)
31
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
1834
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
32
1835
  Processing by APIController#index as HTML
33
1836
  Completed 200 OK in 1ms (Views: 0.1ms)
34
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
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
35
1841
  Processing by APIController#index as HTML
36
1842
  Completed 200 OK in 1ms (Views: 0.1ms)
37
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
1843
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
38
1844
  Processing by APIController#index as HTML
39
1845
  Completed 200 OK in 1ms (Views: 0.1ms)
40
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:53:43 +0100
1846
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
41
1847
  Processing by APIController#index as HTML
42
- Completed 200 OK in 1ms (Views: 0.2ms)
43
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
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
44
1850
  Processing by APIController#index as HTML
45
1851
  Completed 200 OK in 2ms (Views: 0.2ms)
46
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
1852
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
47
1853
  Processing by APIController#index as HTML
48
- Completed 200 OK in 3ms (Views: 0.4ms)
49
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
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
50
1856
  Processing by APIController#index as HTML
51
- Completed 200 OK in 1ms (Views: 0.2ms)
52
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
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
53
1859
  Processing by APIController#index as HTML
54
1860
  Completed 200 OK in 1ms (Views: 0.1ms)
55
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
1861
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
56
1862
  Processing by APIController#index as HTML
57
- Completed 200 OK in 1ms (Views: 0.2ms)
58
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
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
59
1865
  Processing by APIController#index as HTML
60
1866
  Completed 200 OK in 1ms (Views: 0.1ms)
61
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
1867
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
62
1868
  Processing by APIController#index as HTML
63
- Completed 200 OK in 1ms (Views: 0.2ms)
64
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
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
65
1871
  Processing by APIController#index as HTML
66
1872
  Completed 200 OK in 1ms (Views: 0.1ms)
67
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
1873
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
68
1874
  Processing by APIController#action as HTML
69
1875
  Completed 200 OK in 1ms (Views: 0.1ms)
70
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
1876
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
71
1877
  Processing by APIController#action as HTML
72
1878
  Completed 200 OK in 1ms (Views: 0.1ms)
73
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
1879
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
74
1880
  Processing by APIController#action as HTML
75
1881
  Completed 200 OK in 1ms (Views: 0.1ms)
76
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
1882
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
77
1883
  Processing by APIController#action as HTML
78
1884
  Completed 200 OK in 1ms (Views: 0.1ms)
79
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
1885
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
80
1886
  Processing by APIController#action as HTML
81
1887
  Completed 200 OK in 1ms (Views: 0.1ms)
82
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:06 +0100
83
- Processing by APIController#action as HTML
84
- Completed 200 OK in 1ms (Views: 0.2ms)
85
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
86
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
87
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
88
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
89
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
90
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
91
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
92
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
93
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
94
- Processing by APIController#action as HTML
95
- Completed 500 Internal Server Error in 6ms
96
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
97
- Processing by APIController#action as HTML
98
- Completed 500 Internal Server Error in 5ms
99
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
1888
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
100
1889
  Processing by APIController#action as HTML
101
- Completed 500 Internal Server Error in 5ms
102
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
103
- Processing by APIController#action as HTML
104
- Completed 500 Internal Server Error in 5ms
105
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
106
- Processing by APIController#action as HTML
107
- Completed 500 Internal Server Error in 5ms
108
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:54:43 +0100
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
109
1916
  Processing by APIController#action as HTML
110
- Completed 500 Internal Server Error in 6ms
111
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
112
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
113
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
114
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
115
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
116
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
117
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
118
- Started GET "/" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
119
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
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
120
1919
  Processing by APIController#action as HTML
121
1920
  Completed 200 OK in 1ms (Views: 0.2ms)
122
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
1921
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
123
1922
  Processing by APIController#action as HTML
124
- Completed 200 OK in 1ms (Views: 0.1ms)
125
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
126
- Processing by APIController#action as HTML
127
- Completed 200 OK in 1ms (Views: 0.1ms)
128
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
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
129
1925
  Processing by APIController#action as HTML
130
1926
  Completed 200 OK in 1ms (Views: 0.1ms)
131
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
1927
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
132
1928
  Processing by APIController#action as HTML
133
1929
  Completed 200 OK in 1ms (Views: 0.1ms)
134
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:55:16 +0100
1930
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
135
1931
  Processing by APIController#action as HTML
136
1932
  Completed 200 OK in 1ms (Views: 0.1ms)
137
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:55:40 +0100
138
- Processing by APIController#action as HTML
139
- Completed 500 Internal Server Error in 1ms
140
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:55:47 +0100
141
- Processing by APIController#action as HTML
142
- Completed 500 Internal Server Error in 1ms
143
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:55:59 +0100
144
- Processing by APIController#action as HTML
145
- Completed 500 Internal Server Error in 126338ms
146
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:59:08 +0100
147
- Processing by APIController#action as HTML
1933
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1934
+ Processing by APIController#index as HTML
148
1935
  Completed 500 Internal Server Error in 0ms
149
- Started GET "/action" for 127.0.0.1 at 2017-02-21 14:59:34 +0100
150
- Processing by APIController#action as HTML
151
- Completed 500 Internal Server Error in 287312ms
152
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:04:23 +0100
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
153
1958
  Processing by APIController#action as HTML
154
- Completed 500 Internal Server Error in 142703ms
155
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:07:05 +0100
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
156
1961
  Processing by APIController#action as HTML
157
- Completed 500 Internal Server Error in 76732ms
158
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:08:35 +0100
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
159
1964
  Processing by APIController#action as HTML
160
- Completed 500 Internal Server Error in 8290ms
161
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:08:51 +0100
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
162
1967
  Processing by APIController#action as HTML
163
- Completed 500 Internal Server Error in 34800ms
164
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:11:33 +0100
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
165
1970
  Processing by APIController#action as HTML
166
1971
  Completed 500 Internal Server Error in 0ms
167
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:12:17 +0100
1972
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
168
1973
  Processing by APIController#action as HTML
169
- Completed 200 OK in 1ms (Views: 0.2ms)
170
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:12:22 +0100
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
171
2000
  Processing by APIController#action as HTML
172
- Completed 200 OK in 1ms (Views: 0.2ms)
173
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
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
174
2003
  Processing by APIController#action as HTML
175
- Completed 200 OK in 1ms (Views: 0.2ms)
176
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
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
177
2006
  Processing by APIController#action as HTML
178
2007
  Completed 200 OK in 1ms (Views: 0.2ms)
179
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
2008
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
180
2009
  Processing by APIController#action as HTML
181
2010
  Completed 200 OK in 1ms (Views: 0.1ms)
182
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
2011
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
183
2012
  Processing by APIController#action as HTML
184
2013
  Completed 200 OK in 1ms (Views: 0.1ms)
185
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
2014
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
186
2015
  Processing by APIController#action as HTML
187
2016
  Completed 200 OK in 1ms (Views: 0.1ms)
188
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
2017
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
189
2018
  Processing by APIController#action as HTML
190
- Completed 200 OK in 1ms (Views: 0.1ms)
191
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
192
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
193
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
194
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
195
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
196
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
197
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
198
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:12:38 +0100
199
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
200
- Processing by APIController#action as HTML
201
- Completed 200 OK in 1ms (Views: 0.2ms)
202
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
203
- Processing by APIController#action as HTML
204
- Completed 200 OK in 1ms (Views: 0.2ms)
205
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
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
206
2021
  Processing by APIController#action as HTML
207
2022
  Completed 200 OK in 1ms (Views: 0.1ms)
208
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
2023
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
209
2024
  Processing by APIController#action as HTML
210
2025
  Completed 200 OK in 1ms (Views: 0.1ms)
211
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
2026
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
212
2027
  Processing by APIController#action as HTML
213
2028
  Completed 200 OK in 1ms (Views: 0.1ms)
214
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
2029
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
215
2030
  Processing by APIController#action as HTML
216
2031
  Completed 200 OK in 1ms (Views: 0.1ms)
217
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
218
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
219
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
220
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
221
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
222
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
223
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
224
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:38 +0100
225
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
226
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
227
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
228
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
229
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
230
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
231
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
232
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
233
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
2032
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
234
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
235
2043
  Completed 200 OK in 1ms (Views: 0.2ms)
236
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
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
237
2060
  Processing by APIController#action as HTML
238
- Completed 200 OK in 1ms (Views: 0.3ms)
239
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
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
240
2063
  Processing by APIController#action as HTML
241
- Completed 200 OK in 1ms (Views: 0.2ms)
242
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
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
243
2066
  Processing by APIController#action as HTML
244
2067
  Completed 200 OK in 1ms (Views: 0.1ms)
245
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
2068
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
246
2069
  Processing by APIController#action as HTML
247
- Completed 200 OK in 1ms (Views: 0.2ms)
248
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:42 +0100
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
249
2072
  Processing by APIController#action as HTML
250
- Completed 200 OK in 1ms (Views: 0.2ms)
251
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
252
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
253
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
254
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
255
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
256
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
257
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
258
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
259
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
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
260
2075
  Processing by APIController#action as HTML
261
- Completed 200 OK in 1ms (Views: 0.2ms)
262
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
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
263
2102
  Processing by APIController#action as HTML
264
- Completed 200 OK in 1ms (Views: 0.2ms)
265
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
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
266
2105
  Processing by APIController#action as HTML
267
- Completed 200 OK in 1ms (Views: 0.2ms)
268
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
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
269
2108
  Processing by APIController#action as HTML
270
2109
  Completed 200 OK in 1ms (Views: 0.1ms)
271
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
2110
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
272
2111
  Processing by APIController#action as HTML
273
2112
  Completed 200 OK in 1ms (Views: 0.1ms)
274
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:47 +0100
2113
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
275
2114
  Processing by APIController#action as HTML
276
2115
  Completed 200 OK in 1ms (Views: 0.1ms)
277
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
278
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
279
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
280
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
281
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
282
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
283
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
284
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
285
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
2116
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
286
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
287
2130
  Completed 200 OK in 1ms (Views: 0.2ms)
288
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
289
- Processing by APIController#action as HTML
2131
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2132
+ Processing by APIController#index as HTML
290
2133
  Completed 200 OK in 1ms (Views: 0.1ms)
291
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
292
- Processing by APIController#action as HTML
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
293
2139
  Completed 200 OK in 1ms (Views: 0.1ms)
294
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
295
- Processing by APIController#action as HTML
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
296
2166
  Completed 200 OK in 1ms (Views: 0.1ms)
297
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
2167
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
298
2168
  Processing by APIController#action as HTML
299
2169
  Completed 200 OK in 1ms (Views: 0.1ms)
300
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:13:56 +0100
2170
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
301
2171
  Processing by APIController#action as HTML
302
2172
  Completed 200 OK in 1ms (Views: 0.1ms)
303
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
304
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
305
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
306
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
307
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
308
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
309
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
310
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
311
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
2173
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
312
2174
  Processing by APIController#action as HTML
313
- Completed 500 Internal Server Error in 4ms
314
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
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
315
2177
  Processing by APIController#action as HTML
316
- Completed 500 Internal Server Error in 4ms
317
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
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
318
2180
  Processing by APIController#action as HTML
319
- Completed 500 Internal Server Error in 3ms
320
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
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
321
2183
  Processing by APIController#action as HTML
322
- Completed 500 Internal Server Error in 3ms
323
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
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
324
2210
  Processing by APIController#action as HTML
325
- Completed 500 Internal Server Error in 3ms
326
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:14:18 +0100
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
327
2213
  Processing by APIController#action as HTML
328
- Completed 500 Internal Server Error in 3ms
329
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:14:23 +0100
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
330
2216
  Processing by APIController#action as HTML
331
- Completed 500 Internal Server Error in 7ms
332
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:14:30 +0100
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
333
2219
  Processing by APIController#action as HTML
334
- Completed 200 OK in 1ms (Views: 0.2ms)
335
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:14:38 +0100
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
336
2222
  Processing by APIController#action as HTML
337
- Completed 200 OK in 1ms (Views: 0.2ms)
338
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:14:59 +0100
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
339
2225
  Processing by APIController#action as HTML
340
- Completed 500 Internal Server Error in 2ms
341
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:15:03 +0100
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
342
2228
  Processing by APIController#action as HTML
343
- Completed 200 OK in 1ms (Views: 0.2ms)
344
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:15:11 +0100
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
345
2231
  Processing by APIController#action as HTML
346
- Completed 200 OK in 1ms (Views: 0.2ms)
347
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:15:33 +0100
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
348
2234
  Processing by APIController#action as HTML
349
- Completed 200 OK in 1ms (Views: 0.2ms)
350
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:15:38 +0100
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
351
2237
  Processing by APIController#action as HTML
352
- Completed 200 OK in 1ms (Views: 0.2ms)
353
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:16:41 +0100
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
354
2240
  Processing by APIController#action as HTML
355
- Completed 200 OK in 6ms (Views: 0.3ms)
356
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:19:35 +0100
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
357
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
358
2259
  Completed 200 OK in 1ms (Views: 0.2ms)
359
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:33 +0100
360
- Processing by APIController#action as HTML
361
- Completed 200 OK in 5ms (Views: 0.2ms)
362
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
363
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
364
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
365
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
366
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
367
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
368
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
369
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
370
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
371
- Processing by APIController#action as HTML
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
372
2274
  Completed 200 OK in 1ms (Views: 0.2ms)
373
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
374
- Processing by APIController#action as HTML
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
375
2286
  Completed 200 OK in 1ms (Views: 0.1ms)
376
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
377
- Processing by APIController#action as HTML
378
- Completed 200 OK in 4ms (Views: 0.1ms)
379
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
380
- Processing by APIController#action as HTML
2287
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2288
+ Processing by APIController#index as HTML
381
2289
  Completed 200 OK in 1ms (Views: 0.1ms)
382
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
383
- Processing by APIController#action as HTML
2290
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2291
+ Processing by APIController#index as HTML
384
2292
  Completed 200 OK in 1ms (Views: 0.1ms)
385
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:36 +0100
2293
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
386
2294
  Processing by APIController#action as HTML
387
2295
  Completed 200 OK in 1ms (Views: 0.1ms)
388
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
389
- Processing by APIController#action as HTML
390
- Completed 200 OK in 1ms (Views: 0.2ms)
391
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
2296
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
392
2297
  Processing by APIController#action as HTML
393
2298
  Completed 200 OK in 1ms (Views: 0.1ms)
394
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
2299
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
395
2300
  Processing by APIController#action as HTML
396
2301
  Completed 200 OK in 1ms (Views: 0.1ms)
397
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
2302
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
398
2303
  Processing by APIController#action as HTML
399
2304
  Completed 200 OK in 1ms (Views: 0.1ms)
400
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
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
401
2309
  Processing by APIController#action as HTML
402
- Completed 200 OK in 4ms (Views: 0.1ms)
403
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
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
404
2312
  Processing by APIController#action as HTML
405
- Completed 200 OK in 1ms (Views: 0.1ms)
406
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
407
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
408
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
409
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
410
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
411
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
412
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
413
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:42 +0100
414
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
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
415
2315
  Processing by APIController#action as HTML
416
2316
  Completed 200 OK in 1ms (Views: 0.2ms)
417
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
2317
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
418
2318
  Processing by APIController#action as HTML
419
2319
  Completed 200 OK in 1ms (Views: 0.1ms)
420
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
2320
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
421
2321
  Processing by APIController#action as HTML
422
- Completed 200 OK in 1ms (Views: 0.1ms)
423
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
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
424
2324
  Processing by APIController#action as HTML
425
2325
  Completed 200 OK in 1ms (Views: 0.1ms)
426
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
427
- Processing by APIController#action as HTML
428
- Completed 200 OK in 4ms (Views: 0.2ms)
429
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
2326
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
430
2327
  Processing by APIController#action as HTML
431
2328
  Completed 200 OK in 1ms (Views: 0.1ms)
432
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
433
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
434
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
435
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
436
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
437
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
438
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
439
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:20:59 +0100
440
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
441
2354
  Processing by APIController#index as HTML
442
- Completed 500 Internal Server Error in 5ms
443
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
444
2357
  Processing by APIController#index as HTML
445
- Completed 500 Internal Server Error in 10ms
446
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
447
2360
  Processing by APIController#index as HTML
448
- Completed 500 Internal Server Error in 5ms
449
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
450
2363
  Processing by APIController#index as HTML
451
- Completed 500 Internal Server Error in 5ms
452
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
453
2366
  Processing by APIController#index as HTML
454
- Completed 500 Internal Server Error in 6ms
455
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
456
2369
  Processing by APIController#index as HTML
457
- Completed 500 Internal Server Error in 5ms
458
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
459
2372
  Processing by APIController#index as HTML
460
- Completed 500 Internal Server Error in 5ms
461
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
462
2375
  Processing by APIController#index as HTML
463
- Completed 500 Internal Server Error in 5ms
464
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
465
2378
  Processing by APIController#action as HTML
466
- Completed 200 OK in 1ms (Views: 0.2ms)
467
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
468
2381
  Processing by APIController#action as HTML
469
- Completed 200 OK in 2ms (Views: 0.4ms)
470
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
471
2384
  Processing by APIController#action as HTML
472
- Completed 200 OK in 1ms (Views: 0.2ms)
473
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
474
2387
  Processing by APIController#action as HTML
475
- Completed 200 OK in 1ms (Views: 0.1ms)
476
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
477
2390
  Processing by APIController#action as HTML
478
- Completed 200 OK in 1ms (Views: 0.1ms)
479
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:21:33 +0100
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
480
2393
  Processing by APIController#action as HTML
481
- Completed 200 OK in 1ms (Views: 0.1ms)
482
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:23:24 +0100
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
483
2396
  Processing by APIController#action as HTML
484
- Completed 200 OK in 1ms (Views: 0.2ms)
485
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:23:24 +0100
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
486
2399
  Processing by APIController#action as HTML
487
2400
  Completed 200 OK in 1ms (Views: 0.1ms)
488
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:23:24 +0100
2401
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
489
2402
  Processing by APIController#action as HTML
490
2403
  Completed 200 OK in 1ms (Views: 0.1ms)
491
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:23:24 +0100
2404
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
492
2405
  Processing by APIController#action as HTML
493
2406
  Completed 200 OK in 1ms (Views: 0.1ms)
494
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:23:24 +0100
2407
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
495
2408
  Processing by APIController#action as HTML
496
- Completed 200 OK in 4ms (Views: 0.1ms)
497
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:23:24 +0100
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
498
2411
  Processing by APIController#action as HTML
499
2412
  Completed 200 OK in 1ms (Views: 0.1ms)
500
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:23:24 +0100
2413
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
501
2414
  Processing by APIController#index as HTML
502
- Completed 500 Internal Server Error in 127730ms
503
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:32 +0100
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
504
2417
  Processing by APIController#index as HTML
505
- Completed 500 Internal Server Error in 799ms
506
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:33 +0100
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
507
2420
  Processing by APIController#index as HTML
508
- Completed 500 Internal Server Error in 382ms
509
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:33 +0100
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
510
2423
  Processing by APIController#index as HTML
511
- Completed 500 Internal Server Error in 336ms
512
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:33 +0100
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
513
2426
  Processing by APIController#index as HTML
514
- Completed 500 Internal Server Error in 310ms
515
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:34 +0100
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
516
2429
  Processing by APIController#index as HTML
517
- Completed 500 Internal Server Error in 278ms
518
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:34 +0100
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
519
2432
  Processing by APIController#index as HTML
520
- Completed 500 Internal Server Error in 287ms
521
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:34 +0100
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
522
2435
  Processing by APIController#index as HTML
523
- Completed 500 Internal Server Error in 254ms
524
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2436
+ Completed 200 OK in 1ms (Views: 0.1ms)
2437
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
525
2438
  Processing by APIController#index as HTML
526
- Completed 500 Internal Server Error in 2ms
527
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2439
+ Completed 200 OK in 1ms (Views: 0.2ms)
2440
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
528
2441
  Processing by APIController#index as HTML
529
- Completed 500 Internal Server Error in 1ms
530
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2442
+ Completed 200 OK in 1ms (Views: 0.1ms)
2443
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
531
2444
  Processing by APIController#index as HTML
532
- Completed 500 Internal Server Error in 1ms
533
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2445
+ Completed 200 OK in 0ms (Views: 0.2ms)
2446
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
534
2447
  Processing by APIController#index as HTML
535
- Completed 500 Internal Server Error in 2ms
536
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2448
+ Completed 200 OK in 0ms (Views: 0.1ms)
2449
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
537
2450
  Processing by APIController#index as HTML
538
- Completed 500 Internal Server Error in 2ms
539
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2451
+ Completed 200 OK in 0ms (Views: 0.1ms)
2452
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
540
2453
  Processing by APIController#index as HTML
541
- Completed 500 Internal Server Error in 1ms
542
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2454
+ Completed 200 OK in 0ms (Views: 0.2ms)
2455
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
543
2456
  Processing by APIController#index as HTML
544
- Completed 500 Internal Server Error in 2ms
545
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2457
+ Completed 200 OK in 0ms (Views: 0.1ms)
2458
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
546
2459
  Processing by APIController#index as HTML
547
- Completed 500 Internal Server Error in 1ms
548
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2460
+ Completed 200 OK in 0ms (Views: 0.1ms)
2461
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
549
2462
  Processing by APIController#action as HTML
550
- Completed 500 Internal Server Error in 1ms
551
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2463
+ Completed 200 OK in 1ms (Views: 0.1ms)
2464
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
552
2465
  Processing by APIController#action as HTML
553
- Completed 500 Internal Server Error in 1ms
554
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2466
+ Completed 200 OK in 1ms (Views: 0.1ms)
2467
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
555
2468
  Processing by APIController#action as HTML
556
- Completed 500 Internal Server Error in 2ms
557
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2469
+ Completed 200 OK in 1ms (Views: 0.1ms)
2470
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
558
2471
  Processing by APIController#action as HTML
559
- Completed 500 Internal Server Error in 2ms
560
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2472
+ Completed 200 OK in 1ms (Views: 0.1ms)
2473
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
561
2474
  Processing by APIController#action as HTML
562
- Completed 500 Internal Server Error in 2ms
563
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:46 +0100
2475
+ Completed 200 OK in 1ms (Views: 0.1ms)
2476
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
564
2477
  Processing by APIController#action as HTML
565
- Completed 500 Internal Server Error in 1ms
566
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
2478
+ Completed 200 OK in 1ms (Views: 0.1ms)
2479
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2480
+ Processing by APIController#action as HTML
2481
+ Completed 200 OK in 1ms (Views: 0.1ms)
2482
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2483
+ Processing by APIController#action as HTML
2484
+ Completed 200 OK in 1ms (Views: 0.1ms)
2485
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2486
+ Processing by APIController#action as HTML
2487
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 904)
2488
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2489
+ Processing by APIController#action as HTML
2490
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 731)
2491
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2492
+ Processing by APIController#action as HTML
2493
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 731)
2494
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2495
+ Processing by APIController#action as HTML
2496
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 731)
2497
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2498
+ Processing by APIController#action as HTML
2499
+ Completed 200 OK in 5ms (Views: 4.7ms | Allocations: 732)
2500
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2501
+ Processing by APIController#action as HTML
2502
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 732)
2503
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2504
+ Processing by APIController#action as HTML
2505
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 731)
2506
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2507
+ Processing by APIController#action as HTML
2508
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 765)
2509
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
567
2510
  Processing by APIController#index as HTML
568
- Completed 500 Internal Server Error in 1ms
569
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
2511
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 771)
2512
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
570
2513
  Processing by APIController#index as HTML
571
- Completed 500 Internal Server Error in 1ms
572
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
2514
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2515
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
573
2516
  Processing by APIController#index as HTML
574
- Completed 500 Internal Server Error in 1ms
575
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
2517
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2518
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
576
2519
  Processing by APIController#index as HTML
577
- Completed 500 Internal Server Error in 1ms
578
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
2520
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2521
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
579
2522
  Processing by APIController#index as HTML
580
- Completed 500 Internal Server Error in 1ms
581
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
2523
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2524
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
582
2525
  Processing by APIController#index as HTML
583
- Completed 500 Internal Server Error in 1ms
584
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
2526
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2527
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
585
2528
  Processing by APIController#index as HTML
586
- Completed 500 Internal Server Error in 1ms
587
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
2529
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2530
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
588
2531
  Processing by APIController#index as HTML
589
- Completed 500 Internal Server Error in 1ms
590
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
591
- Processing by APIController#action as HTML
592
- Completed 500 Internal Server Error in 2ms
593
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
594
- Processing by APIController#action as HTML
595
- Completed 500 Internal Server Error in 1ms
596
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
597
- Processing by APIController#action as HTML
598
- Completed 500 Internal Server Error in 1ms
599
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
600
- Processing by APIController#action as HTML
601
- Completed 500 Internal Server Error in 1ms
602
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
603
- Processing by APIController#action as HTML
604
- Completed 500 Internal Server Error in 1ms
605
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:25:54 +0100
606
- Processing by APIController#action as HTML
607
- Completed 500 Internal Server Error in 1ms
608
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2532
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2533
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
609
2534
  Processing by APIController#index as HTML
610
- Completed 500 Internal Server Error in 0ms
611
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2535
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 835)
2536
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
612
2537
  Processing by APIController#index as HTML
613
- Completed 500 Internal Server Error in 0ms
614
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2538
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2539
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
615
2540
  Processing by APIController#index as HTML
616
- Completed 500 Internal Server Error in 0ms
617
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2541
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2542
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
618
2543
  Processing by APIController#index as HTML
619
- Completed 500 Internal Server Error in 0ms
620
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2544
+ Completed 200 OK in 5ms (Views: 0.2ms | Allocations: 435)
2545
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
621
2546
  Processing by APIController#index as HTML
622
- Completed 500 Internal Server Error in 0ms
623
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2547
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2548
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
624
2549
  Processing by APIController#index as HTML
625
- Completed 500 Internal Server Error in 0ms
626
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2550
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2551
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
627
2552
  Processing by APIController#index as HTML
628
- Completed 500 Internal Server Error in 0ms
629
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2553
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2554
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
630
2555
  Processing by APIController#index as HTML
631
- Completed 500 Internal Server Error in 0ms
632
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2556
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2557
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
633
2558
  Processing by APIController#action as HTML
634
- Completed 500 Internal Server Error in 0ms
635
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2559
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 697)
2560
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
636
2561
  Processing by APIController#action as HTML
637
- Completed 500 Internal Server Error in 0ms
638
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2562
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2563
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
639
2564
  Processing by APIController#action as HTML
640
- Completed 500 Internal Server Error in 0ms
641
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2565
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2566
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
642
2567
  Processing by APIController#action as HTML
643
- Completed 500 Internal Server Error in 0ms
644
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2568
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2569
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
645
2570
  Processing by APIController#action as HTML
646
- Completed 500 Internal Server Error in 0ms
647
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:04 +0100
2571
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2572
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
648
2573
  Processing by APIController#action as HTML
649
- Completed 500 Internal Server Error in 0ms
650
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2574
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2575
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2576
+ Processing by APIController#action as HTML
2577
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2578
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2579
+ Processing by APIController#action as HTML
2580
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 704)
2581
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
651
2582
  Processing by APIController#index as HTML
652
- Completed 200 OK in 1ms (Views: 0.3ms)
653
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2583
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 898)
2584
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
654
2585
  Processing by APIController#index as HTML
655
- Completed 200 OK in 1ms (Views: 0.1ms)
656
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2586
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 512)
2587
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
657
2588
  Processing by APIController#index as HTML
658
- Completed 200 OK in 1ms (Views: 0.1ms)
659
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2589
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 518)
2590
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
660
2591
  Processing by APIController#index as HTML
661
- Completed 200 OK in 1ms (Views: 0.1ms)
662
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2592
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 512)
2593
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
663
2594
  Processing by APIController#index as HTML
664
- Completed 200 OK in 1ms (Views: 0.1ms)
665
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2595
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 512)
2596
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
666
2597
  Processing by APIController#index as HTML
667
- Completed 200 OK in 1ms (Views: 0.2ms)
668
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2598
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 512)
2599
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
669
2600
  Processing by APIController#index as HTML
670
- Completed 200 OK in 1ms (Views: 0.1ms)
671
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2601
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 512)
2602
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
672
2603
  Processing by APIController#index as HTML
673
- Completed 200 OK in 1ms (Views: 0.1ms)
674
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2604
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 512)
2605
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
675
2606
  Processing by APIController#action as HTML
676
- Completed 200 OK in 1ms (Views: 0.1ms)
677
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2607
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 748)
2608
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
678
2609
  Processing by APIController#action as HTML
679
- Completed 200 OK in 1ms (Views: 0.1ms)
680
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2610
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2611
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
681
2612
  Processing by APIController#action as HTML
682
- Completed 200 OK in 1ms (Views: 0.1ms)
683
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2613
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2614
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
684
2615
  Processing by APIController#action as HTML
685
- Completed 200 OK in 1ms (Views: 0.1ms)
686
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2616
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2617
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
687
2618
  Processing by APIController#action as HTML
688
- Completed 200 OK in 1ms (Views: 0.1ms)
689
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:29 +0100
2619
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2620
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
690
2621
  Processing by APIController#action as HTML
691
- Completed 200 OK in 1ms (Views: 0.1ms)
692
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
2622
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2623
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2624
+ Processing by APIController#action as HTML
2625
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2626
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2627
+ Processing by APIController#action as HTML
2628
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 755)
2629
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2630
+ Processing by APIController#action as HTML
2631
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 850)
2632
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2633
+ Processing by APIController#action as HTML
2634
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2635
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2636
+ Processing by APIController#action as HTML
2637
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 675)
2638
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2639
+ Processing by APIController#action as HTML
2640
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 675)
2641
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2642
+ Processing by APIController#action as HTML
2643
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 675)
2644
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2645
+ Processing by APIController#action as HTML
2646
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 675)
2647
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2648
+ Processing by APIController#action as HTML
2649
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2650
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2651
+ Processing by APIController#action as HTML
2652
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 704)
2653
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
693
2654
  Processing by APIController#index as HTML
694
- Completed 200 OK in 1ms (Views: 0.2ms)
695
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
2655
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 681)
2656
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
696
2657
  Processing by APIController#index as HTML
697
- Completed 200 OK in 1ms (Views: 0.1ms)
698
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
2658
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2659
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
699
2660
  Processing by APIController#index as HTML
700
- Completed 200 OK in 1ms (Views: 0.2ms)
701
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
2661
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2662
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
702
2663
  Processing by APIController#index as HTML
703
- Completed 200 OK in 4ms (Views: 0.2ms)
704
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
2664
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2665
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
705
2666
  Processing by APIController#index as HTML
706
- Completed 200 OK in 1ms (Views: 0.1ms)
707
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
2667
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2668
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
708
2669
  Processing by APIController#index as HTML
709
- Completed 200 OK in 1ms (Views: 0.2ms)
710
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
2670
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2671
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
711
2672
  Processing by APIController#index as HTML
712
- Completed 200 OK in 1ms (Views: 0.1ms)
713
- Started GET "/" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
2673
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2674
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
714
2675
  Processing by APIController#index as HTML
715
- Completed 200 OK in 1ms (Views: 0.1ms)
716
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
717
- Processing by APIController#action as HTML
718
- Completed 200 OK in 1ms (Views: 0.1ms)
719
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
720
- Processing by APIController#action as HTML
721
- Completed 200 OK in 1ms (Views: 0.1ms)
722
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
723
- Processing by APIController#action as HTML
724
- Completed 200 OK in 1ms (Views: 0.1ms)
725
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
726
- Processing by APIController#action as HTML
727
- Completed 200 OK in 1ms (Views: 0.1ms)
728
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
2676
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2677
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
729
2678
  Processing by APIController#action as HTML
730
- Completed 200 OK in 1ms (Views: 0.1ms)
731
- Started GET "/action" for 127.0.0.1 at 2017-02-21 15:26:50 +0100
2679
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 850)
2680
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
732
2681
  Processing by APIController#action as HTML
733
- Completed 200 OK in 1ms (Views: 0.2ms)
734
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2682
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2683
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
735
2684
  Processing by APIController#action as HTML
736
- Completed 200 OK in 1ms (Views: 0.2ms)
737
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2685
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2686
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
738
2687
  Processing by APIController#action as HTML
739
- Completed 200 OK in 1ms (Views: 0.2ms)
740
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2688
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2689
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
741
2690
  Processing by APIController#action as HTML
742
- Completed 200 OK in 1ms (Views: 0.1ms)
743
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2691
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2692
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
744
2693
  Processing by APIController#action as HTML
745
- Completed 200 OK in 1ms (Views: 0.1ms)
746
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2694
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2695
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
747
2696
  Processing by APIController#action as HTML
748
- Completed 200 OK in 1ms (Views: 0.1ms)
749
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2697
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2698
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
750
2699
  Processing by APIController#action as HTML
751
- Completed 200 OK in 1ms (Views: 0.1ms)
752
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2700
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 704)
2701
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
753
2702
  Processing by APIController#index as HTML
754
- Completed 200 OK in 1ms (Views: 0.2ms)
755
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2703
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 681)
2704
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
756
2705
  Processing by APIController#index as HTML
757
- Completed 200 OK in 1ms (Views: 0.2ms)
758
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2706
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2707
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
759
2708
  Processing by APIController#index as HTML
760
- Completed 200 OK in 1ms (Views: 0.1ms)
761
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2709
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2710
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
762
2711
  Processing by APIController#index as HTML
763
- Completed 200 OK in 1ms (Views: 0.1ms)
764
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2712
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2713
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
765
2714
  Processing by APIController#index as HTML
766
- Completed 200 OK in 1ms (Views: 0.1ms)
767
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2715
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2716
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
768
2717
  Processing by APIController#index as HTML
769
- Completed 200 OK in 1ms (Views: 0.1ms)
770
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2718
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2719
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
771
2720
  Processing by APIController#index as HTML
772
- Completed 200 OK in 1ms (Views: 0.1ms)
773
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:26 +0200
2721
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2722
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
774
2723
  Processing by APIController#index as HTML
775
- Completed 200 OK in 1ms (Views: 0.1ms)
776
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2724
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2725
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2726
+ Processing by APIController#action as HTML
2727
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 850)
2728
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
777
2729
  Processing by APIController#action as HTML
778
- Completed 500 Internal Server Error in 9ms
779
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2730
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2731
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
780
2732
  Processing by APIController#action as HTML
781
- Completed 500 Internal Server Error in 9ms
782
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2733
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2734
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
783
2735
  Processing by APIController#action as HTML
784
- Completed 500 Internal Server Error in 9ms
785
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2736
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2737
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
786
2738
  Processing by APIController#action as HTML
787
- Completed 500 Internal Server Error in 8ms
788
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2739
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2740
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
789
2741
  Processing by APIController#action as HTML
790
- Completed 500 Internal Server Error in 8ms
791
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2742
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2743
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
792
2744
  Processing by APIController#action as HTML
793
- Completed 500 Internal Server Error in 7ms
794
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2745
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2746
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2747
+ Processing by APIController#action as HTML
2748
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 704)
2749
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
795
2750
  Processing by APIController#index as HTML
796
- Completed 200 OK in 1ms (Views: 0.2ms)
797
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2751
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 681)
2752
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
798
2753
  Processing by APIController#index as HTML
799
- Completed 200 OK in 1ms (Views: 0.2ms)
800
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2754
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2755
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
801
2756
  Processing by APIController#index as HTML
802
- Completed 200 OK in 1ms (Views: 0.1ms)
803
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2757
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2758
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
804
2759
  Processing by APIController#index as HTML
805
- Completed 200 OK in 1ms (Views: 0.1ms)
806
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2760
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2761
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
807
2762
  Processing by APIController#index as HTML
808
- Completed 200 OK in 1ms (Views: 0.1ms)
809
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2763
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2764
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
810
2765
  Processing by APIController#index as HTML
811
- Completed 200 OK in 1ms (Views: 0.1ms)
812
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2766
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2767
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
813
2768
  Processing by APIController#index as HTML
814
- Completed 200 OK in 1ms (Views: 0.1ms)
815
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:50:59 +0200
2769
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2770
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
816
2771
  Processing by APIController#index as HTML
817
- Completed 200 OK in 1ms (Views: 0.1ms)
818
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2772
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2773
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
819
2774
  Processing by APIController#index as HTML
820
- Completed 200 OK in 1ms (Views: 0.2ms)
821
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2775
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 767)
2776
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
822
2777
  Processing by APIController#index as HTML
823
- Completed 200 OK in 1ms (Views: 0.2ms)
824
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2778
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 379)
2779
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
825
2780
  Processing by APIController#index as HTML
826
- Completed 200 OK in 1ms (Views: 0.2ms)
827
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2781
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2782
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
828
2783
  Processing by APIController#index as HTML
829
- Completed 200 OK in 1ms (Views: 0.2ms)
830
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2784
+ Completed 200 OK in 5ms (Views: 0.2ms | Allocations: 380)
2785
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
831
2786
  Processing by APIController#index as HTML
832
- Completed 200 OK in 1ms (Views: 0.2ms)
833
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2787
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2788
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
834
2789
  Processing by APIController#index as HTML
835
- Completed 200 OK in 1ms (Views: 0.1ms)
836
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2790
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2791
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
837
2792
  Processing by APIController#index as HTML
838
- Completed 200 OK in 1ms (Views: 0.1ms)
839
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2793
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2794
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
840
2795
  Processing by APIController#index as HTML
841
- Completed 200 OK in 1ms (Views: 0.1ms)
842
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2796
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2797
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
843
2798
  Processing by APIController#action as HTML
844
- Completed 500 Internal Server Error in 7ms
845
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2799
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 654)
2800
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
846
2801
  Processing by APIController#action as HTML
847
- Completed 500 Internal Server Error in 6ms
848
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2802
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 632)
2803
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
849
2804
  Processing by APIController#action as HTML
850
- Completed 500 Internal Server Error in 6ms
851
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2805
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 632)
2806
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
852
2807
  Processing by APIController#action as HTML
853
- Completed 500 Internal Server Error in 8ms
854
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2808
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 632)
2809
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
855
2810
  Processing by APIController#action as HTML
856
- Completed 500 Internal Server Error in 7ms
857
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:28 +0200
2811
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 632)
2812
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
858
2813
  Processing by APIController#action as HTML
859
- Completed 500 Internal Server Error in 6ms
860
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2814
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 632)
2815
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
861
2816
  Processing by APIController#action as HTML
862
- Completed 200 OK in 1ms (Views: 0.2ms)
863
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2817
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 632)
2818
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
864
2819
  Processing by APIController#action as HTML
865
- Completed 200 OK in 1ms (Views: 0.2ms)
866
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2820
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 662)
2821
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
867
2822
  Processing by APIController#action as HTML
868
- Completed 200 OK in 1ms (Views: 0.1ms)
869
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2823
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 792)
2824
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
870
2825
  Processing by APIController#action as HTML
871
- Completed 200 OK in 1ms (Views: 0.1ms)
872
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2826
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 635)
2827
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
873
2828
  Processing by APIController#action as HTML
874
- Completed 200 OK in 1ms (Views: 0.1ms)
875
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2829
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 635)
2830
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
876
2831
  Processing by APIController#action as HTML
877
- Completed 200 OK in 1ms (Views: 0.1ms)
878
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2832
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 637)
2833
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2834
+ Processing by APIController#action as HTML
2835
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 635)
2836
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2837
+ Processing by APIController#action as HTML
2838
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 635)
2839
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2840
+ Processing by APIController#action as HTML
2841
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 635)
2842
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2843
+ Processing by APIController#action as HTML
2844
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 665)
2845
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
879
2846
  Processing by APIController#index as HTML
880
- Completed 200 OK in 1ms (Views: 0.1ms)
881
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2847
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 628)
2848
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
882
2849
  Processing by APIController#index as HTML
883
- Completed 200 OK in 1ms (Views: 0.1ms)
884
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2850
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2851
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
885
2852
  Processing by APIController#index as HTML
886
- Completed 200 OK in 1ms (Views: 0.1ms)
887
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2853
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2854
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
888
2855
  Processing by APIController#index as HTML
889
- Completed 200 OK in 1ms (Views: 0.1ms)
890
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2856
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2857
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
891
2858
  Processing by APIController#index as HTML
892
- Completed 200 OK in 1ms (Views: 0.1ms)
893
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2859
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2860
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
894
2861
  Processing by APIController#index as HTML
895
- Completed 200 OK in 1ms (Views: 0.1ms)
896
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2862
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 379)
2863
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
897
2864
  Processing by APIController#index as HTML
898
- Completed 200 OK in 1ms (Views: 0.1ms)
899
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:51:58 +0200
2865
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2866
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
900
2867
  Processing by APIController#index as HTML
901
- Completed 200 OK in 1ms (Views: 0.1ms)
902
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2868
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2869
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
903
2870
  Processing by APIController#action as HTML
904
- Completed 200 OK in 1ms (Views: 0.2ms)
905
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2871
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 812)
2872
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
906
2873
  Processing by APIController#action as HTML
907
- Completed 200 OK in 1ms (Views: 0.1ms)
908
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2874
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 647)
2875
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
909
2876
  Processing by APIController#action as HTML
910
- Completed 200 OK in 1ms (Views: 0.1ms)
911
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2877
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2878
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
912
2879
  Processing by APIController#action as HTML
913
- Completed 200 OK in 1ms (Views: 0.1ms)
914
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2880
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 647)
2881
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
915
2882
  Processing by APIController#action as HTML
916
- Completed 200 OK in 1ms (Views: 0.1ms)
917
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2883
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2884
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
918
2885
  Processing by APIController#action as HTML
919
- Completed 200 OK in 1ms (Views: 0.1ms)
920
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2886
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2887
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2888
+ Processing by APIController#action as HTML
2889
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2890
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2891
+ Processing by APIController#action as HTML
2892
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 679)
2893
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
921
2894
  Processing by APIController#index as HTML
922
- Completed 200 OK in 1ms (Views: 0.2ms)
923
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2895
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 662)
2896
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
924
2897
  Processing by APIController#index as HTML
925
- Completed 200 OK in 1ms (Views: 0.2ms)
926
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2898
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2899
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
927
2900
  Processing by APIController#index as HTML
928
- Completed 200 OK in 1ms (Views: 0.3ms)
929
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2901
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2902
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
930
2903
  Processing by APIController#index as HTML
931
- Completed 200 OK in 1ms (Views: 0.2ms)
932
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2904
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2905
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
933
2906
  Processing by APIController#index as HTML
934
- Completed 200 OK in 1ms (Views: 0.2ms)
935
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2907
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2908
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
936
2909
  Processing by APIController#index as HTML
937
- Completed 200 OK in 1ms (Views: 0.2ms)
938
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2910
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2911
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
939
2912
  Processing by APIController#index as HTML
940
- Completed 200 OK in 1ms (Views: 0.1ms)
941
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:08 +0200
2913
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2914
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
942
2915
  Processing by APIController#index as HTML
943
- Completed 200 OK in 1ms (Views: 0.2ms)
944
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2916
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2917
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2918
+ Processing by APIController#action as HTML
2919
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 800)
2920
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2921
+ Processing by APIController#action as HTML
2922
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2923
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2924
+ Processing by APIController#action as HTML
2925
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2926
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2927
+ Processing by APIController#action as HTML
2928
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2929
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2930
+ Processing by APIController#action as HTML
2931
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 647)
2932
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2933
+ Processing by APIController#action as HTML
2934
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 647)
2935
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2936
+ Processing by APIController#action as HTML
2937
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 647)
2938
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2939
+ Processing by APIController#action as HTML
2940
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 677)
2941
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
945
2942
  Processing by APIController#index as HTML
946
- Completed 200 OK in 1ms (Views: 0.2ms)
947
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2943
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 655)
2944
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
948
2945
  Processing by APIController#index as HTML
949
- Completed 200 OK in 1ms (Views: 0.1ms)
950
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2946
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 411)
2947
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
951
2948
  Processing by APIController#index as HTML
952
- Completed 200 OK in 1ms (Views: 0.1ms)
953
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2949
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 411)
2950
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
954
2951
  Processing by APIController#index as HTML
955
- Completed 200 OK in 1ms (Views: 0.1ms)
956
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2952
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 411)
2953
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
957
2954
  Processing by APIController#index as HTML
958
- Completed 200 OK in 1ms (Views: 0.1ms)
959
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2955
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 411)
2956
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
960
2957
  Processing by APIController#index as HTML
961
- Completed 200 OK in 1ms (Views: 0.1ms)
962
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2958
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 411)
2959
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
963
2960
  Processing by APIController#index as HTML
964
- Completed 200 OK in 1ms (Views: 0.1ms)
965
- Started GET "/" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2961
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2962
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
966
2963
  Processing by APIController#index as HTML
967
- Completed 200 OK in 1ms (Views: 0.1ms)
968
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2964
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2965
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
969
2966
  Processing by APIController#action as HTML
970
- Completed 200 OK in 1ms (Views: 0.1ms)
971
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2967
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 812)
2968
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
972
2969
  Processing by APIController#action as HTML
973
- Completed 200 OK in 1ms (Views: 0.1ms)
974
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2970
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2971
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
975
2972
  Processing by APIController#action as HTML
976
- Completed 200 OK in 1ms (Views: 0.1ms)
977
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2973
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2974
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
978
2975
  Processing by APIController#action as HTML
979
- Completed 200 OK in 1ms (Views: 0.1ms)
980
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2976
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2977
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
981
2978
  Processing by APIController#action as HTML
982
- Completed 200 OK in 1ms (Views: 0.1ms)
983
- Started GET "/action" for 127.0.0.1 at 2017-05-17 13:52:19 +0200
2979
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2980
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
984
2981
  Processing by APIController#action as HTML
985
- Completed 200 OK in 1ms (Views: 0.1ms)
2982
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2983
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2984
+ Processing by APIController#action as HTML
2985
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2986
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2987
+ Processing by APIController#action as HTML
2988
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 677)
2989
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2990
+ Processing by APIController#index as HTML
2991
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 658)
2992
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2993
+ Processing by APIController#index as HTML
2994
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2995
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2996
+ Processing by APIController#index as HTML
2997
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2998
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2999
+ Processing by APIController#index as HTML
3000
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
3001
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
3002
+ Processing by APIController#index as HTML
3003
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
3004
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
3005
+ Processing by APIController#index as HTML
3006
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
3007
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
3008
+ Processing by APIController#index as HTML
3009
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
3010
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
3011
+ Processing by APIController#index as HTML
3012
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)