rails-rfc6570 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/lib/rails/rfc6570.rb +47 -36
- data/lib/rails/rfc6570/patches.rb +2 -0
- data/lib/rails/rfc6570/version.rb +3 -1
- data/rails-rfc6570.gemspec +10 -9
- data/spec/dummy/log/test.log +2190 -0
- data/spec/rfc6570_spec.rb +13 -12
- data/spec/spec_helper.rb +6 -2
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d60f820a63bedd023739098fd6635365024e50d57f1d8084ee63bb48e863b7d9
|
4
|
+
data.tar.gz: a674819b673438036ceeee890b5ac490533182e6c0715290c32109dde1e7077a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a761b8f59debaa2abc77ed7d5bb359f41b186839f871c29bfa26077eccf55759b13b19a5f528e2a4921736095b6f0071b554a41e52eb341639a9eb8363efb3ba
|
7
|
+
data.tar.gz: 1e4ae6fa1638a8858130de15d33dcd1be337a72c92f9bbb60a728d2f98e27ff3a5e2ee5c83919fb38b5ea1df74d4cdfe9da7f2114f1f9f7058b0cc17478b5cb4
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
[](https://travis-ci.org/jgraichen/rails-rfc6570)
|
4
4
|
|
5
|
-
Pragmatic access to your Rails 4.2, 5.0, 5.1 routes as RFC6570 URI templates. Ruby 2.
|
5
|
+
Pragmatic access to your Rails 4.2, 5.0, 5.1, 5.2 routes as RFC6570 URI templates. Ruby 2.3+ is required.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
data/lib/rails/rfc6570.rb
CHANGED
@@ -1,10 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'rails/rfc6570/version'
|
2
4
|
|
3
5
|
module ActionDispatch
|
4
6
|
module Journey
|
5
7
|
module Visitors
|
6
|
-
class RFC6570 < Visitor
|
7
|
-
DISPATCH_CACHE = {}
|
8
|
+
class RFC6570 < Visitor # rubocop:disable ClassLength
|
9
|
+
DISPATCH_CACHE = {} # rubocop:disable MutableConstant
|
8
10
|
|
9
11
|
def initialize(opts = {})
|
10
12
|
super()
|
@@ -15,13 +17,14 @@ module ActionDispatch
|
|
15
17
|
end
|
16
18
|
|
17
19
|
def ignore
|
18
|
-
@opts.fetch(:ignore) { %w
|
20
|
+
@opts.fetch(:ignore) { %w[format] }
|
19
21
|
end
|
20
22
|
|
21
23
|
def route
|
22
24
|
@route ||= @opts[:route]
|
23
25
|
end
|
24
26
|
|
27
|
+
# rubocop:disable AbcSize
|
25
28
|
def accept(node)
|
26
29
|
str = visit(node)
|
27
30
|
|
@@ -31,12 +34,13 @@ module ActionDispatch
|
|
31
34
|
|
32
35
|
if controller.present? && action.present?
|
33
36
|
params = Rails::RFC6570.params_for(controller, action)
|
34
|
-
str += '{?' + params.join(',') + '}' if params
|
37
|
+
str += '{?' + params.join(',') + '}' if params&.any?
|
35
38
|
end
|
36
39
|
end
|
37
40
|
|
38
41
|
str
|
39
42
|
end
|
43
|
+
# rubocop:enable all
|
40
44
|
|
41
45
|
def visit(node)
|
42
46
|
@stack.unshift node.type
|
@@ -64,55 +68,59 @@ module ActionDispatch
|
|
64
68
|
end
|
65
69
|
end
|
66
70
|
|
71
|
+
# rubocop:disable AbcSize
|
72
|
+
# rubocop:disable CyclomaticComplexity
|
73
|
+
# rubocop:disable MethodLength
|
74
|
+
# rubocop:disable PerceivedComplexity
|
67
75
|
def binary(node)
|
68
76
|
case [node.left.type, node.right.type]
|
69
|
-
when [
|
70
|
-
if @stack[0..1] == [
|
77
|
+
when %i[DOT SYMBOL]
|
78
|
+
if @stack[0..1] == %i[CAT GROUP]
|
71
79
|
placeholder node.right, '.'
|
72
80
|
else
|
73
81
|
placeholder(node.right, nil, nil, '.')
|
74
82
|
end
|
75
|
-
when [
|
76
|
-
if @stack[0..1] == [
|
83
|
+
when %i[SLASH SYMBOL]
|
84
|
+
if @stack[0..1] == %i[CAT GROUP]
|
77
85
|
placeholder(node.right, '/')
|
78
86
|
else
|
79
87
|
placeholder(node.right, nil, nil, '/')
|
80
88
|
end
|
81
|
-
when [
|
89
|
+
when %i[SLASH STAR]
|
82
90
|
placeholder node.right, '/', '*'
|
83
|
-
when [
|
91
|
+
when %i[SLASH CAT]
|
84
92
|
if node.right.left.type == :STAR
|
85
|
-
placeholder(node.right.left, '/', '*') +
|
93
|
+
placeholder(node.right.left, '/', '*') +
|
94
|
+
visit(node.right.right)
|
86
95
|
else
|
87
96
|
[visit(node.left), visit(node.right)].join
|
88
97
|
end
|
89
|
-
when [
|
90
|
-
visit(node.left).to_s.gsub(
|
98
|
+
when %i[CAT STAR]
|
99
|
+
visit(node.left).to_s.gsub(%r{/+$}, '') +
|
100
|
+
placeholder(node.right, '/', '*')
|
91
101
|
else
|
92
102
|
[visit(node.left), visit(node.right)].join
|
93
103
|
end
|
94
104
|
end
|
105
|
+
# rubocop:enable all
|
95
106
|
|
96
107
|
def terminal(node)
|
97
108
|
node.left
|
98
109
|
end
|
99
110
|
|
100
111
|
def nary(node)
|
101
|
-
node.children.each {
|
112
|
+
node.children.each {|c| visit(c) }
|
102
113
|
end
|
103
114
|
|
104
115
|
def unary(node)
|
105
116
|
visit(node.left)
|
106
117
|
end
|
107
118
|
|
119
|
+
# rubocop:disable MethodName
|
108
120
|
def visit_CAT(node)
|
109
121
|
binary(node)
|
110
122
|
end
|
111
123
|
|
112
|
-
def visit_SYMBOL(node)
|
113
|
-
terminal(node)
|
114
|
-
end
|
115
|
-
|
116
124
|
def visit_LITERAL(node)
|
117
125
|
terminal(node)
|
118
126
|
end
|
@@ -138,19 +146,18 @@ module ActionDispatch
|
|
138
146
|
end
|
139
147
|
|
140
148
|
def visit_GROUP(node)
|
141
|
-
if @group_depth >= 1
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
visit node.left
|
146
|
-
end
|
149
|
+
raise 'Cannot transform nested groups.' if @group_depth >= 1
|
150
|
+
|
151
|
+
@group_depth += 1
|
152
|
+
visit node.left
|
147
153
|
ensure
|
148
154
|
@group_depth -= 1
|
149
155
|
end
|
156
|
+
# rubocop:enable MethodName
|
150
157
|
|
151
158
|
instance_methods(true).each do |meth|
|
152
159
|
next unless meth =~ /^visit_(.*)$/
|
153
|
-
DISPATCH_CACHE[
|
160
|
+
DISPATCH_CACHE[Regexp.last_match(1).to_sym] = meth
|
154
161
|
end
|
155
162
|
end
|
156
163
|
end
|
@@ -161,7 +168,7 @@ module Rails
|
|
161
168
|
module RFC6570
|
162
169
|
if defined?(::Rails::Railtie)
|
163
170
|
class Railtie < ::Rails::Railtie # :nodoc:
|
164
|
-
initializer 'rails-rfc6570', :
|
171
|
+
initializer 'rails-rfc6570', group: :all do |_app|
|
165
172
|
require 'rails/rfc6570/patches'
|
166
173
|
require 'action_dispatch/journey'
|
167
174
|
|
@@ -191,15 +198,17 @@ module Rails
|
|
191
198
|
module Extensions
|
192
199
|
module RouteSet
|
193
200
|
def to_rfc6570(opts = {})
|
194
|
-
routes.map{|r| r.to_rfc6570(opts) }
|
201
|
+
routes.map {|r| r.to_rfc6570(opts) }
|
195
202
|
end
|
196
203
|
end
|
197
204
|
|
198
205
|
module NamedRouteCollection
|
199
206
|
def to_rfc6570(opts = {})
|
200
|
-
Hash[routes.map{|n, r| [n, r.to_rfc6570(opts)] }]
|
207
|
+
Hash[routes.map {|n, r| [n, r.to_rfc6570(opts)] }]
|
201
208
|
end
|
202
209
|
|
210
|
+
# rubocop:disable AbcSize
|
211
|
+
# rubocop:disable MethodLength
|
203
212
|
def define_rfc6570_helpers(name, route, mod, set)
|
204
213
|
rfc6570_name = :"#{name}_rfc6570"
|
205
214
|
rfc6570_url_name = :"#{name}_url_rfc6570"
|
@@ -211,7 +220,7 @@ module Rails
|
|
211
220
|
|
212
221
|
mod.module_eval do
|
213
222
|
define_method(rfc6570_name) do |opts = {}|
|
214
|
-
::Rails::RFC6570
|
223
|
+
::Rails::RFC6570.build_url_template(self, route, opts)
|
215
224
|
end
|
216
225
|
|
217
226
|
define_method(rfc6570_url_name) do |opts = {}|
|
@@ -227,13 +236,14 @@ module Rails
|
|
227
236
|
set << rfc6570_url_name
|
228
237
|
set << rfc6570_path_name
|
229
238
|
end
|
239
|
+
# rubocop:enable all
|
230
240
|
|
231
241
|
def add(name, route)
|
232
242
|
super
|
233
243
|
define_rfc6570_helpers name, route, @url_helpers_module, @url_helpers
|
234
244
|
end
|
235
245
|
|
236
|
-
|
246
|
+
alias []= add
|
237
247
|
end
|
238
248
|
|
239
249
|
module JourneyRoute
|
@@ -261,12 +271,10 @@ module Rails
|
|
261
271
|
end
|
262
272
|
|
263
273
|
def rfc6570_route(name, opts = {})
|
264
|
-
route
|
265
|
-
unless route
|
266
|
-
raise KeyError.new "No named routed for `#{name}'."
|
267
|
-
end
|
274
|
+
route = Rails.application.routes.named_routes[name]
|
275
|
+
raise KeyError.new "No named routed for `#{name}'." unless route
|
268
276
|
|
269
|
-
::Rails::RFC6570
|
277
|
+
::Rails::RFC6570.build_url_template(self, route, opts)
|
270
278
|
end
|
271
279
|
end
|
272
280
|
|
@@ -284,6 +292,7 @@ module Rails
|
|
284
292
|
end
|
285
293
|
end
|
286
294
|
|
295
|
+
# rubocop:disable MethodLength
|
287
296
|
def build_url_template(t, route, options)
|
288
297
|
template = route.to_rfc6570(options)
|
289
298
|
|
@@ -304,6 +313,7 @@ module Rails
|
|
304
313
|
::Addressable::Template.new(url)
|
305
314
|
end
|
306
315
|
end
|
316
|
+
# rubocop:enable all
|
307
317
|
|
308
318
|
def params_for(controller, action)
|
309
319
|
ctr = "#{controller.camelize}Controller".constantize
|
@@ -311,6 +321,7 @@ module Rails
|
|
311
321
|
rescue NameError
|
312
322
|
nil
|
313
323
|
end
|
314
|
-
|
324
|
+
|
325
|
+
extend self # rubocop:disable ModuleFunction
|
315
326
|
end
|
316
327
|
end
|
data/rails-rfc6570.gemspec
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
#
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
2
3
|
lib = File.expand_path('../lib', __FILE__)
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
5
|
require 'rails/rfc6570/version'
|
@@ -8,20 +9,20 @@ Gem::Specification.new do |spec|
|
|
8
9
|
spec.version = Rails::RFC6570::VERSION
|
9
10
|
spec.authors = ['Jan Graichen']
|
10
11
|
spec.email = ['jg@altimos.de']
|
11
|
-
spec.summary =
|
12
|
-
|
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
|
-
)
|
20
|
-
spec.executables = spec.files.grep(
|
21
|
-
spec.test_files = spec.files.grep(
|
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', '<
|
25
|
+
spec.add_runtime_dependency 'actionpack', '>= 4.2', '< 6'
|
25
26
|
spec.add_runtime_dependency 'addressable', '~> 2.3'
|
26
27
|
|
27
28
|
spec.add_development_dependency 'bundler', '~> 1.5'
|
data/spec/dummy/log/test.log
CHANGED
@@ -3583,3 +3583,2193 @@ Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 16:56
|
|
3583
3583
|
Processing by APIController#action as HTML
|
3584
3584
|
Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
|
3585
3585
|
Completed 200 OK in 1ms (Views: 0.1ms)
|
3586
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3587
|
+
Processing by APIController#action as HTML
|
3588
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
3589
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3590
|
+
Processing by APIController#action as HTML
|
3591
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3592
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3593
|
+
Processing by APIController#action as HTML
|
3594
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3595
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3596
|
+
Processing by APIController#action as HTML
|
3597
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3598
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3599
|
+
Processing by APIController#action as HTML
|
3600
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3601
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3602
|
+
Processing by APIController#action as HTML
|
3603
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3604
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3605
|
+
Processing by APIController#action as HTML
|
3606
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3607
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3608
|
+
Processing by APIController#index as HTML
|
3609
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3610
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3611
|
+
Processing by APIController#index as HTML
|
3612
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3613
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3614
|
+
Processing by APIController#index as HTML
|
3615
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3616
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3617
|
+
Processing by APIController#index as HTML
|
3618
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3619
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3620
|
+
Processing by APIController#index as HTML
|
3621
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3622
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3623
|
+
Processing by APIController#index as HTML
|
3624
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3625
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3626
|
+
Processing by APIController#index as HTML
|
3627
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3628
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:13 +0100
|
3629
|
+
Processing by APIController#index as HTML
|
3630
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3631
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3632
|
+
Processing by APIController#index as HTML
|
3633
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3634
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3635
|
+
Processing by APIController#index as HTML
|
3636
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3637
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3638
|
+
Processing by APIController#index as HTML
|
3639
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3640
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3641
|
+
Processing by APIController#index as HTML
|
3642
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3643
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3644
|
+
Processing by APIController#index as HTML
|
3645
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3646
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3647
|
+
Processing by APIController#index as HTML
|
3648
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3649
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3650
|
+
Processing by APIController#index as HTML
|
3651
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3652
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3653
|
+
Processing by APIController#index as HTML
|
3654
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3655
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3656
|
+
Processing by APIController#action as HTML
|
3657
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3658
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3659
|
+
Processing by APIController#action as HTML
|
3660
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3661
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3662
|
+
Processing by APIController#action as HTML
|
3663
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3664
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3665
|
+
Processing by APIController#action as HTML
|
3666
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3667
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3668
|
+
Processing by APIController#action as HTML
|
3669
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3670
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3671
|
+
Processing by APIController#action as HTML
|
3672
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3673
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:17 +0100
|
3674
|
+
Processing by APIController#action as HTML
|
3675
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3676
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3677
|
+
Processing by APIController#index as HTML
|
3678
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3679
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3680
|
+
Processing by APIController#index as HTML
|
3681
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3682
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3683
|
+
Processing by APIController#index as HTML
|
3684
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3685
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3686
|
+
Processing by APIController#index as HTML
|
3687
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3688
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3689
|
+
Processing by APIController#index as HTML
|
3690
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3691
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3692
|
+
Processing by APIController#index as HTML
|
3693
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3694
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3695
|
+
Processing by APIController#index as HTML
|
3696
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3697
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3698
|
+
Processing by APIController#index as HTML
|
3699
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3700
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3701
|
+
Processing by APIController#action as HTML
|
3702
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3703
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3704
|
+
Processing by APIController#action as HTML
|
3705
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3706
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3707
|
+
Processing by APIController#action as HTML
|
3708
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3709
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3710
|
+
Processing by APIController#action as HTML
|
3711
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3712
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3713
|
+
Processing by APIController#action as HTML
|
3714
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3715
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3716
|
+
Processing by APIController#action as HTML
|
3717
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3718
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:21 +0100
|
3719
|
+
Processing by APIController#action as HTML
|
3720
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3721
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3722
|
+
Processing by APIController#action as HTML
|
3723
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3724
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3725
|
+
Processing by APIController#action as HTML
|
3726
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3727
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3728
|
+
Processing by APIController#action as HTML
|
3729
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3730
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3731
|
+
Processing by APIController#action as HTML
|
3732
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3733
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3734
|
+
Processing by APIController#action as HTML
|
3735
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3736
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3737
|
+
Processing by APIController#action as HTML
|
3738
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3739
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3740
|
+
Processing by APIController#action as HTML
|
3741
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3742
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3743
|
+
Processing by APIController#index as HTML
|
3744
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3745
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3746
|
+
Processing by APIController#index as HTML
|
3747
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3748
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3749
|
+
Processing by APIController#index as HTML
|
3750
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3751
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3752
|
+
Processing by APIController#index as HTML
|
3753
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3754
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3755
|
+
Processing by APIController#index as HTML
|
3756
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3757
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3758
|
+
Processing by APIController#index as HTML
|
3759
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
3760
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3761
|
+
Processing by APIController#index as HTML
|
3762
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3763
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:23 +0100
|
3764
|
+
Processing by APIController#index as HTML
|
3765
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3766
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3767
|
+
Processing by APIController#action as HTML
|
3768
|
+
Completed 200 OK in 2ms (Views: 0.7ms)
|
3769
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3770
|
+
Processing by APIController#action as HTML
|
3771
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
3772
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3773
|
+
Processing by APIController#action as HTML
|
3774
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3775
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3776
|
+
Processing by APIController#action as HTML
|
3777
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3778
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3779
|
+
Processing by APIController#action as HTML
|
3780
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
3781
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3782
|
+
Processing by APIController#action as HTML
|
3783
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3784
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3785
|
+
Processing by APIController#action as HTML
|
3786
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3787
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3788
|
+
Processing by APIController#index as HTML
|
3789
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3790
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3791
|
+
Processing by APIController#index as HTML
|
3792
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
3793
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3794
|
+
Processing by APIController#index as HTML
|
3795
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3796
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3797
|
+
Processing by APIController#index as HTML
|
3798
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3799
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3800
|
+
Processing by APIController#index as HTML
|
3801
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3802
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3803
|
+
Processing by APIController#index as HTML
|
3804
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3805
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3806
|
+
Processing by APIController#index as HTML
|
3807
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
3808
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:26 +0100
|
3809
|
+
Processing by APIController#index as HTML
|
3810
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3811
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3812
|
+
Processing by APIController#action as HTML
|
3813
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3814
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3815
|
+
Processing by APIController#action as HTML
|
3816
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3817
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3818
|
+
Processing by APIController#action as HTML
|
3819
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3820
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3821
|
+
Processing by APIController#action as HTML
|
3822
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3823
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3824
|
+
Processing by APIController#action as HTML
|
3825
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3826
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3827
|
+
Processing by APIController#action as HTML
|
3828
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3829
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3830
|
+
Processing by APIController#action as HTML
|
3831
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3832
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3833
|
+
Processing by APIController#index as HTML
|
3834
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3835
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3836
|
+
Processing by APIController#index as HTML
|
3837
|
+
Completed 200 OK in 5ms (Views: 0.2ms)
|
3838
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3839
|
+
Processing by APIController#index as HTML
|
3840
|
+
Completed 200 OK in 2ms (Views: 0.5ms)
|
3841
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3842
|
+
Processing by APIController#index as HTML
|
3843
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3844
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3845
|
+
Processing by APIController#index as HTML
|
3846
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
3847
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3848
|
+
Processing by APIController#index as HTML
|
3849
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3850
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3851
|
+
Processing by APIController#index as HTML
|
3852
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3853
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:30 +0100
|
3854
|
+
Processing by APIController#index as HTML
|
3855
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3856
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3857
|
+
Processing by APIController#index as HTML
|
3858
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
3859
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3860
|
+
Processing by APIController#index as HTML
|
3861
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3862
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3863
|
+
Processing by APIController#index as HTML
|
3864
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3865
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3866
|
+
Processing by APIController#index as HTML
|
3867
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3868
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3869
|
+
Processing by APIController#index as HTML
|
3870
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3871
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3872
|
+
Processing by APIController#index as HTML
|
3873
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3874
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3875
|
+
Processing by APIController#index as HTML
|
3876
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3877
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3878
|
+
Processing by APIController#index as HTML
|
3879
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3880
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3881
|
+
Processing by APIController#action as HTML
|
3882
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3883
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3884
|
+
Processing by APIController#action as HTML
|
3885
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3886
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3887
|
+
Processing by APIController#action as HTML
|
3888
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3889
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3890
|
+
Processing by APIController#action as HTML
|
3891
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
3892
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3893
|
+
Processing by APIController#action as HTML
|
3894
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3895
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3896
|
+
Processing by APIController#action as HTML
|
3897
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3898
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:33 +0100
|
3899
|
+
Processing by APIController#action as HTML
|
3900
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3901
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3902
|
+
Processing by APIController#action as HTML
|
3903
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
3904
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3905
|
+
Processing by APIController#action as HTML
|
3906
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3907
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3908
|
+
Processing by APIController#action as HTML
|
3909
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3910
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3911
|
+
Processing by APIController#action as HTML
|
3912
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
3913
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3914
|
+
Processing by APIController#action as HTML
|
3915
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3916
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3917
|
+
Processing by APIController#action as HTML
|
3918
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3919
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3920
|
+
Processing by APIController#action as HTML
|
3921
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3922
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3923
|
+
Processing by APIController#index as HTML
|
3924
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3925
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3926
|
+
Processing by APIController#index as HTML
|
3927
|
+
Completed 200 OK in 2ms (Views: 0.5ms)
|
3928
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3929
|
+
Processing by APIController#index as HTML
|
3930
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3931
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3932
|
+
Processing by APIController#index as HTML
|
3933
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3934
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3935
|
+
Processing by APIController#index as HTML
|
3936
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3937
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3938
|
+
Processing by APIController#index as HTML
|
3939
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3940
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3941
|
+
Processing by APIController#index as HTML
|
3942
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3943
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:37 +0100
|
3944
|
+
Processing by APIController#index as HTML
|
3945
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3946
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3947
|
+
Processing by APIController#action as HTML
|
3948
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3949
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3950
|
+
Processing by APIController#action as HTML
|
3951
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
3952
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3953
|
+
Processing by APIController#action as HTML
|
3954
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3955
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3956
|
+
Processing by APIController#action as HTML
|
3957
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3958
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3959
|
+
Processing by APIController#action as HTML
|
3960
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
3961
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3962
|
+
Processing by APIController#action as HTML
|
3963
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3964
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3965
|
+
Processing by APIController#action as HTML
|
3966
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3967
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3968
|
+
Processing by APIController#index as HTML
|
3969
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3970
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3971
|
+
Processing by APIController#index as HTML
|
3972
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3973
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3974
|
+
Processing by APIController#index as HTML
|
3975
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3976
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3977
|
+
Processing by APIController#index as HTML
|
3978
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3979
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3980
|
+
Processing by APIController#index as HTML
|
3981
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3982
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3983
|
+
Processing by APIController#index as HTML
|
3984
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3985
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3986
|
+
Processing by APIController#index as HTML
|
3987
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3988
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:40 +0100
|
3989
|
+
Processing by APIController#index as HTML
|
3990
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
3991
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
3992
|
+
Processing by APIController#index as HTML
|
3993
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3994
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
3995
|
+
Processing by APIController#index as HTML
|
3996
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
3997
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
3998
|
+
Processing by APIController#index as HTML
|
3999
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4000
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4001
|
+
Processing by APIController#index as HTML
|
4002
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4003
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4004
|
+
Processing by APIController#index as HTML
|
4005
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4006
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4007
|
+
Processing by APIController#index as HTML
|
4008
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4009
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4010
|
+
Processing by APIController#index as HTML
|
4011
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4012
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4013
|
+
Processing by APIController#index as HTML
|
4014
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4015
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4016
|
+
Processing by APIController#action as HTML
|
4017
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4018
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4019
|
+
Processing by APIController#action as HTML
|
4020
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4021
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4022
|
+
Processing by APIController#action as HTML
|
4023
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4024
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4025
|
+
Processing by APIController#action as HTML
|
4026
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4027
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4028
|
+
Processing by APIController#action as HTML
|
4029
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4030
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4031
|
+
Processing by APIController#action as HTML
|
4032
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4033
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:48 +0100
|
4034
|
+
Processing by APIController#action as HTML
|
4035
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4036
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4037
|
+
Processing by APIController#action as HTML
|
4038
|
+
Completed 200 OK in 3ms (Views: 0.6ms)
|
4039
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4040
|
+
Processing by APIController#action as HTML
|
4041
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
4042
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4043
|
+
Processing by APIController#action as HTML
|
4044
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4045
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4046
|
+
Processing by APIController#action as HTML
|
4047
|
+
Completed 200 OK in 2ms (Views: 0.5ms)
|
4048
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4049
|
+
Processing by APIController#action as HTML
|
4050
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4051
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4052
|
+
Processing by APIController#action as HTML
|
4053
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4054
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4055
|
+
Processing by APIController#action as HTML
|
4056
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4057
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4058
|
+
Processing by APIController#index as HTML
|
4059
|
+
Completed 200 OK in 2ms (Views: 0.5ms)
|
4060
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4061
|
+
Processing by APIController#index as HTML
|
4062
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
4063
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4064
|
+
Processing by APIController#index as HTML
|
4065
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4066
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4067
|
+
Processing by APIController#index as HTML
|
4068
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4069
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4070
|
+
Processing by APIController#index as HTML
|
4071
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4072
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4073
|
+
Processing by APIController#index as HTML
|
4074
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4075
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4076
|
+
Processing by APIController#index as HTML
|
4077
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4078
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:53 +0100
|
4079
|
+
Processing by APIController#index as HTML
|
4080
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4081
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4082
|
+
Processing by APIController#action as HTML
|
4083
|
+
Completed 200 OK in 3ms (Views: 0.5ms)
|
4084
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4085
|
+
Processing by APIController#action as HTML
|
4086
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4087
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4088
|
+
Processing by APIController#action as HTML
|
4089
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4090
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4091
|
+
Processing by APIController#action as HTML
|
4092
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4093
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4094
|
+
Processing by APIController#action as HTML
|
4095
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4096
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4097
|
+
Processing by APIController#action as HTML
|
4098
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4099
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4100
|
+
Processing by APIController#action as HTML
|
4101
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4102
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4103
|
+
Processing by APIController#index as HTML
|
4104
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4105
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4106
|
+
Processing by APIController#index as HTML
|
4107
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4108
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4109
|
+
Processing by APIController#index as HTML
|
4110
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4111
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4112
|
+
Processing by APIController#index as HTML
|
4113
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4114
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4115
|
+
Processing by APIController#index as HTML
|
4116
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4117
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4118
|
+
Processing by APIController#index as HTML
|
4119
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4120
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4121
|
+
Processing by APIController#index as HTML
|
4122
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4123
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:07:56 +0100
|
4124
|
+
Processing by APIController#index as HTML
|
4125
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4126
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4127
|
+
Processing by APIController#action as HTML
|
4128
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4129
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4130
|
+
Processing by APIController#action as HTML
|
4131
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4132
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4133
|
+
Processing by APIController#action as HTML
|
4134
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
4135
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4136
|
+
Processing by APIController#action as HTML
|
4137
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4138
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4139
|
+
Processing by APIController#action as HTML
|
4140
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4141
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4142
|
+
Processing by APIController#action as HTML
|
4143
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4144
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4145
|
+
Processing by APIController#action as HTML
|
4146
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4147
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4148
|
+
Processing by APIController#index as HTML
|
4149
|
+
Completed 200 OK in 2ms (Views: 0.6ms)
|
4150
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4151
|
+
Processing by APIController#index as HTML
|
4152
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4153
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4154
|
+
Processing by APIController#index as HTML
|
4155
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4156
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4157
|
+
Processing by APIController#index as HTML
|
4158
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4159
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4160
|
+
Processing by APIController#index as HTML
|
4161
|
+
Completed 200 OK in 2ms (Views: 0.6ms)
|
4162
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4163
|
+
Processing by APIController#index as HTML
|
4164
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
4165
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4166
|
+
Processing by APIController#index as HTML
|
4167
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4168
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:00 +0100
|
4169
|
+
Processing by APIController#index as HTML
|
4170
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4171
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4172
|
+
Processing by APIController#action as HTML
|
4173
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4174
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4175
|
+
Processing by APIController#action as HTML
|
4176
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4177
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4178
|
+
Processing by APIController#action as HTML
|
4179
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4180
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4181
|
+
Processing by APIController#action as HTML
|
4182
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4183
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4184
|
+
Processing by APIController#action as HTML
|
4185
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4186
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4187
|
+
Processing by APIController#action as HTML
|
4188
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
4189
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4190
|
+
Processing by APIController#action as HTML
|
4191
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
4192
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4193
|
+
Processing by APIController#index as HTML
|
4194
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4195
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4196
|
+
Processing by APIController#index as HTML
|
4197
|
+
Completed 200 OK in 7ms (Views: 0.5ms)
|
4198
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4199
|
+
Processing by APIController#index as HTML
|
4200
|
+
Completed 200 OK in 2ms (Views: 0.6ms)
|
4201
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4202
|
+
Processing by APIController#index as HTML
|
4203
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4204
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4205
|
+
Processing by APIController#index as HTML
|
4206
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4207
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4208
|
+
Processing by APIController#index as HTML
|
4209
|
+
Completed 200 OK in 2ms (Views: 0.6ms)
|
4210
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4211
|
+
Processing by APIController#index as HTML
|
4212
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4213
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:04 +0100
|
4214
|
+
Processing by APIController#index as HTML
|
4215
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4216
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:07 +0100
|
4217
|
+
Processing by APIController#action as HTML
|
4218
|
+
Completed 200 OK in 3ms (Views: 0.6ms)
|
4219
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:07 +0100
|
4220
|
+
Processing by APIController#action as HTML
|
4221
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4222
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:07 +0100
|
4223
|
+
Processing by APIController#action as HTML
|
4224
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
4225
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:07 +0100
|
4226
|
+
Processing by APIController#action as HTML
|
4227
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4228
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:07 +0100
|
4229
|
+
Processing by APIController#action as HTML
|
4230
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
4231
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:07 +0100
|
4232
|
+
Processing by APIController#action as HTML
|
4233
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4234
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:07 +0100
|
4235
|
+
Processing by APIController#action as HTML
|
4236
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4237
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:08 +0100
|
4238
|
+
Processing by APIController#index as HTML
|
4239
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4240
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:08 +0100
|
4241
|
+
Processing by APIController#index as HTML
|
4242
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4243
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:08 +0100
|
4244
|
+
Processing by APIController#index as HTML
|
4245
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4246
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:08 +0100
|
4247
|
+
Processing by APIController#index as HTML
|
4248
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4249
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:08 +0100
|
4250
|
+
Processing by APIController#index as HTML
|
4251
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4252
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:08 +0100
|
4253
|
+
Processing by APIController#index as HTML
|
4254
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4255
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:08 +0100
|
4256
|
+
Processing by APIController#index as HTML
|
4257
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4258
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:08 +0100
|
4259
|
+
Processing by APIController#index as HTML
|
4260
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4261
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4262
|
+
Processing by APIController#action as HTML
|
4263
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4264
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4265
|
+
Processing by APIController#action as HTML
|
4266
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
4267
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4268
|
+
Processing by APIController#action as HTML
|
4269
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4270
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4271
|
+
Processing by APIController#action as HTML
|
4272
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4273
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4274
|
+
Processing by APIController#action as HTML
|
4275
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4276
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4277
|
+
Processing by APIController#action as HTML
|
4278
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4279
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4280
|
+
Processing by APIController#action as HTML
|
4281
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4282
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4283
|
+
Processing by APIController#index as HTML
|
4284
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4285
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4286
|
+
Processing by APIController#index as HTML
|
4287
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4288
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4289
|
+
Processing by APIController#index as HTML
|
4290
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4291
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4292
|
+
Processing by APIController#index as HTML
|
4293
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4294
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4295
|
+
Processing by APIController#index as HTML
|
4296
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4297
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:11 +0100
|
4298
|
+
Processing by APIController#index as HTML
|
4299
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4300
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:12 +0100
|
4301
|
+
Processing by APIController#index as HTML
|
4302
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4303
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:12 +0100
|
4304
|
+
Processing by APIController#index as HTML
|
4305
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
4306
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4307
|
+
Processing by APIController#action as HTML
|
4308
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4309
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4310
|
+
Processing by APIController#action as HTML
|
4311
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4312
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4313
|
+
Processing by APIController#action as HTML
|
4314
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4315
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4316
|
+
Processing by APIController#action as HTML
|
4317
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4318
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4319
|
+
Processing by APIController#action as HTML
|
4320
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4321
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4322
|
+
Processing by APIController#action as HTML
|
4323
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4324
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4325
|
+
Processing by APIController#action as HTML
|
4326
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4327
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4328
|
+
Processing by APIController#index as HTML
|
4329
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4330
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4331
|
+
Processing by APIController#index as HTML
|
4332
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4333
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4334
|
+
Processing by APIController#index as HTML
|
4335
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4336
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4337
|
+
Processing by APIController#index as HTML
|
4338
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4339
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4340
|
+
Processing by APIController#index as HTML
|
4341
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4342
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4343
|
+
Processing by APIController#index as HTML
|
4344
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4345
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4346
|
+
Processing by APIController#index as HTML
|
4347
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4348
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:16 +0100
|
4349
|
+
Processing by APIController#index as HTML
|
4350
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4351
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4352
|
+
Processing by APIController#action as HTML
|
4353
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4354
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4355
|
+
Processing by APIController#action as HTML
|
4356
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4357
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4358
|
+
Processing by APIController#action as HTML
|
4359
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4360
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4361
|
+
Processing by APIController#action as HTML
|
4362
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4363
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4364
|
+
Processing by APIController#action as HTML
|
4365
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4366
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4367
|
+
Processing by APIController#action as HTML
|
4368
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4369
|
+
Started GET "/action" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4370
|
+
Processing by APIController#action as HTML
|
4371
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4372
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4373
|
+
Processing by APIController#index as HTML
|
4374
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4375
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4376
|
+
Processing by APIController#index as HTML
|
4377
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4378
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4379
|
+
Processing by APIController#index as HTML
|
4380
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
4381
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4382
|
+
Processing by APIController#index as HTML
|
4383
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4384
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4385
|
+
Processing by APIController#index as HTML
|
4386
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4387
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4388
|
+
Processing by APIController#index as HTML
|
4389
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4390
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4391
|
+
Processing by APIController#index as HTML
|
4392
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4393
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:19 +0100
|
4394
|
+
Processing by APIController#index as HTML
|
4395
|
+
Completed 200 OK in 8ms (Views: 0.4ms)
|
4396
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4397
|
+
Processing by APIController#index as HTML
|
4398
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4399
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4400
|
+
Processing by APIController#index as HTML
|
4401
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4402
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4403
|
+
Processing by APIController#index as HTML
|
4404
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4405
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4406
|
+
Processing by APIController#index as HTML
|
4407
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4408
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4409
|
+
Processing by APIController#index as HTML
|
4410
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4411
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4412
|
+
Processing by APIController#index as HTML
|
4413
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4414
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4415
|
+
Processing by APIController#index as HTML
|
4416
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4417
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4418
|
+
Processing by APIController#index as HTML
|
4419
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4420
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4421
|
+
Processing by APIController#action as HTML
|
4422
|
+
Parameters: {"headers"=>nil}
|
4423
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
4424
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4425
|
+
Processing by APIController#action as HTML
|
4426
|
+
Parameters: {"headers"=>nil}
|
4427
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4428
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4429
|
+
Processing by APIController#action as HTML
|
4430
|
+
Parameters: {"headers"=>nil}
|
4431
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4432
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4433
|
+
Processing by APIController#action as HTML
|
4434
|
+
Parameters: {"headers"=>nil}
|
4435
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4436
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4437
|
+
Processing by APIController#action as HTML
|
4438
|
+
Parameters: {"headers"=>nil}
|
4439
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4440
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4441
|
+
Processing by APIController#action as HTML
|
4442
|
+
Parameters: {"headers"=>nil}
|
4443
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4444
|
+
Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 17:08:22 +0100
|
4445
|
+
Processing by APIController#action as HTML
|
4446
|
+
Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
|
4447
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4448
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4449
|
+
Processing by APIController#index as HTML
|
4450
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4451
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4452
|
+
Processing by APIController#index as HTML
|
4453
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4454
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4455
|
+
Processing by APIController#index as HTML
|
4456
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4457
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4458
|
+
Processing by APIController#index as HTML
|
4459
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4460
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4461
|
+
Processing by APIController#index as HTML
|
4462
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
4463
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4464
|
+
Processing by APIController#index as HTML
|
4465
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4466
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4467
|
+
Processing by APIController#index as HTML
|
4468
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4469
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4470
|
+
Processing by APIController#index as HTML
|
4471
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4472
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4473
|
+
Processing by APIController#action as HTML
|
4474
|
+
Parameters: {"headers"=>nil}
|
4475
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4476
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4477
|
+
Processing by APIController#action as HTML
|
4478
|
+
Parameters: {"headers"=>nil}
|
4479
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
4480
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4481
|
+
Processing by APIController#action as HTML
|
4482
|
+
Parameters: {"headers"=>nil}
|
4483
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4484
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4485
|
+
Processing by APIController#action as HTML
|
4486
|
+
Parameters: {"headers"=>nil}
|
4487
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4488
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4489
|
+
Processing by APIController#action as HTML
|
4490
|
+
Parameters: {"headers"=>nil}
|
4491
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4492
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4493
|
+
Processing by APIController#action as HTML
|
4494
|
+
Parameters: {"headers"=>nil}
|
4495
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4496
|
+
Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 17:08:27 +0100
|
4497
|
+
Processing by APIController#action as HTML
|
4498
|
+
Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
|
4499
|
+
Completed 200 OK in 5ms (Views: 0.3ms)
|
4500
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4501
|
+
Processing by APIController#action as HTML
|
4502
|
+
Parameters: {"headers"=>nil}
|
4503
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
4504
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4505
|
+
Processing by APIController#action as HTML
|
4506
|
+
Parameters: {"headers"=>nil}
|
4507
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4508
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4509
|
+
Processing by APIController#action as HTML
|
4510
|
+
Parameters: {"headers"=>nil}
|
4511
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4512
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4513
|
+
Processing by APIController#action as HTML
|
4514
|
+
Parameters: {"headers"=>nil}
|
4515
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4516
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4517
|
+
Processing by APIController#action as HTML
|
4518
|
+
Parameters: {"headers"=>nil}
|
4519
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4520
|
+
Started GET "/action?headers" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4521
|
+
Processing by APIController#action as HTML
|
4522
|
+
Parameters: {"headers"=>nil}
|
4523
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4524
|
+
Started GET "/action?headers[__OSN]=%2Ffuubar" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4525
|
+
Processing by APIController#action as HTML
|
4526
|
+
Parameters: {"headers"=>{"__OSN"=>"/fuubar"}}
|
4527
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4528
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4529
|
+
Processing by APIController#index as HTML
|
4530
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4531
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4532
|
+
Processing by APIController#index as HTML
|
4533
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4534
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4535
|
+
Processing by APIController#index as HTML
|
4536
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4537
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4538
|
+
Processing by APIController#index as HTML
|
4539
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4540
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4541
|
+
Processing by APIController#index as HTML
|
4542
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4543
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:29 +0100
|
4544
|
+
Processing by APIController#index as HTML
|
4545
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4546
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:30 +0100
|
4547
|
+
Processing by APIController#index as HTML
|
4548
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4549
|
+
Started GET "/" for 127.0.0.1 at 2017-11-06 17:08:30 +0100
|
4550
|
+
Processing by APIController#index as HTML
|
4551
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4552
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4553
|
+
Processing by APIController#index as HTML
|
4554
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4555
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4556
|
+
Processing by APIController#index as HTML
|
4557
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4558
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4559
|
+
Processing by APIController#index as HTML
|
4560
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4561
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4562
|
+
Processing by APIController#index as HTML
|
4563
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
4564
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4565
|
+
Processing by APIController#index as HTML
|
4566
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4567
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4568
|
+
Processing by APIController#index as HTML
|
4569
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4570
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4571
|
+
Processing by APIController#index as HTML
|
4572
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4573
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4574
|
+
Processing by APIController#index as HTML
|
4575
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4576
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4577
|
+
Processing by APIController#action as HTML
|
4578
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4579
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4580
|
+
Processing by APIController#action as HTML
|
4581
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4582
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4583
|
+
Processing by APIController#action as HTML
|
4584
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4585
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4586
|
+
Processing by APIController#action as HTML
|
4587
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4588
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4589
|
+
Processing by APIController#action as HTML
|
4590
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4591
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4592
|
+
Processing by APIController#action as HTML
|
4593
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4594
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:54:23 +0100
|
4595
|
+
Processing by APIController#action as HTML
|
4596
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4597
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4598
|
+
Processing by APIController#action as HTML
|
4599
|
+
Parameters: {"headers"=>nil}
|
4600
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4601
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4602
|
+
Processing by APIController#action as HTML
|
4603
|
+
Parameters: {"headers"=>nil}
|
4604
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4605
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4606
|
+
Processing by APIController#action as HTML
|
4607
|
+
Parameters: {"headers"=>nil}
|
4608
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4609
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4610
|
+
Processing by APIController#action as HTML
|
4611
|
+
Parameters: {"headers"=>nil}
|
4612
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4613
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4614
|
+
Processing by APIController#action as HTML
|
4615
|
+
Parameters: {"headers"=>nil}
|
4616
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4617
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4618
|
+
Processing by APIController#action as HTML
|
4619
|
+
Parameters: {"headers"=>nil}
|
4620
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4621
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4622
|
+
Processing by APIController#index as HTML
|
4623
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4624
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4625
|
+
Processing by APIController#index as HTML
|
4626
|
+
Completed 200 OK in 3ms (Views: 0.1ms)
|
4627
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4628
|
+
Processing by APIController#index as HTML
|
4629
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4630
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4631
|
+
Processing by APIController#index as HTML
|
4632
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4633
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4634
|
+
Processing by APIController#index as HTML
|
4635
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4636
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4637
|
+
Processing by APIController#index as HTML
|
4638
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
4639
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4640
|
+
Processing by APIController#index as HTML
|
4641
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4642
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:56 +0100
|
4643
|
+
Processing by APIController#index as HTML
|
4644
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4645
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4646
|
+
Processing by APIController#action as HTML
|
4647
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4648
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4649
|
+
Processing by APIController#action as HTML
|
4650
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4651
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4652
|
+
Processing by APIController#action as HTML
|
4653
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4654
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4655
|
+
Processing by APIController#action as HTML
|
4656
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4657
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4658
|
+
Processing by APIController#action as HTML
|
4659
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4660
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4661
|
+
Processing by APIController#action as HTML
|
4662
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4663
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4664
|
+
Processing by APIController#action as HTML
|
4665
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4666
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4667
|
+
Processing by APIController#index as HTML
|
4668
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4669
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4670
|
+
Processing by APIController#index as HTML
|
4671
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
4672
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4673
|
+
Processing by APIController#index as HTML
|
4674
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
4675
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4676
|
+
Processing by APIController#index as HTML
|
4677
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4678
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4679
|
+
Processing by APIController#index as HTML
|
4680
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
4681
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4682
|
+
Processing by APIController#index as HTML
|
4683
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
4684
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4685
|
+
Processing by APIController#index as HTML
|
4686
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4687
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:57 +0100
|
4688
|
+
Processing by APIController#index as HTML
|
4689
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4690
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4691
|
+
Processing by APIController#index as HTML
|
4692
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4693
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4694
|
+
Processing by APIController#index as HTML
|
4695
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4696
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4697
|
+
Processing by APIController#index as HTML
|
4698
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4699
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4700
|
+
Processing by APIController#index as HTML
|
4701
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4702
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4703
|
+
Processing by APIController#index as HTML
|
4704
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4705
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4706
|
+
Processing by APIController#index as HTML
|
4707
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4708
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4709
|
+
Processing by APIController#index as HTML
|
4710
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4711
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4712
|
+
Processing by APIController#index as HTML
|
4713
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4714
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4715
|
+
Processing by APIController#action as HTML
|
4716
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4717
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4718
|
+
Processing by APIController#action as HTML
|
4719
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4720
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4721
|
+
Processing by APIController#action as HTML
|
4722
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4723
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4724
|
+
Processing by APIController#action as HTML
|
4725
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4726
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4727
|
+
Processing by APIController#action as HTML
|
4728
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4729
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4730
|
+
Processing by APIController#action as HTML
|
4731
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4732
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 17:59:59 +0100
|
4733
|
+
Processing by APIController#action as HTML
|
4734
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4735
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4736
|
+
Processing by APIController#index as HTML
|
4737
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4738
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4739
|
+
Processing by APIController#index as HTML
|
4740
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4741
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4742
|
+
Processing by APIController#index as HTML
|
4743
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
4744
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4745
|
+
Processing by APIController#index as HTML
|
4746
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4747
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4748
|
+
Processing by APIController#index as HTML
|
4749
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4750
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4751
|
+
Processing by APIController#index as HTML
|
4752
|
+
Completed 200 OK in 2ms (Views: 0.1ms)
|
4753
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4754
|
+
Processing by APIController#index as HTML
|
4755
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4756
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4757
|
+
Processing by APIController#index as HTML
|
4758
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4759
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4760
|
+
Processing by APIController#action as HTML
|
4761
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4762
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4763
|
+
Processing by APIController#action as HTML
|
4764
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4765
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4766
|
+
Processing by APIController#action as HTML
|
4767
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4768
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4769
|
+
Processing by APIController#action as HTML
|
4770
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4771
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4772
|
+
Processing by APIController#action as HTML
|
4773
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4774
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4775
|
+
Processing by APIController#action as HTML
|
4776
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4777
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:00 +0100
|
4778
|
+
Processing by APIController#action as HTML
|
4779
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4780
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4781
|
+
Processing by APIController#action as HTML
|
4782
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4783
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4784
|
+
Processing by APIController#action as HTML
|
4785
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4786
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4787
|
+
Processing by APIController#action as HTML
|
4788
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4789
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4790
|
+
Processing by APIController#action as HTML
|
4791
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4792
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4793
|
+
Processing by APIController#action as HTML
|
4794
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4795
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4796
|
+
Processing by APIController#action as HTML
|
4797
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4798
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4799
|
+
Processing by APIController#action as HTML
|
4800
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4801
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4802
|
+
Processing by APIController#index as HTML
|
4803
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4804
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4805
|
+
Processing by APIController#index as HTML
|
4806
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4807
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4808
|
+
Processing by APIController#index as HTML
|
4809
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4810
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4811
|
+
Processing by APIController#index as HTML
|
4812
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4813
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4814
|
+
Processing by APIController#index as HTML
|
4815
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4816
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4817
|
+
Processing by APIController#index as HTML
|
4818
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4819
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4820
|
+
Processing by APIController#index as HTML
|
4821
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4822
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:00:01 +0100
|
4823
|
+
Processing by APIController#index as HTML
|
4824
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4825
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4826
|
+
Processing by APIController#index as HTML
|
4827
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
4828
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4829
|
+
Processing by APIController#index as HTML
|
4830
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4831
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4832
|
+
Processing by APIController#index as HTML
|
4833
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4834
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4835
|
+
Processing by APIController#index as HTML
|
4836
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4837
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4838
|
+
Processing by APIController#index as HTML
|
4839
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4840
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4841
|
+
Processing by APIController#index as HTML
|
4842
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4843
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4844
|
+
Processing by APIController#index as HTML
|
4845
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4846
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4847
|
+
Processing by APIController#index as HTML
|
4848
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4849
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4850
|
+
Processing by APIController#action as HTML
|
4851
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4852
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4853
|
+
Processing by APIController#action as HTML
|
4854
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4855
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4856
|
+
Processing by APIController#action as HTML
|
4857
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4858
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4859
|
+
Processing by APIController#action as HTML
|
4860
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4861
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4862
|
+
Processing by APIController#action as HTML
|
4863
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4864
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4865
|
+
Processing by APIController#action as HTML
|
4866
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4867
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:33 +0100
|
4868
|
+
Processing by APIController#action as HTML
|
4869
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4870
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4871
|
+
Processing by APIController#index as HTML
|
4872
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4873
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4874
|
+
Processing by APIController#index as HTML
|
4875
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4876
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4877
|
+
Processing by APIController#index as HTML
|
4878
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4879
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4880
|
+
Processing by APIController#index as HTML
|
4881
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4882
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4883
|
+
Processing by APIController#index as HTML
|
4884
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4885
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4886
|
+
Processing by APIController#index as HTML
|
4887
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4888
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4889
|
+
Processing by APIController#index as HTML
|
4890
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4891
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4892
|
+
Processing by APIController#index as HTML
|
4893
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4894
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4895
|
+
Processing by APIController#action as HTML
|
4896
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4897
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4898
|
+
Processing by APIController#action as HTML
|
4899
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4900
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4901
|
+
Processing by APIController#action as HTML
|
4902
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4903
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4904
|
+
Processing by APIController#action as HTML
|
4905
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4906
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4907
|
+
Processing by APIController#action as HTML
|
4908
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4909
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4910
|
+
Processing by APIController#action as HTML
|
4911
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4912
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:01:41 +0100
|
4913
|
+
Processing by APIController#action as HTML
|
4914
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4915
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4916
|
+
Processing by APIController#index as HTML
|
4917
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4918
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4919
|
+
Processing by APIController#index as HTML
|
4920
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4921
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4922
|
+
Processing by APIController#index as HTML
|
4923
|
+
Completed 200 OK in 5ms (Views: 0.2ms)
|
4924
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4925
|
+
Processing by APIController#index as HTML
|
4926
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4927
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4928
|
+
Processing by APIController#index as HTML
|
4929
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4930
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4931
|
+
Processing by APIController#index as HTML
|
4932
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4933
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4934
|
+
Processing by APIController#index as HTML
|
4935
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4936
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4937
|
+
Processing by APIController#index as HTML
|
4938
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4939
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4940
|
+
Processing by APIController#action as HTML
|
4941
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4942
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4943
|
+
Processing by APIController#action as HTML
|
4944
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4945
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4946
|
+
Processing by APIController#action as HTML
|
4947
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4948
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4949
|
+
Processing by APIController#action as HTML
|
4950
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4951
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4952
|
+
Processing by APIController#action as HTML
|
4953
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4954
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4955
|
+
Processing by APIController#action as HTML
|
4956
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4957
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:20 +0100
|
4958
|
+
Processing by APIController#action as HTML
|
4959
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4960
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4961
|
+
Processing by APIController#action as HTML
|
4962
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
4963
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4964
|
+
Processing by APIController#action as HTML
|
4965
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4966
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4967
|
+
Processing by APIController#action as HTML
|
4968
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4969
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4970
|
+
Processing by APIController#action as HTML
|
4971
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4972
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4973
|
+
Processing by APIController#action as HTML
|
4974
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4975
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4976
|
+
Processing by APIController#action as HTML
|
4977
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4978
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4979
|
+
Processing by APIController#action as HTML
|
4980
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4981
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4982
|
+
Processing by APIController#index as HTML
|
4983
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4984
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4985
|
+
Processing by APIController#index as HTML
|
4986
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4987
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4988
|
+
Processing by APIController#index as HTML
|
4989
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4990
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4991
|
+
Processing by APIController#index as HTML
|
4992
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
4993
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4994
|
+
Processing by APIController#index as HTML
|
4995
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4996
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
4997
|
+
Processing by APIController#index as HTML
|
4998
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
4999
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
5000
|
+
Processing by APIController#index as HTML
|
5001
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5002
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:02:22 +0100
|
5003
|
+
Processing by APIController#index as HTML
|
5004
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5005
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5006
|
+
Processing by APIController#index as HTML
|
5007
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5008
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5009
|
+
Processing by APIController#index as HTML
|
5010
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5011
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5012
|
+
Processing by APIController#index as HTML
|
5013
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5014
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5015
|
+
Processing by APIController#index as HTML
|
5016
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5017
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5018
|
+
Processing by APIController#index as HTML
|
5019
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5020
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5021
|
+
Processing by APIController#index as HTML
|
5022
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5023
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5024
|
+
Processing by APIController#index as HTML
|
5025
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5026
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5027
|
+
Processing by APIController#index as HTML
|
5028
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5029
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5030
|
+
Processing by APIController#action as HTML
|
5031
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5032
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5033
|
+
Processing by APIController#action as HTML
|
5034
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5035
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5036
|
+
Processing by APIController#action as HTML
|
5037
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5038
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5039
|
+
Processing by APIController#action as HTML
|
5040
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5041
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5042
|
+
Processing by APIController#action as HTML
|
5043
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5044
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5045
|
+
Processing by APIController#action as HTML
|
5046
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5047
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:03:17 +0100
|
5048
|
+
Processing by APIController#action as HTML
|
5049
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5050
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5051
|
+
Processing by APIController#action as HTML
|
5052
|
+
Completed 500 Internal Server Error in 0ms
|
5053
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5054
|
+
Processing by APIController#action as HTML
|
5055
|
+
Completed 500 Internal Server Error in 0ms
|
5056
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5057
|
+
Processing by APIController#action as HTML
|
5058
|
+
Completed 500 Internal Server Error in 0ms
|
5059
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5060
|
+
Processing by APIController#action as HTML
|
5061
|
+
Completed 500 Internal Server Error in 0ms
|
5062
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5063
|
+
Processing by APIController#action as HTML
|
5064
|
+
Completed 500 Internal Server Error in 0ms
|
5065
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5066
|
+
Processing by APIController#action as HTML
|
5067
|
+
Completed 500 Internal Server Error in 0ms
|
5068
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5069
|
+
Processing by APIController#action as HTML
|
5070
|
+
Completed 500 Internal Server Error in 0ms
|
5071
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5072
|
+
Processing by APIController#index as HTML
|
5073
|
+
Completed 500 Internal Server Error in 0ms
|
5074
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5075
|
+
Processing by APIController#index as HTML
|
5076
|
+
Completed 500 Internal Server Error in 0ms
|
5077
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5078
|
+
Processing by APIController#index as HTML
|
5079
|
+
Completed 500 Internal Server Error in 0ms
|
5080
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5081
|
+
Processing by APIController#index as HTML
|
5082
|
+
Completed 500 Internal Server Error in 0ms
|
5083
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5084
|
+
Processing by APIController#index as HTML
|
5085
|
+
Completed 500 Internal Server Error in 0ms
|
5086
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5087
|
+
Processing by APIController#index as HTML
|
5088
|
+
Completed 500 Internal Server Error in 0ms
|
5089
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5090
|
+
Processing by APIController#index as HTML
|
5091
|
+
Completed 500 Internal Server Error in 0ms
|
5092
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:07:43 +0100
|
5093
|
+
Processing by APIController#index as HTML
|
5094
|
+
Completed 500 Internal Server Error in 0ms
|
5095
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5096
|
+
Processing by APIController#index as HTML
|
5097
|
+
Completed 500 Internal Server Error in 0ms
|
5098
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5099
|
+
Processing by APIController#index as HTML
|
5100
|
+
Completed 500 Internal Server Error in 0ms
|
5101
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5102
|
+
Processing by APIController#index as HTML
|
5103
|
+
Completed 500 Internal Server Error in 0ms
|
5104
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5105
|
+
Processing by APIController#index as HTML
|
5106
|
+
Completed 500 Internal Server Error in 0ms
|
5107
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5108
|
+
Processing by APIController#index as HTML
|
5109
|
+
Completed 500 Internal Server Error in 0ms
|
5110
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5111
|
+
Processing by APIController#index as HTML
|
5112
|
+
Completed 500 Internal Server Error in 0ms
|
5113
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5114
|
+
Processing by APIController#index as HTML
|
5115
|
+
Completed 500 Internal Server Error in 0ms
|
5116
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5117
|
+
Processing by APIController#index as HTML
|
5118
|
+
Completed 500 Internal Server Error in 0ms
|
5119
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5120
|
+
Processing by APIController#action as HTML
|
5121
|
+
Completed 500 Internal Server Error in 0ms
|
5122
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5123
|
+
Processing by APIController#action as HTML
|
5124
|
+
Completed 500 Internal Server Error in 0ms
|
5125
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5126
|
+
Processing by APIController#action as HTML
|
5127
|
+
Completed 500 Internal Server Error in 0ms
|
5128
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5129
|
+
Processing by APIController#action as HTML
|
5130
|
+
Completed 500 Internal Server Error in 0ms
|
5131
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5132
|
+
Processing by APIController#action as HTML
|
5133
|
+
Completed 500 Internal Server Error in 0ms
|
5134
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5135
|
+
Processing by APIController#action as HTML
|
5136
|
+
Completed 500 Internal Server Error in 0ms
|
5137
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:00 +0100
|
5138
|
+
Processing by APIController#action as HTML
|
5139
|
+
Completed 500 Internal Server Error in 0ms
|
5140
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5141
|
+
Processing by APIController#index as HTML
|
5142
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5143
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5144
|
+
Processing by APIController#index as HTML
|
5145
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5146
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5147
|
+
Processing by APIController#index as HTML
|
5148
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5149
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5150
|
+
Processing by APIController#index as HTML
|
5151
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5152
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5153
|
+
Processing by APIController#index as HTML
|
5154
|
+
Completed 200 OK in 3ms (Views: 0.1ms)
|
5155
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5156
|
+
Processing by APIController#index as HTML
|
5157
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5158
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5159
|
+
Processing by APIController#index as HTML
|
5160
|
+
Completed 200 OK in 0ms (Views: 0.1ms)
|
5161
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5162
|
+
Processing by APIController#index as HTML
|
5163
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5164
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5165
|
+
Processing by APIController#action as HTML
|
5166
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5167
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5168
|
+
Processing by APIController#action as HTML
|
5169
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5170
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5171
|
+
Processing by APIController#action as HTML
|
5172
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5173
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5174
|
+
Processing by APIController#action as HTML
|
5175
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5176
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5177
|
+
Processing by APIController#action as HTML
|
5178
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5179
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5180
|
+
Processing by APIController#action as HTML
|
5181
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5182
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:08:09 +0100
|
5183
|
+
Processing by APIController#action as HTML
|
5184
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5185
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5186
|
+
Processing by APIController#index as HTML
|
5187
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5188
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5189
|
+
Processing by APIController#index as HTML
|
5190
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5191
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5192
|
+
Processing by APIController#index as HTML
|
5193
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5194
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5195
|
+
Processing by APIController#index as HTML
|
5196
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5197
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5198
|
+
Processing by APIController#index as HTML
|
5199
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5200
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5201
|
+
Processing by APIController#index as HTML
|
5202
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5203
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5204
|
+
Processing by APIController#index as HTML
|
5205
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5206
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5207
|
+
Processing by APIController#index as HTML
|
5208
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5209
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5210
|
+
Processing by APIController#action as HTML
|
5211
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5212
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5213
|
+
Processing by APIController#action as HTML
|
5214
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5215
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5216
|
+
Processing by APIController#action as HTML
|
5217
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5218
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5219
|
+
Processing by APIController#action as HTML
|
5220
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5221
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5222
|
+
Processing by APIController#action as HTML
|
5223
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5224
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5225
|
+
Processing by APIController#action as HTML
|
5226
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5227
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:09:56 +0100
|
5228
|
+
Processing by APIController#action as HTML
|
5229
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5230
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5231
|
+
Processing by APIController#action as HTML
|
5232
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5233
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5234
|
+
Processing by APIController#action as HTML
|
5235
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5236
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5237
|
+
Processing by APIController#action as HTML
|
5238
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5239
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5240
|
+
Processing by APIController#action as HTML
|
5241
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5242
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5243
|
+
Processing by APIController#action as HTML
|
5244
|
+
Completed 200 OK in 3ms (Views: 2.7ms)
|
5245
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5246
|
+
Processing by APIController#action as HTML
|
5247
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5248
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5249
|
+
Processing by APIController#action as HTML
|
5250
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5251
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5252
|
+
Processing by APIController#index as HTML
|
5253
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5254
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5255
|
+
Processing by APIController#index as HTML
|
5256
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5257
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5258
|
+
Processing by APIController#index as HTML
|
5259
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5260
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5261
|
+
Processing by APIController#index as HTML
|
5262
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5263
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5264
|
+
Processing by APIController#index as HTML
|
5265
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5266
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5267
|
+
Processing by APIController#index as HTML
|
5268
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5269
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5270
|
+
Processing by APIController#index as HTML
|
5271
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5272
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:27 +0100
|
5273
|
+
Processing by APIController#index as HTML
|
5274
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5275
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5276
|
+
Processing by APIController#action as HTML
|
5277
|
+
Parameters: {"headers"=>nil}
|
5278
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5279
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5280
|
+
Processing by APIController#action as HTML
|
5281
|
+
Parameters: {"headers"=>nil}
|
5282
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5283
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5284
|
+
Processing by APIController#action as HTML
|
5285
|
+
Parameters: {"headers"=>nil}
|
5286
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5287
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5288
|
+
Processing by APIController#action as HTML
|
5289
|
+
Parameters: {"headers"=>nil}
|
5290
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5291
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5292
|
+
Processing by APIController#action as HTML
|
5293
|
+
Parameters: {"headers"=>nil}
|
5294
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5295
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5296
|
+
Processing by APIController#action as HTML
|
5297
|
+
Parameters: {"headers"=>nil}
|
5298
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5299
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5300
|
+
Processing by APIController#index as HTML
|
5301
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5302
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5303
|
+
Processing by APIController#index as HTML
|
5304
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5305
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5306
|
+
Processing by APIController#index as HTML
|
5307
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5308
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5309
|
+
Processing by APIController#index as HTML
|
5310
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5311
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5312
|
+
Processing by APIController#index as HTML
|
5313
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5314
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5315
|
+
Processing by APIController#index as HTML
|
5316
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5317
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5318
|
+
Processing by APIController#index as HTML
|
5319
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5320
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:37 +0100
|
5321
|
+
Processing by APIController#index as HTML
|
5322
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5323
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5324
|
+
Processing by APIController#action as HTML
|
5325
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5326
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5327
|
+
Processing by APIController#action as HTML
|
5328
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5329
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5330
|
+
Processing by APIController#action as HTML
|
5331
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5332
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5333
|
+
Processing by APIController#action as HTML
|
5334
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5335
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5336
|
+
Processing by APIController#action as HTML
|
5337
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5338
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5339
|
+
Processing by APIController#action as HTML
|
5340
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5341
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5342
|
+
Processing by APIController#action as HTML
|
5343
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5344
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5345
|
+
Processing by APIController#index as HTML
|
5346
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5347
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5348
|
+
Processing by APIController#index as HTML
|
5349
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5350
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5351
|
+
Processing by APIController#index as HTML
|
5352
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5353
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5354
|
+
Processing by APIController#index as HTML
|
5355
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5356
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5357
|
+
Processing by APIController#index as HTML
|
5358
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5359
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5360
|
+
Processing by APIController#index as HTML
|
5361
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5362
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5363
|
+
Processing by APIController#index as HTML
|
5364
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5365
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:38 +0100
|
5366
|
+
Processing by APIController#index as HTML
|
5367
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5368
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:39 +0100
|
5369
|
+
Processing by APIController#index as HTML
|
5370
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5371
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5372
|
+
Processing by APIController#index as HTML
|
5373
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5374
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5375
|
+
Processing by APIController#index as HTML
|
5376
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5377
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5378
|
+
Processing by APIController#index as HTML
|
5379
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5380
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5381
|
+
Processing by APIController#index as HTML
|
5382
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5383
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5384
|
+
Processing by APIController#index as HTML
|
5385
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5386
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5387
|
+
Processing by APIController#index as HTML
|
5388
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5389
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5390
|
+
Processing by APIController#index as HTML
|
5391
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5392
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5393
|
+
Processing by APIController#action as HTML
|
5394
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5395
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5396
|
+
Processing by APIController#action as HTML
|
5397
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
5398
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5399
|
+
Processing by APIController#action as HTML
|
5400
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5401
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5402
|
+
Processing by APIController#action as HTML
|
5403
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5404
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5405
|
+
Processing by APIController#action as HTML
|
5406
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5407
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5408
|
+
Processing by APIController#action as HTML
|
5409
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5410
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:40 +0100
|
5411
|
+
Processing by APIController#action as HTML
|
5412
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5413
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5414
|
+
Processing by APIController#action as HTML
|
5415
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5416
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5417
|
+
Processing by APIController#action as HTML
|
5418
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5419
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5420
|
+
Processing by APIController#action as HTML
|
5421
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5422
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5423
|
+
Processing by APIController#action as HTML
|
5424
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5425
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5426
|
+
Processing by APIController#action as HTML
|
5427
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5428
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5429
|
+
Processing by APIController#action as HTML
|
5430
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5431
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5432
|
+
Processing by APIController#action as HTML
|
5433
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5434
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5435
|
+
Processing by APIController#index as HTML
|
5436
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5437
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5438
|
+
Processing by APIController#index as HTML
|
5439
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5440
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5441
|
+
Processing by APIController#index as HTML
|
5442
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5443
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5444
|
+
Processing by APIController#index as HTML
|
5445
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5446
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5447
|
+
Processing by APIController#index as HTML
|
5448
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5449
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5450
|
+
Processing by APIController#index as HTML
|
5451
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5452
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5453
|
+
Processing by APIController#index as HTML
|
5454
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5455
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:41 +0100
|
5456
|
+
Processing by APIController#index as HTML
|
5457
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5458
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5459
|
+
Processing by APIController#index as HTML
|
5460
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5461
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5462
|
+
Processing by APIController#index as HTML
|
5463
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5464
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5465
|
+
Processing by APIController#index as HTML
|
5466
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5467
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5468
|
+
Processing by APIController#index as HTML
|
5469
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5470
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5471
|
+
Processing by APIController#index as HTML
|
5472
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5473
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5474
|
+
Processing by APIController#index as HTML
|
5475
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5476
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5477
|
+
Processing by APIController#index as HTML
|
5478
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5479
|
+
Started GET "/" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5480
|
+
Processing by APIController#index as HTML
|
5481
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5482
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5483
|
+
Processing by APIController#action as HTML
|
5484
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5485
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5486
|
+
Processing by APIController#action as HTML
|
5487
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5488
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5489
|
+
Processing by APIController#action as HTML
|
5490
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5491
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5492
|
+
Processing by APIController#action as HTML
|
5493
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5494
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5495
|
+
Processing by APIController#action as HTML
|
5496
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5497
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5498
|
+
Processing by APIController#action as HTML
|
5499
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5500
|
+
Started GET "/action" for 127.0.0.1 at 2018-02-20 18:13:42 +0100
|
5501
|
+
Processing by APIController#action as HTML
|
5502
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5503
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5504
|
+
Processing by APIController#action as HTML
|
5505
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5506
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5507
|
+
Processing by APIController#action as HTML
|
5508
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5509
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5510
|
+
Processing by APIController#action as HTML
|
5511
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5512
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5513
|
+
Processing by APIController#action as HTML
|
5514
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5515
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5516
|
+
Processing by APIController#action as HTML
|
5517
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5518
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5519
|
+
Processing by APIController#action as HTML
|
5520
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5521
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5522
|
+
Processing by APIController#action as HTML
|
5523
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5524
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5525
|
+
Processing by APIController#index as HTML
|
5526
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5527
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5528
|
+
Processing by APIController#index as HTML
|
5529
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5530
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5531
|
+
Processing by APIController#index as HTML
|
5532
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5533
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5534
|
+
Processing by APIController#index as HTML
|
5535
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5536
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5537
|
+
Processing by APIController#index as HTML
|
5538
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5539
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5540
|
+
Processing by APIController#index as HTML
|
5541
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5542
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5543
|
+
Processing by APIController#index as HTML
|
5544
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5545
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:51:56 +0200
|
5546
|
+
Processing by APIController#index as HTML
|
5547
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5548
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5549
|
+
Processing by APIController#action as HTML
|
5550
|
+
Parameters: {"headers"=>nil}
|
5551
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5552
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5553
|
+
Processing by APIController#action as HTML
|
5554
|
+
Parameters: {"headers"=>nil}
|
5555
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5556
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5557
|
+
Processing by APIController#action as HTML
|
5558
|
+
Parameters: {"headers"=>nil}
|
5559
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5560
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5561
|
+
Processing by APIController#action as HTML
|
5562
|
+
Parameters: {"headers"=>nil}
|
5563
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5564
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5565
|
+
Processing by APIController#action as HTML
|
5566
|
+
Parameters: {"headers"=>nil}
|
5567
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5568
|
+
Started GET "/action?headers" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5569
|
+
Processing by APIController#action as HTML
|
5570
|
+
Parameters: {"headers"=>nil}
|
5571
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5572
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5573
|
+
Processing by APIController#index as HTML
|
5574
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5575
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5576
|
+
Processing by APIController#index as HTML
|
5577
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5578
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5579
|
+
Processing by APIController#index as HTML
|
5580
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5581
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5582
|
+
Processing by APIController#index as HTML
|
5583
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5584
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5585
|
+
Processing by APIController#index as HTML
|
5586
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5587
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5588
|
+
Processing by APIController#index as HTML
|
5589
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5590
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5591
|
+
Processing by APIController#index as HTML
|
5592
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5593
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:51 +0200
|
5594
|
+
Processing by APIController#index as HTML
|
5595
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5596
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5597
|
+
Processing by APIController#index as HTML
|
5598
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5599
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5600
|
+
Processing by APIController#index as HTML
|
5601
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5602
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5603
|
+
Processing by APIController#index as HTML
|
5604
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5605
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5606
|
+
Processing by APIController#index as HTML
|
5607
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5608
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5609
|
+
Processing by APIController#index as HTML
|
5610
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5611
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5612
|
+
Processing by APIController#index as HTML
|
5613
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5614
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5615
|
+
Processing by APIController#index as HTML
|
5616
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5617
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5618
|
+
Processing by APIController#index as HTML
|
5619
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5620
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5621
|
+
Processing by APIController#action as HTML
|
5622
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5623
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5624
|
+
Processing by APIController#action as HTML
|
5625
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5626
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5627
|
+
Processing by APIController#action as HTML
|
5628
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5629
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5630
|
+
Processing by APIController#action as HTML
|
5631
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5632
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5633
|
+
Processing by APIController#action as HTML
|
5634
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5635
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5636
|
+
Processing by APIController#action as HTML
|
5637
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5638
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:53 +0200
|
5639
|
+
Processing by APIController#action as HTML
|
5640
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5641
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5642
|
+
Processing by APIController#action as HTML
|
5643
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5644
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5645
|
+
Processing by APIController#action as HTML
|
5646
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5647
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5648
|
+
Processing by APIController#action as HTML
|
5649
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5650
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5651
|
+
Processing by APIController#action as HTML
|
5652
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5653
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5654
|
+
Processing by APIController#action as HTML
|
5655
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5656
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5657
|
+
Processing by APIController#action as HTML
|
5658
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5659
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5660
|
+
Processing by APIController#action as HTML
|
5661
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5662
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5663
|
+
Processing by APIController#index as HTML
|
5664
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5665
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5666
|
+
Processing by APIController#index as HTML
|
5667
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5668
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5669
|
+
Processing by APIController#index as HTML
|
5670
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5671
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5672
|
+
Processing by APIController#index as HTML
|
5673
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5674
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5675
|
+
Processing by APIController#index as HTML
|
5676
|
+
Completed 200 OK in 3ms (Views: 0.1ms)
|
5677
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5678
|
+
Processing by APIController#index as HTML
|
5679
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5680
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5681
|
+
Processing by APIController#index as HTML
|
5682
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5683
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:54 +0200
|
5684
|
+
Processing by APIController#index as HTML
|
5685
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5686
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5687
|
+
Processing by APIController#action as HTML
|
5688
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5689
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5690
|
+
Processing by APIController#action as HTML
|
5691
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5692
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5693
|
+
Processing by APIController#action as HTML
|
5694
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5695
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5696
|
+
Processing by APIController#action as HTML
|
5697
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5698
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5699
|
+
Processing by APIController#action as HTML
|
5700
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5701
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5702
|
+
Processing by APIController#action as HTML
|
5703
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5704
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5705
|
+
Processing by APIController#action as HTML
|
5706
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5707
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5708
|
+
Processing by APIController#index as HTML
|
5709
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5710
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5711
|
+
Processing by APIController#index as HTML
|
5712
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5713
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5714
|
+
Processing by APIController#index as HTML
|
5715
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
5716
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5717
|
+
Processing by APIController#index as HTML
|
5718
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5719
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5720
|
+
Processing by APIController#index as HTML
|
5721
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5722
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5723
|
+
Processing by APIController#index as HTML
|
5724
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5725
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5726
|
+
Processing by APIController#index as HTML
|
5727
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5728
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:56 +0200
|
5729
|
+
Processing by APIController#index as HTML
|
5730
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5731
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5732
|
+
Processing by APIController#index as HTML
|
5733
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5734
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5735
|
+
Processing by APIController#index as HTML
|
5736
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5737
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5738
|
+
Processing by APIController#index as HTML
|
5739
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5740
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5741
|
+
Processing by APIController#index as HTML
|
5742
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5743
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5744
|
+
Processing by APIController#index as HTML
|
5745
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5746
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5747
|
+
Processing by APIController#index as HTML
|
5748
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5749
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5750
|
+
Processing by APIController#index as HTML
|
5751
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5752
|
+
Started GET "/" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5753
|
+
Processing by APIController#index as HTML
|
5754
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5755
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5756
|
+
Processing by APIController#action as HTML
|
5757
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5758
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5759
|
+
Processing by APIController#action as HTML
|
5760
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5761
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5762
|
+
Processing by APIController#action as HTML
|
5763
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5764
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5765
|
+
Processing by APIController#action as HTML
|
5766
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5767
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5768
|
+
Processing by APIController#action as HTML
|
5769
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
5770
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5771
|
+
Processing by APIController#action as HTML
|
5772
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
5773
|
+
Started GET "/action" for 127.0.0.1 at 2018-03-28 12:54:57 +0200
|
5774
|
+
Processing by APIController#action as HTML
|
5775
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|