rails-rfc6570 2.4.0 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d7a955851e32d82e88bbefeee5028be09b6021fb916992111cf99792961fe16a
4
- data.tar.gz: fec1dca0ee19216b065ae0414b6aff90acf7f0bfe45ee065b1ca5592d212f514
3
+ metadata.gz: 8526615ae06cd6c8ca8cde71ea61249827646e1fabf6b655c05706062be3e4d2
4
+ data.tar.gz: 37cfb563a826b507523997b6aadd02580a844e573211bfc7f80b3caa42d90c66
5
5
  SHA512:
6
- metadata.gz: e01b0295800281973b94d052d2cb62121c5c46dd3997d9a851c7cbfeb55b7f709dba7cf0e6696d19ee862abd6a031e842e2596092f608a3f02a82022499d63f4
7
- data.tar.gz: e27d46ed3d50d317b66576f450f339c23351befc763b9bf6c5262243d55665aef71a34e9d858fc7ab2a30ad260338f443970bd73218c441ee90bbfa0b48738de
6
+ metadata.gz: 74bf6d20d7e6aa3f8cf1b366a70b1397d1e42cdf28fc4e12b0f33fbb37078818b6a4dc7f36a581c5dab45f43242345d541d62611aba2190d942b1233d2f62730
7
+ data.tar.gz: 4f4a6eeb5297a1771c865e070fd3c7728fa6b41ac44251ed2d8e002985e60aee4734c49f4f32a6b93c43b5bc239a5dd3e09d30f36adcf74e160730ffe0add461
@@ -1,44 +1,77 @@
1
1
  # Changelog
2
2
 
3
+ All notable changes to this project will be documented in this file.
4
+ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Changelog](http://keepachangelog.com/).
5
+
6
+
7
+ ## Unreleased
8
+ ---
9
+
10
+ ### New
11
+
12
+ ### Changes
13
+
14
+ ### Fixes
15
+
16
+ ### Breaks
17
+
18
+
19
+ ## 2.5.0 - (2020-12-13)
20
+ ---
21
+
22
+ ### New
23
+ * Add support for Rails 6.1
24
+
25
+
3
26
  ## 2.4.0
27
+ ---
4
28
 
5
29
  * Add support for Rails 6.0
6
30
 
7
31
  ## 2.3.0
32
+ ---
8
33
 
9
34
  * Newly written visitor and formatter to improve performance (#3)
10
35
  * Nested groups are expanded into a list of groups
11
36
 
12
37
  ## 2.2.0
38
+ ---
13
39
 
14
40
  * Add support to Rails 5.2 to gemspec
15
41
 
16
42
  ## 2.1.0
43
+ ---
17
44
 
18
45
  * Add emulation for Rails' routing behavior with original script name
19
46
 
20
47
  ## 2.0.0
48
+ ---
21
49
 
22
50
  * Add support for Rails 5.1
23
51
  * Drop support for Rails < 4.2
24
52
 
25
53
  ## 1.1.1
54
+ ---
26
55
 
27
56
  * Fix full URL generation to not use `root_url` helper to avoid depending on that and to improve compatibility with e.g. rails engines.
28
57
 
29
58
  ## 1.1.0
59
+ ---
30
60
 
31
61
  * Added support for Rails 5.0
32
62
 
33
63
  ## 1.0.0
64
+ ---
34
65
 
35
66
  * No changes just bumping version to a production release
36
67
 
37
68
  ## 0.3.0
69
+ ---
38
70
 
39
71
  * Added Rails 4.2 support
40
72
 
41
73
  ## 0.2.0
74
+ ---
42
75
 
43
76
  * Added `_path_rfc6570` and `_url_rfc6570` helpers (#2)
44
77
 
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Rails::RFC6570
2
2
 
3
- [![Build Status](https://travis-ci.org/jgraichen/rails-rfc6570.svg?branch=master)](https://travis-ci.org/jgraichen/rails-rfc6570)
3
+ [![Build Status](https://github.com/jgraichen/rails-rfc6570/workflows/Build/badge.svg?event=push)](https://github.com/jgraichen/rails-rfc6570/actions?query=workflow%3ABuild)
4
4
 
5
- Pragmatic access to your Rails routes as RFC6570 URI templates. Tested with Rails 4.2, 5.0, 5.1, 5.2, 6.0 and Ruby 2.4, 2.5 and 2.6.
5
+ Pragmatic access to your Rails routes as RFC6570 URI templates. Tested with Rails 5.0, 5.1, 5.2, 6.0 and Ruby 2.5, 2.6, 2.7.
6
6
 
7
7
  ## Installation
8
8
 
@@ -16,13 +16,13 @@ module Rails
16
16
  MAJOR = Rails::VERSION::MAJOR
17
17
  MINOR = Rails::VERSION::MINOR
18
18
 
19
- ::ActionDispatch::Routing::RouteSet.send :include,
19
+ ::ActionDispatch::Routing::RouteSet.include \
20
20
  Rails::RFC6570::Extensions::RouteSet
21
21
 
22
- ::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
23
- :prepend, Rails::RFC6570::Extensions::NamedRouteCollection
22
+ ::ActionDispatch::Routing::RouteSet::NamedRouteCollection.prepend \
23
+ Rails::RFC6570::Extensions::NamedRouteCollection
24
24
 
25
- ::ActionDispatch::Journey::Route.send :include,
25
+ ::ActionDispatch::Journey::Route.include \
26
26
  Rails::RFC6570::Extensions::JourneyRoute
27
27
 
28
28
  ::ActiveSupport.on_load(:action_controller) do
@@ -45,7 +45,6 @@ module Rails
45
45
  Hash[routes.map {|n, r| [n, r.to_rfc6570(opts)] }]
46
46
  end
47
47
 
48
- # rubocop:disable MethodLength
49
48
  def define_rfc6570_helpers(name, route, mod, set)
50
49
  rfc6570_name = :"#{name}_rfc6570"
51
50
  rfc6570_url_name = :"#{name}_url_rfc6570"
@@ -56,18 +55,26 @@ module Rails
56
55
  end
57
56
 
58
57
  mod.module_eval do
59
- define_method(rfc6570_name) do |opts = {}|
60
- ::Rails::RFC6570.build_url_template(self, route, opts)
58
+ define_method(rfc6570_name) do |**opts|
59
+ ::Rails::RFC6570.build_url_template(self, route, **opts)
61
60
  end
62
61
 
63
- define_method(rfc6570_url_name) do |opts = {}|
64
- ::Rails::RFC6570.build_url_template(self, route,
65
- opts.merge(path_only: false))
62
+ define_method(rfc6570_url_name) do |**opts|
63
+ ::Rails::RFC6570.build_url_template(
64
+ self,
65
+ route,
66
+ **opts,
67
+ path_only: false
68
+ )
66
69
  end
67
70
 
68
- define_method(rfc6570_path_name) do |opts = {}|
69
- ::Rails::RFC6570.build_url_template(self, route,
70
- opts.merge(path_only: true))
71
+ define_method(rfc6570_path_name) do |**opts|
72
+ ::Rails::RFC6570.build_url_template(
73
+ self,
74
+ route,
75
+ **opts,
76
+ path_only: true
77
+ )
71
78
  end
72
79
  end
73
80
 
@@ -75,7 +82,6 @@ module Rails
75
82
  set << rfc6570_url_name
76
83
  set << rfc6570_path_name
77
84
  end
78
- # rubocop:enable all
79
85
 
80
86
  def add(name, route)
81
87
  super
@@ -86,24 +92,24 @@ module Rails
86
92
  end
87
93
 
88
94
  module JourneyRoute
89
- def to_rfc6570(opts = {})
95
+ def to_rfc6570(**opts)
90
96
  @rfc6570_formatter ||= RFC6570::Formatter.new(self)
91
- @rfc6570_formatter.evaluate(opts)
97
+ @rfc6570_formatter.evaluate(**opts)
92
98
  end
93
99
  end
94
100
  end
95
101
 
96
102
  module Helper
97
- def rfc6570_routes(opts = {})
103
+ def rfc6570_routes(**opts)
98
104
  routes = {}
99
105
  Rails.application.routes.named_routes.names.each do |key|
100
- routes[key] = rfc6570_route(key, opts)
106
+ routes[key] = rfc6570_route(key, **opts)
101
107
  end
102
108
 
103
109
  routes
104
110
  end
105
111
 
106
- def rfc6570_route(name, opts = {})
112
+ def rfc6570_route(name, **opts)
107
113
  route = Rails.application.routes.named_routes[name]
108
114
  raise KeyError.new "No named routed for `#{name}'." unless route
109
115
 
@@ -113,7 +119,7 @@ module Rails
113
119
 
114
120
  module ControllerExtension
115
121
  def rfc6570_defs
116
- @__rfc6570_defs ||= {}
122
+ @rfc6570_defs ||= {}
117
123
  end
118
124
 
119
125
  def rfc6570_params(defs)
@@ -136,6 +142,6 @@ module Rails
136
142
  route.to_rfc6570(ctx: ctx, **kwargs)
137
143
  end
138
144
 
139
- extend self # rubocop:disable ModuleFunction
145
+ extend self # rubocop:disable Style/ModuleFunction
140
146
  end
141
147
  end
@@ -44,7 +44,9 @@ module Rails
44
44
  Subst.new(node.name, "{#{prefix}#{node.name}#{suffix}}")
45
45
  end
46
46
 
47
- Subst = Struct.new(:name, :to_s)
47
+ Subst = Struct.new(:name, :string) do
48
+ alias_method :to_s, :string
49
+ end
48
50
  end
49
51
  end
50
52
  end
@@ -4,7 +4,7 @@ module Rails
4
4
  module RFC6570
5
5
  module VERSION
6
6
  MAJOR = 2
7
- MINOR = 4
7
+ MINOR = 5
8
8
  PATCH = 0
9
9
  STAGE = nil
10
10
 
@@ -3,7 +3,7 @@
3
3
  module Rails
4
4
  module RFC6570
5
5
  class Visitor < ::ActionDispatch::Journey::Visitors::Visitor
6
- DISPATCH_CACHE = {} # rubocop:disable MutableConstant
6
+ DISPATCH_CACHE = {} # rubocop:disable Style/MutableConstant
7
7
 
8
8
  def initialize(factory: nil)
9
9
  super()
@@ -27,7 +27,7 @@ module Rails
27
27
  node.left
28
28
  end
29
29
 
30
- # rubocop:disable MethodName
30
+ # rubocop:disable Naming/MethodName
31
31
  def visit_CAT(node)
32
32
  if (mth = DISPATCH_CACHE[:"#{node.left.type}_#{node.right.type}"])
33
33
  send mth, node.left, node.right
@@ -80,7 +80,6 @@ module Rails
80
80
  end
81
81
  end
82
82
 
83
- # rubocop:disable AbcSize
84
83
  def visit_SLASH_CAT(slash, cat)
85
84
  if cat.left.type == :STAR
86
85
  [symbol(cat.left.left, prefix: '/', suffix: '*'), visit(cat.right)]
@@ -90,7 +89,6 @@ module Rails
90
89
  [visit(slash), visit(cat)]
91
90
  end
92
91
  end
93
- # rubocop:enable AbcSize
94
92
 
95
93
  def visit_SLASH_STAR(_slash, star)
96
94
  symbol(star.left, prefix: '/', suffix: '*')
@@ -99,7 +97,7 @@ module Rails
99
97
  def visit_STAR_CAT(star, cat)
100
98
  [symbol(star.left, prefix: '/', suffix: '*'), visit(cat)]
101
99
  end
102
- # rubocop:enable MethodName
100
+ # rubocop:enable Naming/MethodName
103
101
 
104
102
  instance_methods(true).each do |meth|
105
103
  next unless meth =~ /^visit_(.*)$/
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- lib = File.expand_path('../lib', __FILE__)
3
+ lib = File.expand_path('lib', __dir__)
4
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
  require 'rails/rfc6570/version'
6
6
 
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
22
22
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
23
23
  spec.require_paths = ['lib']
24
24
 
25
- spec.add_runtime_dependency 'actionpack', '>= 4.2', '< 6.1'
25
+ spec.add_runtime_dependency 'actionpack', '>= 4.2', '< 6.2'
26
26
  spec.add_runtime_dependency 'addressable', '~> 2.3'
27
27
 
28
28
  spec.add_development_dependency 'bundler'
@@ -1,48 +1,3012 @@
1
- Started GET "/action" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
1
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
2
2
  Processing by APIController#action as HTML
3
- Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 898)
4
- Started GET "/action" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
3
+ Completed 200 OK in 2ms (Views: 0.2ms)
4
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
5
5
  Processing by APIController#action as HTML
6
- Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 730)
7
- Started GET "/action" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
6
+ Completed 200 OK in 1ms (Views: 0.1ms)
7
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
8
8
  Processing by APIController#action as HTML
9
- Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 730)
10
- Started GET "/action" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
9
+ Completed 200 OK in 1ms (Views: 0.1ms)
10
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
11
11
  Processing by APIController#action as HTML
12
- Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 730)
13
- Started GET "/action" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
12
+ Completed 200 OK in 1ms (Views: 0.1ms)
13
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
14
14
  Processing by APIController#action as HTML
15
- Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 730)
16
- Started GET "/action" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
15
+ Completed 200 OK in 1ms (Views: 0.1ms)
16
+ Started GET "/action" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
17
17
  Processing by APIController#action as HTML
18
- Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 730)
19
- Started GET "/action" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
18
+ Completed 200 OK in 1ms (Views: 0.1ms)
19
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
20
+ Processing by APIController#index as HTML
21
+ Completed 200 OK in 2ms (Views: 0.2ms)
22
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
23
+ Processing by APIController#index as HTML
24
+ Completed 200 OK in 1ms (Views: 0.2ms)
25
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
26
+ Processing by APIController#index as HTML
27
+ Completed 200 OK in 1ms (Views: 0.1ms)
28
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
29
+ Processing by APIController#index as HTML
30
+ Completed 200 OK in 1ms (Views: 0.1ms)
31
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
32
+ Processing by APIController#index as HTML
33
+ Completed 200 OK in 5ms (Views: 0.1ms)
34
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
35
+ Processing by APIController#index as HTML
36
+ Completed 200 OK in 1ms (Views: 0.2ms)
37
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
38
+ Processing by APIController#index as HTML
39
+ Completed 200 OK in 1ms (Views: 0.1ms)
40
+ Started GET "/" for 127.0.0.1 at 2016-05-07 12:46:04 +0200
41
+ Processing by APIController#index as HTML
42
+ Completed 200 OK in 1ms (Views: 0.1ms)
43
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
44
+ Processing by APIController#index as HTML
45
+ Completed 500 Internal Server Error in 0ms
46
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
47
+ Processing by APIController#index as HTML
48
+ Completed 500 Internal Server Error in 0ms
49
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
50
+ Processing by APIController#index as HTML
51
+ Completed 500 Internal Server Error in 0ms
52
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
53
+ Processing by APIController#index as HTML
54
+ Completed 500 Internal Server Error in 0ms
55
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
56
+ Processing by APIController#index as HTML
57
+ Completed 500 Internal Server Error in 0ms
58
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
59
+ Processing by APIController#index as HTML
60
+ Completed 500 Internal Server Error in 0ms
61
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
62
+ Processing by APIController#index as HTML
63
+ Completed 500 Internal Server Error in 0ms
64
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
65
+ Processing by APIController#index as HTML
66
+ Completed 500 Internal Server Error in 0ms
67
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
68
+ Processing by APIController#action as HTML
69
+ Completed 500 Internal Server Error in 0ms
70
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
71
+ Processing by APIController#action as HTML
72
+ Completed 500 Internal Server Error in 0ms
73
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
74
+ Processing by APIController#action as HTML
75
+ Completed 500 Internal Server Error in 0ms
76
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
77
+ Processing by APIController#action as HTML
78
+ Completed 500 Internal Server Error in 0ms
79
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
80
+ Processing by APIController#action as HTML
81
+ Completed 500 Internal Server Error in 0ms
82
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:49:48 +0200
83
+ Processing by APIController#action as HTML
84
+ Completed 500 Internal Server Error in 0ms
85
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
86
+ Processing by APIController#action as HTML
87
+ Completed 500 Internal Server Error in 0ms
88
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
89
+ Processing by APIController#action as HTML
90
+ Completed 500 Internal Server Error in 0ms
91
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
92
+ Processing by APIController#action as HTML
93
+ Completed 500 Internal Server Error in 0ms
94
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
95
+ Processing by APIController#action as HTML
96
+ Completed 500 Internal Server Error in 0ms
97
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
98
+ Processing by APIController#action as HTML
99
+ Completed 500 Internal Server Error in 0ms
100
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
101
+ Processing by APIController#action as HTML
102
+ Completed 500 Internal Server Error in 0ms
103
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
104
+ Processing by APIController#index as HTML
105
+ Completed 500 Internal Server Error in 0ms
106
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
107
+ Processing by APIController#index as HTML
108
+ Completed 500 Internal Server Error in 0ms
109
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
110
+ Processing by APIController#index as HTML
111
+ Completed 500 Internal Server Error in 0ms
112
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
113
+ Processing by APIController#index as HTML
114
+ Completed 500 Internal Server Error in 0ms
115
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
116
+ Processing by APIController#index as HTML
117
+ Completed 500 Internal Server Error in 0ms
118
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
119
+ Processing by APIController#index as HTML
120
+ Completed 500 Internal Server Error in 0ms
121
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
122
+ Processing by APIController#index as HTML
123
+ Completed 500 Internal Server Error in 0ms
124
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:15 +0200
125
+ Processing by APIController#index as HTML
126
+ Completed 500 Internal Server Error in 0ms
127
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
128
+ Processing by APIController#index as HTML
129
+ Completed 500 Internal Server Error in 0ms
130
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
131
+ Processing by APIController#index as HTML
132
+ Completed 500 Internal Server Error in 0ms
133
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
134
+ Processing by APIController#index as HTML
135
+ Completed 500 Internal Server Error in 0ms
136
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
137
+ Processing by APIController#index as HTML
138
+ Completed 500 Internal Server Error in 0ms
139
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
140
+ Processing by APIController#index as HTML
141
+ Completed 500 Internal Server Error in 0ms
142
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
143
+ Processing by APIController#index as HTML
144
+ Completed 500 Internal Server Error in 0ms
145
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
146
+ Processing by APIController#index as HTML
147
+ Completed 500 Internal Server Error in 0ms
148
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
149
+ Processing by APIController#index as HTML
150
+ Completed 500 Internal Server Error in 0ms
151
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
152
+ Processing by APIController#action as HTML
153
+ Completed 500 Internal Server Error in 0ms
154
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
155
+ Processing by APIController#action as HTML
156
+ Completed 500 Internal Server Error in 0ms
157
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
158
+ Processing by APIController#action as HTML
159
+ Completed 500 Internal Server Error in 0ms
160
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
161
+ Processing by APIController#action as HTML
162
+ Completed 500 Internal Server Error in 0ms
163
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
164
+ Processing by APIController#action as HTML
165
+ Completed 500 Internal Server Error in 0ms
166
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:32 +0200
167
+ Processing by APIController#action as HTML
168
+ Completed 500 Internal Server Error in 0ms
169
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
170
+ Processing by APIController#index as HTML
171
+ Completed 500 Internal Server Error in 0ms
172
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
173
+ Processing by APIController#index as HTML
174
+ Completed 500 Internal Server Error in 0ms
175
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
176
+ Processing by APIController#index as HTML
177
+ Completed 500 Internal Server Error in 0ms
178
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
179
+ Processing by APIController#index as HTML
180
+ Completed 500 Internal Server Error in 0ms
181
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
182
+ Processing by APIController#index as HTML
183
+ Completed 500 Internal Server Error in 0ms
184
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
185
+ Processing by APIController#index as HTML
186
+ Completed 500 Internal Server Error in 0ms
187
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
188
+ Processing by APIController#index as HTML
189
+ Completed 500 Internal Server Error in 0ms
190
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
191
+ Processing by APIController#index as HTML
192
+ Completed 500 Internal Server Error in 0ms
193
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
194
+ Processing by APIController#action as HTML
195
+ Completed 500 Internal Server Error in 0ms
196
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
197
+ Processing by APIController#action as HTML
198
+ Completed 500 Internal Server Error in 0ms
199
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
200
+ Processing by APIController#action as HTML
201
+ Completed 500 Internal Server Error in 0ms
202
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
203
+ Processing by APIController#action as HTML
204
+ Completed 500 Internal Server Error in 0ms
205
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
206
+ Processing by APIController#action as HTML
207
+ Completed 500 Internal Server Error in 0ms
208
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:50:41 +0200
209
+ Processing by APIController#action as HTML
210
+ Completed 500 Internal Server Error in 0ms
211
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
212
+ Processing by APIController#index as HTML
213
+ Completed 500 Internal Server Error in 0ms
214
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
215
+ Processing by APIController#index as HTML
216
+ Completed 500 Internal Server Error in 0ms
217
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
218
+ Processing by APIController#index as HTML
219
+ Completed 500 Internal Server Error in 0ms
220
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
221
+ Processing by APIController#index as HTML
222
+ Completed 500 Internal Server Error in 0ms
223
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
224
+ Processing by APIController#index as HTML
225
+ Completed 500 Internal Server Error in 0ms
226
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
227
+ Processing by APIController#index as HTML
228
+ Completed 500 Internal Server Error in 0ms
229
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
230
+ Processing by APIController#index as HTML
231
+ Completed 500 Internal Server Error in 0ms
232
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
233
+ Processing by APIController#index as HTML
234
+ Completed 500 Internal Server Error in 0ms
235
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
236
+ Processing by APIController#action as HTML
237
+ Completed 500 Internal Server Error in 0ms
238
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
239
+ Processing by APIController#action as HTML
240
+ Completed 500 Internal Server Error in 0ms
241
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
242
+ Processing by APIController#action as HTML
243
+ Completed 500 Internal Server Error in 0ms
244
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
245
+ Processing by APIController#action as HTML
246
+ Completed 500 Internal Server Error in 0ms
247
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
248
+ Processing by APIController#action as HTML
249
+ Completed 500 Internal Server Error in 0ms
250
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:51:23 +0200
251
+ Processing by APIController#action as HTML
252
+ Completed 500 Internal Server Error in 0ms
253
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
254
+ Processing by APIController#index as HTML
255
+ Completed 500 Internal Server Error in 0ms
256
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
257
+ Processing by APIController#index as HTML
258
+ Completed 500 Internal Server Error in 0ms
259
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
260
+ Processing by APIController#index as HTML
261
+ Completed 500 Internal Server Error in 0ms
262
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
263
+ Processing by APIController#index as HTML
264
+ Completed 500 Internal Server Error in 0ms
265
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
266
+ Processing by APIController#index as HTML
267
+ Completed 500 Internal Server Error in 0ms
268
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
269
+ Processing by APIController#index as HTML
270
+ Completed 500 Internal Server Error in 0ms
271
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
272
+ Processing by APIController#index as HTML
273
+ Completed 500 Internal Server Error in 0ms
274
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
275
+ Processing by APIController#index as HTML
276
+ Completed 500 Internal Server Error in 0ms
277
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
278
+ Processing by APIController#action as HTML
279
+ Completed 500 Internal Server Error in 0ms
280
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
281
+ Processing by APIController#action as HTML
282
+ Completed 500 Internal Server Error in 0ms
283
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
284
+ Processing by APIController#action as HTML
285
+ Completed 500 Internal Server Error in 0ms
286
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
287
+ Processing by APIController#action as HTML
288
+ Completed 500 Internal Server Error in 0ms
289
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
290
+ Processing by APIController#action as HTML
291
+ Completed 500 Internal Server Error in 0ms
292
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:53:50 +0200
293
+ Processing by APIController#action as HTML
294
+ Completed 500 Internal Server Error in 0ms
295
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
296
+ Processing by APIController#index as HTML
297
+ Completed 500 Internal Server Error in 0ms
298
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
299
+ Processing by APIController#index as HTML
300
+ Completed 500 Internal Server Error in 0ms
301
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
302
+ Processing by APIController#index as HTML
303
+ Completed 500 Internal Server Error in 0ms
304
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
305
+ Processing by APIController#index as HTML
306
+ Completed 500 Internal Server Error in 0ms
307
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
308
+ Processing by APIController#index as HTML
309
+ Completed 500 Internal Server Error in 0ms
310
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
311
+ Processing by APIController#index as HTML
312
+ Completed 500 Internal Server Error in 0ms
313
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
314
+ Processing by APIController#index as HTML
315
+ Completed 500 Internal Server Error in 0ms
316
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
317
+ Processing by APIController#index as HTML
318
+ Completed 500 Internal Server Error in 0ms
319
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
320
+ Processing by APIController#action as HTML
321
+ Completed 500 Internal Server Error in 0ms
322
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
323
+ Processing by APIController#action as HTML
324
+ Completed 500 Internal Server Error in 0ms
325
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
326
+ Processing by APIController#action as HTML
327
+ Completed 500 Internal Server Error in 0ms
328
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
329
+ Processing by APIController#action as HTML
330
+ Completed 500 Internal Server Error in 0ms
331
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
332
+ Processing by APIController#action as HTML
333
+ Completed 500 Internal Server Error in 0ms
334
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:08 +0200
335
+ Processing by APIController#action as HTML
336
+ Completed 500 Internal Server Error in 0ms
337
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
338
+ Processing by APIController#action as HTML
339
+ Completed 500 Internal Server Error in 0ms
340
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
341
+ Processing by APIController#action as HTML
342
+ Completed 500 Internal Server Error in 0ms
343
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
344
+ Processing by APIController#action as HTML
345
+ Completed 500 Internal Server Error in 0ms
346
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
347
+ Processing by APIController#action as HTML
348
+ Completed 500 Internal Server Error in 0ms
349
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
350
+ Processing by APIController#action as HTML
351
+ Completed 500 Internal Server Error in 0ms
352
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
353
+ Processing by APIController#action as HTML
354
+ Completed 500 Internal Server Error in 0ms
355
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
356
+ Processing by APIController#index as HTML
357
+ Completed 500 Internal Server Error in 0ms
358
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
359
+ Processing by APIController#index as HTML
360
+ Completed 500 Internal Server Error in 0ms
361
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
362
+ Processing by APIController#index as HTML
363
+ Completed 500 Internal Server Error in 0ms
364
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
365
+ Processing by APIController#index as HTML
366
+ Completed 500 Internal Server Error in 0ms
367
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
368
+ Processing by APIController#index as HTML
369
+ Completed 500 Internal Server Error in 0ms
370
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
371
+ Processing by APIController#index as HTML
372
+ Completed 500 Internal Server Error in 0ms
373
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
374
+ Processing by APIController#index as HTML
375
+ Completed 500 Internal Server Error in 0ms
376
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:54:30 +0200
377
+ Processing by APIController#index as HTML
378
+ Completed 500 Internal Server Error in 0ms
379
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
380
+ Processing by APIController#action as HTML
381
+ Completed 500 Internal Server Error in 0ms
382
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
383
+ Processing by APIController#action as HTML
384
+ Completed 500 Internal Server Error in 0ms
385
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
386
+ Processing by APIController#action as HTML
387
+ Completed 500 Internal Server Error in 0ms
388
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
389
+ Processing by APIController#action as HTML
390
+ Completed 500 Internal Server Error in 0ms
391
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
392
+ Processing by APIController#action as HTML
393
+ Completed 500 Internal Server Error in 0ms
394
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
395
+ Processing by APIController#action as HTML
396
+ Completed 500 Internal Server Error in 0ms
397
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
398
+ Processing by APIController#index as HTML
399
+ Completed 500 Internal Server Error in 0ms
400
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
401
+ Processing by APIController#index as HTML
402
+ Completed 500 Internal Server Error in 0ms
403
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
404
+ Processing by APIController#index as HTML
405
+ Completed 500 Internal Server Error in 0ms
406
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
407
+ Processing by APIController#index as HTML
408
+ Completed 500 Internal Server Error in 0ms
409
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
410
+ Processing by APIController#index as HTML
411
+ Completed 500 Internal Server Error in 0ms
412
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
413
+ Processing by APIController#index as HTML
414
+ Completed 500 Internal Server Error in 0ms
415
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
416
+ Processing by APIController#index as HTML
417
+ Completed 500 Internal Server Error in 0ms
418
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:04 +0200
419
+ Processing by APIController#index as HTML
420
+ Completed 500 Internal Server Error in 0ms
421
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
422
+ Processing by APIController#index as HTML
423
+ Completed 500 Internal Server Error in 0ms
424
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
425
+ Processing by APIController#index as HTML
426
+ Completed 500 Internal Server Error in 0ms
427
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
428
+ Processing by APIController#index as HTML
429
+ Completed 500 Internal Server Error in 0ms
430
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
431
+ Processing by APIController#index as HTML
432
+ Completed 500 Internal Server Error in 0ms
433
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
434
+ Processing by APIController#index as HTML
435
+ Completed 500 Internal Server Error in 0ms
436
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
437
+ Processing by APIController#index as HTML
438
+ Completed 500 Internal Server Error in 0ms
439
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
440
+ Processing by APIController#index as HTML
441
+ Completed 500 Internal Server Error in 0ms
442
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
443
+ Processing by APIController#index as HTML
444
+ Completed 500 Internal Server Error in 0ms
445
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
446
+ Processing by APIController#action as HTML
447
+ Completed 200 OK in 1ms (Views: 0.2ms)
448
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
449
+ Processing by APIController#action as HTML
450
+ Completed 200 OK in 1ms (Views: 0.2ms)
451
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
452
+ Processing by APIController#action as HTML
453
+ Completed 200 OK in 1ms (Views: 0.2ms)
454
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
455
+ Processing by APIController#action as HTML
456
+ Completed 200 OK in 1ms (Views: 0.1ms)
457
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
458
+ Processing by APIController#action as HTML
459
+ Completed 200 OK in 1ms (Views: 0.1ms)
460
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:55:20 +0200
461
+ Processing by APIController#action as HTML
462
+ Completed 200 OK in 1ms (Views: 0.1ms)
463
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
464
+ Processing by APIController#action as HTML
465
+ Completed 200 OK in 1ms (Views: 0.2ms)
466
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
467
+ Processing by APIController#action as HTML
468
+ Completed 200 OK in 1ms (Views: 0.2ms)
469
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
470
+ Processing by APIController#action as HTML
471
+ Completed 200 OK in 1ms (Views: 0.1ms)
472
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
473
+ Processing by APIController#action as HTML
474
+ Completed 200 OK in 1ms (Views: 0.2ms)
475
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
476
+ Processing by APIController#action as HTML
477
+ Completed 200 OK in 1ms (Views: 0.2ms)
478
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
479
+ Processing by APIController#action as HTML
480
+ Completed 200 OK in 1ms (Views: 0.2ms)
481
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
482
+ Processing by APIController#index as HTML
483
+ Completed 500 Internal Server Error in 0ms
484
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
485
+ Processing by APIController#index as HTML
486
+ Completed 500 Internal Server Error in 0ms
487
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
488
+ Processing by APIController#index as HTML
489
+ Completed 500 Internal Server Error in 0ms
490
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
491
+ Processing by APIController#index as HTML
492
+ Completed 500 Internal Server Error in 0ms
493
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
494
+ Processing by APIController#index as HTML
495
+ Completed 500 Internal Server Error in 0ms
496
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
497
+ Processing by APIController#index as HTML
498
+ Completed 500 Internal Server Error in 0ms
499
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
500
+ Processing by APIController#index as HTML
501
+ Completed 500 Internal Server Error in 0ms
502
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:57:50 +0200
503
+ Processing by APIController#index as HTML
504
+ Completed 500 Internal Server Error in 0ms
505
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
506
+ Processing by APIController#action as HTML
507
+ Completed 200 OK in 2ms (Views: 0.2ms)
508
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
509
+ Processing by APIController#action as HTML
510
+ Completed 200 OK in 1ms (Views: 0.2ms)
511
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
512
+ Processing by APIController#action as HTML
513
+ Completed 200 OK in 1ms (Views: 0.2ms)
514
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
515
+ Processing by APIController#action as HTML
516
+ Completed 200 OK in 1ms (Views: 0.1ms)
517
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
518
+ Processing by APIController#action as HTML
519
+ Completed 200 OK in 1ms (Views: 0.1ms)
520
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
521
+ Processing by APIController#action as HTML
522
+ Completed 200 OK in 1ms (Views: 0.1ms)
523
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
524
+ Processing by APIController#index as HTML
525
+ Completed 500 Internal Server Error in 0ms
526
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
527
+ Processing by APIController#index as HTML
528
+ Completed 500 Internal Server Error in 0ms
529
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
530
+ Processing by APIController#index as HTML
531
+ Completed 500 Internal Server Error in 0ms
532
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
533
+ Processing by APIController#index as HTML
534
+ Completed 500 Internal Server Error in 0ms
535
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
536
+ Processing by APIController#index as HTML
537
+ Completed 500 Internal Server Error in 0ms
538
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
539
+ Processing by APIController#index as HTML
540
+ Completed 500 Internal Server Error in 0ms
541
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
542
+ Processing by APIController#index as HTML
543
+ Completed 500 Internal Server Error in 0ms
544
+ Started GET "/" for 127.0.0.1 at 2016-08-09 22:58:56 +0200
545
+ Processing by APIController#index as HTML
546
+ Completed 500 Internal Server Error in 0ms
547
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
548
+ Processing by APIController#index as HTML
549
+ Completed 500 Internal Server Error in 0ms
550
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
551
+ Processing by APIController#index as HTML
552
+ Completed 500 Internal Server Error in 0ms
553
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
554
+ Processing by APIController#index as HTML
555
+ Completed 500 Internal Server Error in 0ms
556
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
557
+ Processing by APIController#index as HTML
558
+ Completed 500 Internal Server Error in 0ms
559
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
560
+ Processing by APIController#index as HTML
561
+ Completed 500 Internal Server Error in 0ms
562
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
563
+ Processing by APIController#index as HTML
564
+ Completed 500 Internal Server Error in 0ms
565
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
566
+ Processing by APIController#index as HTML
567
+ Completed 500 Internal Server Error in 0ms
568
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
569
+ Processing by APIController#index as HTML
570
+ Completed 500 Internal Server Error in 0ms
571
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
572
+ Processing by APIController#action as HTML
573
+ Completed 500 Internal Server Error in 0ms
574
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
575
+ Processing by APIController#action as HTML
576
+ Completed 500 Internal Server Error in 0ms
577
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
578
+ Processing by APIController#action as HTML
579
+ Completed 500 Internal Server Error in 0ms
580
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
581
+ Processing by APIController#action as HTML
582
+ Completed 500 Internal Server Error in 0ms
583
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
584
+ Processing by APIController#action as HTML
585
+ Completed 500 Internal Server Error in 0ms
586
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:13 +0200
587
+ Processing by APIController#action as HTML
588
+ Completed 500 Internal Server Error in 0ms
589
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
590
+ Processing by APIController#index as HTML
591
+ Completed 500 Internal Server Error in 0ms
592
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
593
+ Processing by APIController#index as HTML
594
+ Completed 500 Internal Server Error in 0ms
595
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
596
+ Processing by APIController#index as HTML
597
+ Completed 500 Internal Server Error in 0ms
598
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
599
+ Processing by APIController#index as HTML
600
+ Completed 500 Internal Server Error in 0ms
601
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
602
+ Processing by APIController#index as HTML
603
+ Completed 500 Internal Server Error in 0ms
604
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
605
+ Processing by APIController#index as HTML
606
+ Completed 500 Internal Server Error in 0ms
607
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
608
+ Processing by APIController#index as HTML
609
+ Completed 500 Internal Server Error in 0ms
610
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
611
+ Processing by APIController#index as HTML
612
+ Completed 500 Internal Server Error in 0ms
613
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
614
+ Processing by APIController#action as HTML
615
+ Completed 500 Internal Server Error in 0ms
616
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
617
+ Processing by APIController#action as HTML
618
+ Completed 500 Internal Server Error in 0ms
619
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
620
+ Processing by APIController#action as HTML
621
+ Completed 500 Internal Server Error in 0ms
622
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
623
+ Processing by APIController#action as HTML
624
+ Completed 500 Internal Server Error in 0ms
625
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
626
+ Processing by APIController#action as HTML
627
+ Completed 500 Internal Server Error in 0ms
628
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:06:46 +0200
629
+ Processing by APIController#action as HTML
630
+ Completed 500 Internal Server Error in 0ms
631
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
632
+ Processing by APIController#index as HTML
633
+ Completed 500 Internal Server Error in 0ms
634
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
635
+ Processing by APIController#index as HTML
636
+ Completed 500 Internal Server Error in 0ms
637
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
638
+ Processing by APIController#index as HTML
639
+ Completed 500 Internal Server Error in 0ms
640
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
641
+ Processing by APIController#index as HTML
642
+ Completed 500 Internal Server Error in 0ms
643
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
644
+ Processing by APIController#index as HTML
645
+ Completed 500 Internal Server Error in 0ms
646
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
647
+ Processing by APIController#index as HTML
648
+ Completed 500 Internal Server Error in 0ms
649
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
650
+ Processing by APIController#index as HTML
651
+ Completed 500 Internal Server Error in 0ms
652
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
653
+ Processing by APIController#index as HTML
654
+ Completed 500 Internal Server Error in 0ms
655
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
656
+ Processing by APIController#action as HTML
657
+ Completed 500 Internal Server Error in 0ms
658
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
659
+ Processing by APIController#action as HTML
660
+ Completed 500 Internal Server Error in 0ms
661
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
662
+ Processing by APIController#action as HTML
663
+ Completed 500 Internal Server Error in 0ms
664
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
665
+ Processing by APIController#action as HTML
666
+ Completed 500 Internal Server Error in 0ms
667
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
668
+ Processing by APIController#action as HTML
669
+ Completed 500 Internal Server Error in 0ms
670
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:36 +0200
671
+ Processing by APIController#action as HTML
672
+ Completed 500 Internal Server Error in 0ms
673
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
674
+ Processing by APIController#index as HTML
675
+ Completed 500 Internal Server Error in 0ms
676
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
677
+ Processing by APIController#index as HTML
678
+ Completed 500 Internal Server Error in 0ms
679
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
680
+ Processing by APIController#index as HTML
681
+ Completed 500 Internal Server Error in 0ms
682
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
683
+ Processing by APIController#index as HTML
684
+ Completed 500 Internal Server Error in 0ms
685
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
686
+ Processing by APIController#index as HTML
687
+ Completed 500 Internal Server Error in 0ms
688
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
689
+ Processing by APIController#index as HTML
690
+ Completed 500 Internal Server Error in 0ms
691
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
692
+ Processing by APIController#index as HTML
693
+ Completed 500 Internal Server Error in 0ms
694
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
695
+ Processing by APIController#index as HTML
696
+ Completed 500 Internal Server Error in 0ms
697
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
698
+ Processing by APIController#action as HTML
699
+ Completed 500 Internal Server Error in 0ms
700
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
701
+ Processing by APIController#action as HTML
702
+ Completed 500 Internal Server Error in 0ms
703
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
704
+ Processing by APIController#action as HTML
705
+ Completed 500 Internal Server Error in 0ms
706
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
707
+ Processing by APIController#action as HTML
708
+ Completed 500 Internal Server Error in 0ms
709
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
710
+ Processing by APIController#action as HTML
711
+ Completed 500 Internal Server Error in 0ms
712
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:46 +0200
713
+ Processing by APIController#action as HTML
714
+ Completed 500 Internal Server Error in 0ms
715
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
716
+ Processing by APIController#action as HTML
717
+ Completed 500 Internal Server Error in 0ms
718
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
719
+ Processing by APIController#action as HTML
720
+ Completed 500 Internal Server Error in 0ms
721
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
722
+ Processing by APIController#action as HTML
723
+ Completed 500 Internal Server Error in 0ms
724
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
725
+ Processing by APIController#action as HTML
726
+ Completed 500 Internal Server Error in 0ms
727
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
728
+ Processing by APIController#action as HTML
729
+ Completed 500 Internal Server Error in 0ms
730
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
731
+ Processing by APIController#action as HTML
732
+ Completed 500 Internal Server Error in 0ms
733
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
734
+ Processing by APIController#index as HTML
735
+ Completed 500 Internal Server Error in 0ms
736
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
737
+ Processing by APIController#index as HTML
738
+ Completed 500 Internal Server Error in 0ms
739
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
740
+ Processing by APIController#index as HTML
741
+ Completed 500 Internal Server Error in 0ms
742
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
743
+ Processing by APIController#index as HTML
744
+ Completed 500 Internal Server Error in 0ms
745
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
746
+ Processing by APIController#index as HTML
747
+ Completed 500 Internal Server Error in 0ms
748
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
749
+ Processing by APIController#index as HTML
750
+ Completed 500 Internal Server Error in 0ms
751
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
752
+ Processing by APIController#index as HTML
753
+ Completed 500 Internal Server Error in 0ms
754
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:07:54 +0200
755
+ Processing by APIController#index as HTML
756
+ Completed 500 Internal Server Error in 0ms
757
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
758
+ Processing by APIController#index as HTML
759
+ Completed 500 Internal Server Error in 0ms
760
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
761
+ Processing by APIController#index as HTML
762
+ Completed 500 Internal Server Error in 0ms
763
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
764
+ Processing by APIController#index as HTML
765
+ Completed 500 Internal Server Error in 0ms
766
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
767
+ Processing by APIController#index as HTML
768
+ Completed 500 Internal Server Error in 0ms
769
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
770
+ Processing by APIController#index as HTML
771
+ Completed 500 Internal Server Error in 0ms
772
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
773
+ Processing by APIController#index as HTML
774
+ Completed 500 Internal Server Error in 0ms
775
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
776
+ Processing by APIController#index as HTML
777
+ Completed 500 Internal Server Error in 0ms
778
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
779
+ Processing by APIController#index as HTML
780
+ Completed 500 Internal Server Error in 0ms
781
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
782
+ Processing by APIController#action as HTML
783
+ Completed 500 Internal Server Error in 0ms
784
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
785
+ Processing by APIController#action as HTML
786
+ Completed 500 Internal Server Error in 0ms
787
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
788
+ Processing by APIController#action as HTML
789
+ Completed 500 Internal Server Error in 0ms
790
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
791
+ Processing by APIController#action as HTML
792
+ Completed 500 Internal Server Error in 0ms
793
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
794
+ Processing by APIController#action as HTML
795
+ Completed 500 Internal Server Error in 0ms
796
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:08:04 +0200
797
+ Processing by APIController#action as HTML
798
+ Completed 500 Internal Server Error in 0ms
799
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
800
+ Processing by APIController#action as HTML
801
+ Completed 500 Internal Server Error in 0ms
802
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
803
+ Processing by APIController#action as HTML
804
+ Completed 500 Internal Server Error in 0ms
805
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
806
+ Processing by APIController#action as HTML
807
+ Completed 500 Internal Server Error in 0ms
808
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
809
+ Processing by APIController#action as HTML
810
+ Completed 500 Internal Server Error in 0ms
811
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
812
+ Processing by APIController#action as HTML
813
+ Completed 500 Internal Server Error in 0ms
814
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
815
+ Processing by APIController#action as HTML
816
+ Completed 500 Internal Server Error in 0ms
817
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
818
+ Processing by APIController#index as HTML
819
+ Completed 500 Internal Server Error in 0ms
820
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
821
+ Processing by APIController#index as HTML
822
+ Completed 500 Internal Server Error in 0ms
823
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
824
+ Processing by APIController#index as HTML
825
+ Completed 500 Internal Server Error in 0ms
826
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
827
+ Processing by APIController#index as HTML
828
+ Completed 500 Internal Server Error in 0ms
829
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
830
+ Processing by APIController#index as HTML
831
+ Completed 500 Internal Server Error in 0ms
832
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
833
+ Processing by APIController#index as HTML
834
+ Completed 500 Internal Server Error in 0ms
835
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
836
+ Processing by APIController#index as HTML
837
+ Completed 500 Internal Server Error in 0ms
838
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:09:15 +0200
839
+ Processing by APIController#index as HTML
840
+ Completed 500 Internal Server Error in 0ms
841
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
842
+ Processing by APIController#index as HTML
843
+ Completed 500 Internal Server Error in 0ms
844
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
845
+ Processing by APIController#index as HTML
846
+ Completed 500 Internal Server Error in 0ms
847
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
848
+ Processing by APIController#index as HTML
849
+ Completed 500 Internal Server Error in 0ms
850
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
851
+ Processing by APIController#index as HTML
852
+ Completed 500 Internal Server Error in 0ms
853
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
854
+ Processing by APIController#index as HTML
855
+ Completed 500 Internal Server Error in 0ms
856
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
857
+ Processing by APIController#index as HTML
858
+ Completed 500 Internal Server Error in 0ms
859
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
860
+ Processing by APIController#index as HTML
861
+ Completed 500 Internal Server Error in 0ms
862
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
863
+ Processing by APIController#index as HTML
864
+ Completed 500 Internal Server Error in 0ms
865
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
866
+ Processing by APIController#action as HTML
867
+ Completed 500 Internal Server Error in 0ms
868
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
869
+ Processing by APIController#action as HTML
870
+ Completed 500 Internal Server Error in 0ms
871
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
872
+ Processing by APIController#action as HTML
873
+ Completed 500 Internal Server Error in 0ms
874
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
875
+ Processing by APIController#action as HTML
876
+ Completed 500 Internal Server Error in 0ms
877
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
878
+ Processing by APIController#action as HTML
879
+ Completed 500 Internal Server Error in 0ms
880
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:11:10 +0200
881
+ Processing by APIController#action as HTML
882
+ Completed 500 Internal Server Error in 0ms
883
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
884
+ Processing by APIController#action as HTML
885
+ Completed 500 Internal Server Error in 0ms
886
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
887
+ Processing by APIController#action as HTML
888
+ Completed 500 Internal Server Error in 0ms
889
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
890
+ Processing by APIController#action as HTML
891
+ Completed 500 Internal Server Error in 0ms
892
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
893
+ Processing by APIController#action as HTML
894
+ Completed 500 Internal Server Error in 0ms
895
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
896
+ Processing by APIController#action as HTML
897
+ Completed 500 Internal Server Error in 0ms
898
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
899
+ Processing by APIController#action as HTML
900
+ Completed 500 Internal Server Error in 0ms
901
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
902
+ Processing by APIController#index as HTML
903
+ Completed 500 Internal Server Error in 0ms
904
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
905
+ Processing by APIController#index as HTML
906
+ Completed 500 Internal Server Error in 0ms
907
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
908
+ Processing by APIController#index as HTML
909
+ Completed 500 Internal Server Error in 0ms
910
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
911
+ Processing by APIController#index as HTML
912
+ Completed 500 Internal Server Error in 0ms
913
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
914
+ Processing by APIController#index as HTML
915
+ Completed 500 Internal Server Error in 0ms
916
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
917
+ Processing by APIController#index as HTML
918
+ Completed 500 Internal Server Error in 0ms
919
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
920
+ Processing by APIController#index as HTML
921
+ Completed 500 Internal Server Error in 0ms
922
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:14:32 +0200
923
+ Processing by APIController#index as HTML
924
+ Completed 500 Internal Server Error in 0ms
925
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
926
+ Processing by APIController#action as HTML
927
+ Completed 500 Internal Server Error in 1ms
928
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
929
+ Processing by APIController#action as HTML
930
+ Completed 500 Internal Server Error in 1ms
931
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
932
+ Processing by APIController#action as HTML
933
+ Completed 500 Internal Server Error in 1ms
934
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
935
+ Processing by APIController#action as HTML
936
+ Completed 500 Internal Server Error in 1ms
937
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
938
+ Processing by APIController#action as HTML
939
+ Completed 500 Internal Server Error in 1ms
940
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
941
+ Processing by APIController#action as HTML
942
+ Completed 500 Internal Server Error in 1ms
943
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
944
+ Processing by APIController#index as HTML
945
+ Completed 500 Internal Server Error in 1ms
946
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
947
+ Processing by APIController#index as HTML
948
+ Completed 500 Internal Server Error in 1ms
949
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
950
+ Processing by APIController#index as HTML
951
+ Completed 500 Internal Server Error in 1ms
952
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
953
+ Processing by APIController#index as HTML
954
+ Completed 500 Internal Server Error in 1ms
955
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
956
+ Processing by APIController#index as HTML
957
+ Completed 500 Internal Server Error in 1ms
958
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
959
+ Processing by APIController#index as HTML
960
+ Completed 500 Internal Server Error in 1ms
961
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
962
+ Processing by APIController#index as HTML
963
+ Completed 500 Internal Server Error in 1ms
964
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:15:05 +0200
965
+ Processing by APIController#index as HTML
966
+ Completed 500 Internal Server Error in 1ms
967
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
968
+ Processing by APIController#index as HTML
969
+ Completed 200 OK in 2ms (Views: 0.3ms)
970
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
971
+ Processing by APIController#index as HTML
972
+ Completed 200 OK in 2ms (Views: 0.3ms)
973
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
974
+ Processing by APIController#index as HTML
975
+ Completed 200 OK in 2ms (Views: 0.2ms)
976
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
977
+ Processing by APIController#index as HTML
978
+ Completed 200 OK in 2ms (Views: 0.2ms)
979
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
980
+ Processing by APIController#index as HTML
981
+ Completed 200 OK in 2ms (Views: 0.2ms)
982
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
983
+ Processing by APIController#index as HTML
984
+ Completed 200 OK in 2ms (Views: 0.2ms)
985
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
986
+ Processing by APIController#index as HTML
987
+ Completed 200 OK in 2ms (Views: 0.2ms)
988
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
989
+ Processing by APIController#index as HTML
990
+ Completed 200 OK in 2ms (Views: 0.2ms)
991
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
992
+ Processing by APIController#action as HTML
993
+ Completed 200 OK in 1ms (Views: 0.1ms)
994
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
995
+ Processing by APIController#action as HTML
996
+ Completed 200 OK in 1ms (Views: 0.2ms)
997
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
998
+ Processing by APIController#action as HTML
999
+ Completed 200 OK in 1ms (Views: 0.1ms)
1000
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
1001
+ Processing by APIController#action as HTML
1002
+ Completed 200 OK in 1ms (Views: 0.1ms)
1003
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
1004
+ Processing by APIController#action as HTML
1005
+ Completed 200 OK in 1ms (Views: 0.2ms)
1006
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:17:33 +0200
1007
+ Processing by APIController#action as HTML
1008
+ Completed 200 OK in 1ms (Views: 0.1ms)
1009
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1010
+ Processing by APIController#index as HTML
1011
+ Completed 200 OK in 2ms (Views: 0.3ms)
1012
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1013
+ Processing by APIController#index as HTML
1014
+ Completed 200 OK in 2ms (Views: 0.2ms)
1015
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1016
+ Processing by APIController#index as HTML
1017
+ Completed 200 OK in 2ms (Views: 0.2ms)
1018
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1019
+ Processing by APIController#index as HTML
1020
+ Completed 200 OK in 2ms (Views: 0.2ms)
1021
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1022
+ Processing by APIController#index as HTML
1023
+ Completed 200 OK in 2ms (Views: 0.2ms)
1024
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1025
+ Processing by APIController#index as HTML
1026
+ Completed 200 OK in 2ms (Views: 0.2ms)
1027
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1028
+ Processing by APIController#index as HTML
1029
+ Completed 200 OK in 2ms (Views: 0.2ms)
1030
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1031
+ Processing by APIController#index as HTML
1032
+ Completed 200 OK in 2ms (Views: 0.2ms)
1033
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1034
+ Processing by APIController#action as HTML
1035
+ Completed 200 OK in 1ms (Views: 0.2ms)
1036
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1037
+ Processing by APIController#action as HTML
1038
+ Completed 200 OK in 1ms (Views: 0.2ms)
1039
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1040
+ Processing by APIController#action as HTML
1041
+ Completed 200 OK in 1ms (Views: 0.1ms)
1042
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1043
+ Processing by APIController#action as HTML
1044
+ Completed 200 OK in 1ms (Views: 0.2ms)
1045
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1046
+ Processing by APIController#action as HTML
1047
+ Completed 200 OK in 1ms (Views: 0.1ms)
1048
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:18:08 +0200
1049
+ Processing by APIController#action as HTML
1050
+ Completed 200 OK in 1ms (Views: 0.1ms)
1051
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1052
+ Processing by APIController#index as HTML
1053
+ Completed 200 OK in 2ms (Views: 0.2ms)
1054
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1055
+ Processing by APIController#index as HTML
1056
+ Completed 200 OK in 2ms (Views: 0.2ms)
1057
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1058
+ Processing by APIController#index as HTML
1059
+ Completed 200 OK in 2ms (Views: 0.2ms)
1060
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1061
+ Processing by APIController#index as HTML
1062
+ Completed 200 OK in 2ms (Views: 0.2ms)
1063
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1064
+ Processing by APIController#index as HTML
1065
+ Completed 200 OK in 1ms (Views: 0.2ms)
1066
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1067
+ Processing by APIController#index as HTML
1068
+ Completed 200 OK in 1ms (Views: 0.1ms)
1069
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1070
+ Processing by APIController#index as HTML
1071
+ Completed 200 OK in 2ms (Views: 0.2ms)
1072
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1073
+ Processing by APIController#index as HTML
1074
+ Completed 200 OK in 2ms (Views: 0.1ms)
1075
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1076
+ Processing by APIController#action as HTML
1077
+ Completed 200 OK in 1ms (Views: 0.1ms)
1078
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1079
+ Processing by APIController#action as HTML
1080
+ Completed 200 OK in 1ms (Views: 0.1ms)
1081
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1082
+ Processing by APIController#action as HTML
1083
+ Completed 200 OK in 1ms (Views: 0.1ms)
1084
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1085
+ Processing by APIController#action as HTML
1086
+ Completed 200 OK in 1ms (Views: 0.1ms)
1087
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1088
+ Processing by APIController#action as HTML
1089
+ Completed 200 OK in 1ms (Views: 0.1ms)
1090
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:20:52 +0200
1091
+ Processing by APIController#action as HTML
1092
+ Completed 200 OK in 1ms (Views: 0.1ms)
1093
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1094
+ Processing by APIController#action as HTML
1095
+ Completed 500 Internal Server Error in 0ms
1096
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1097
+ Processing by APIController#action as HTML
1098
+ Completed 500 Internal Server Error in 0ms
1099
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1100
+ Processing by APIController#action as HTML
1101
+ Completed 500 Internal Server Error in 0ms
1102
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1103
+ Processing by APIController#action as HTML
1104
+ Completed 500 Internal Server Error in 0ms
1105
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1106
+ Processing by APIController#action as HTML
1107
+ Completed 500 Internal Server Error in 0ms
1108
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1109
+ Processing by APIController#action as HTML
1110
+ Completed 500 Internal Server Error in 0ms
1111
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1112
+ Processing by APIController#index as HTML
1113
+ Completed 500 Internal Server Error in 0ms
1114
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1115
+ Processing by APIController#index as HTML
1116
+ Completed 500 Internal Server Error in 0ms
1117
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1118
+ Processing by APIController#index as HTML
1119
+ Completed 500 Internal Server Error in 0ms
1120
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1121
+ Processing by APIController#index as HTML
1122
+ Completed 500 Internal Server Error in 0ms
1123
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1124
+ Processing by APIController#index as HTML
1125
+ Completed 500 Internal Server Error in 0ms
1126
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1127
+ Processing by APIController#index as HTML
1128
+ Completed 500 Internal Server Error in 0ms
1129
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1130
+ Processing by APIController#index as HTML
1131
+ Completed 500 Internal Server Error in 0ms
1132
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:16 +0200
1133
+ Processing by APIController#index as HTML
1134
+ Completed 500 Internal Server Error in 0ms
1135
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1136
+ Processing by APIController#index as HTML
1137
+ Completed 500 Internal Server Error in 0ms
1138
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1139
+ Processing by APIController#index as HTML
1140
+ Completed 500 Internal Server Error in 0ms
1141
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1142
+ Processing by APIController#index as HTML
1143
+ Completed 500 Internal Server Error in 0ms
1144
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1145
+ Processing by APIController#index as HTML
1146
+ Completed 500 Internal Server Error in 0ms
1147
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1148
+ Processing by APIController#index as HTML
1149
+ Completed 500 Internal Server Error in 0ms
1150
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1151
+ Processing by APIController#index as HTML
1152
+ Completed 500 Internal Server Error in 0ms
1153
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1154
+ Processing by APIController#index as HTML
1155
+ Completed 500 Internal Server Error in 0ms
1156
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1157
+ Processing by APIController#index as HTML
1158
+ Completed 500 Internal Server Error in 0ms
1159
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1160
+ Processing by APIController#action as HTML
1161
+ Completed 500 Internal Server Error in 0ms
1162
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1163
+ Processing by APIController#action as HTML
1164
+ Completed 500 Internal Server Error in 0ms
1165
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1166
+ Processing by APIController#action as HTML
1167
+ Completed 500 Internal Server Error in 0ms
1168
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1169
+ Processing by APIController#action as HTML
1170
+ Completed 500 Internal Server Error in 0ms
1171
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1172
+ Processing by APIController#action as HTML
1173
+ Completed 500 Internal Server Error in 0ms
1174
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:22:46 +0200
1175
+ Processing by APIController#action as HTML
1176
+ Completed 500 Internal Server Error in 0ms
1177
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1178
+ Processing by APIController#action as HTML
1179
+ Completed 200 OK in 1ms (Views: 0.2ms)
1180
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1181
+ Processing by APIController#action as HTML
1182
+ Completed 200 OK in 1ms (Views: 0.2ms)
1183
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1184
+ Processing by APIController#action as HTML
1185
+ Completed 200 OK in 1ms (Views: 0.2ms)
1186
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1187
+ Processing by APIController#action as HTML
1188
+ Completed 200 OK in 1ms (Views: 0.1ms)
1189
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1190
+ Processing by APIController#action as HTML
1191
+ Completed 200 OK in 1ms (Views: 0.1ms)
1192
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1193
+ Processing by APIController#action as HTML
1194
+ Completed 200 OK in 1ms (Views: 0.1ms)
1195
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1196
+ Processing by APIController#index as HTML
1197
+ Completed 200 OK in 1ms (Views: 0.2ms)
1198
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1199
+ Processing by APIController#index as HTML
1200
+ Completed 200 OK in 1ms (Views: 0.1ms)
1201
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1202
+ Processing by APIController#index as HTML
1203
+ Completed 200 OK in 1ms (Views: 0.2ms)
1204
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1205
+ Processing by APIController#index as HTML
1206
+ Completed 200 OK in 1ms (Views: 0.2ms)
1207
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1208
+ Processing by APIController#index as HTML
1209
+ Completed 200 OK in 1ms (Views: 0.2ms)
1210
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1211
+ Processing by APIController#index as HTML
1212
+ Completed 200 OK in 1ms (Views: 0.1ms)
1213
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1214
+ Processing by APIController#index as HTML
1215
+ Completed 200 OK in 1ms (Views: 0.2ms)
1216
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:04 +0200
1217
+ Processing by APIController#index as HTML
1218
+ Completed 200 OK in 1ms (Views: 0.2ms)
1219
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1220
+ Processing by APIController#action as HTML
1221
+ Completed 500 Internal Server Error in 1ms
1222
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1223
+ Processing by APIController#action as HTML
1224
+ Completed 500 Internal Server Error in 1ms
1225
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1226
+ Processing by APIController#action as HTML
1227
+ Completed 500 Internal Server Error in 1ms
1228
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1229
+ Processing by APIController#action as HTML
1230
+ Completed 500 Internal Server Error in 1ms
1231
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1232
+ Processing by APIController#action as HTML
1233
+ Completed 500 Internal Server Error in 1ms
1234
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1235
+ Processing by APIController#action as HTML
1236
+ Completed 500 Internal Server Error in 1ms
1237
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1238
+ Processing by APIController#index as HTML
1239
+ Completed 500 Internal Server Error in 1ms
1240
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1241
+ Processing by APIController#index as HTML
1242
+ Completed 500 Internal Server Error in 1ms
1243
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1244
+ Processing by APIController#index as HTML
1245
+ Completed 500 Internal Server Error in 1ms
1246
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1247
+ Processing by APIController#index as HTML
1248
+ Completed 500 Internal Server Error in 1ms
1249
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1250
+ Processing by APIController#index as HTML
1251
+ Completed 500 Internal Server Error in 1ms
1252
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1253
+ Processing by APIController#index as HTML
1254
+ Completed 500 Internal Server Error in 1ms
1255
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1256
+ Processing by APIController#index as HTML
1257
+ Completed 500 Internal Server Error in 1ms
1258
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:36 +0200
1259
+ Processing by APIController#index as HTML
1260
+ Completed 500 Internal Server Error in 1ms
1261
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1262
+ Processing by APIController#index as HTML
1263
+ Completed 500 Internal Server Error in 0ms
1264
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1265
+ Processing by APIController#index as HTML
1266
+ Completed 500 Internal Server Error in 0ms
1267
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1268
+ Processing by APIController#index as HTML
1269
+ Completed 500 Internal Server Error in 0ms
1270
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1271
+ Processing by APIController#index as HTML
1272
+ Completed 500 Internal Server Error in 0ms
1273
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1274
+ Processing by APIController#index as HTML
1275
+ Completed 500 Internal Server Error in 0ms
1276
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1277
+ Processing by APIController#index as HTML
1278
+ Completed 500 Internal Server Error in 0ms
1279
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1280
+ Processing by APIController#index as HTML
1281
+ Completed 500 Internal Server Error in 0ms
1282
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1283
+ Processing by APIController#index as HTML
1284
+ Completed 500 Internal Server Error in 0ms
1285
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1286
+ Processing by APIController#action as HTML
1287
+ Completed 500 Internal Server Error in 0ms
1288
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1289
+ Processing by APIController#action as HTML
1290
+ Completed 500 Internal Server Error in 0ms
1291
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1292
+ Processing by APIController#action as HTML
1293
+ Completed 500 Internal Server Error in 0ms
1294
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1295
+ Processing by APIController#action as HTML
1296
+ Completed 500 Internal Server Error in 0ms
1297
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1298
+ Processing by APIController#action as HTML
1299
+ Completed 500 Internal Server Error in 0ms
1300
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:47 +0200
1301
+ Processing by APIController#action as HTML
1302
+ Completed 500 Internal Server Error in 0ms
1303
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1304
+ Processing by APIController#index as HTML
1305
+ Completed 500 Internal Server Error in 1ms
1306
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1307
+ Processing by APIController#index as HTML
1308
+ Completed 500 Internal Server Error in 1ms
1309
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1310
+ Processing by APIController#index as HTML
1311
+ Completed 500 Internal Server Error in 1ms
1312
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1313
+ Processing by APIController#index as HTML
1314
+ Completed 500 Internal Server Error in 1ms
1315
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1316
+ Processing by APIController#index as HTML
1317
+ Completed 500 Internal Server Error in 1ms
1318
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1319
+ Processing by APIController#index as HTML
1320
+ Completed 500 Internal Server Error in 1ms
1321
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1322
+ Processing by APIController#index as HTML
1323
+ Completed 500 Internal Server Error in 1ms
1324
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1325
+ Processing by APIController#index as HTML
1326
+ Completed 500 Internal Server Error in 1ms
1327
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1328
+ Processing by APIController#action as HTML
1329
+ Completed 500 Internal Server Error in 1ms
1330
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1331
+ Processing by APIController#action as HTML
1332
+ Completed 500 Internal Server Error in 1ms
1333
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1334
+ Processing by APIController#action as HTML
1335
+ Completed 500 Internal Server Error in 1ms
1336
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1337
+ Processing by APIController#action as HTML
1338
+ Completed 500 Internal Server Error in 1ms
1339
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1340
+ Processing by APIController#action as HTML
1341
+ Completed 500 Internal Server Error in 1ms
1342
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:23:57 +0200
1343
+ Processing by APIController#action as HTML
1344
+ Completed 500 Internal Server Error in 1ms
1345
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1346
+ Processing by APIController#index as HTML
1347
+ Completed 500 Internal Server Error in 1ms
1348
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1349
+ Processing by APIController#index as HTML
1350
+ Completed 500 Internal Server Error in 1ms
1351
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1352
+ Processing by APIController#index as HTML
1353
+ Completed 500 Internal Server Error in 1ms
1354
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1355
+ Processing by APIController#index as HTML
1356
+ Completed 500 Internal Server Error in 1ms
1357
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1358
+ Processing by APIController#index as HTML
1359
+ Completed 500 Internal Server Error in 1ms
1360
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1361
+ Processing by APIController#index as HTML
1362
+ Completed 500 Internal Server Error in 2ms
1363
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1364
+ Processing by APIController#index as HTML
1365
+ Completed 500 Internal Server Error in 2ms
1366
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1367
+ Processing by APIController#index as HTML
1368
+ Completed 500 Internal Server Error in 2ms
1369
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1370
+ Processing by APIController#action as HTML
1371
+ Completed 500 Internal Server Error in 2ms
1372
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1373
+ Processing by APIController#action as HTML
1374
+ Completed 500 Internal Server Error in 2ms
1375
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1376
+ Processing by APIController#action as HTML
1377
+ Completed 500 Internal Server Error in 2ms
1378
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1379
+ Processing by APIController#action as HTML
1380
+ Completed 500 Internal Server Error in 1ms
1381
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1382
+ Processing by APIController#action as HTML
1383
+ Completed 500 Internal Server Error in 1ms
1384
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:12 +0200
1385
+ Processing by APIController#action as HTML
1386
+ Completed 500 Internal Server Error in 1ms
1387
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1388
+ Processing by APIController#action as HTML
1389
+ Completed 500 Internal Server Error in 1ms
1390
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1391
+ Processing by APIController#action as HTML
1392
+ Completed 500 Internal Server Error in 1ms
1393
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1394
+ Processing by APIController#action as HTML
1395
+ Completed 500 Internal Server Error in 1ms
1396
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1397
+ Processing by APIController#action as HTML
1398
+ Completed 500 Internal Server Error in 1ms
1399
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1400
+ Processing by APIController#action as HTML
1401
+ Completed 500 Internal Server Error in 1ms
1402
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1403
+ Processing by APIController#action as HTML
1404
+ Completed 500 Internal Server Error in 1ms
1405
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1406
+ Processing by APIController#index as HTML
1407
+ Completed 500 Internal Server Error in 1ms
1408
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1409
+ Processing by APIController#index as HTML
1410
+ Completed 500 Internal Server Error in 1ms
1411
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1412
+ Processing by APIController#index as HTML
1413
+ Completed 500 Internal Server Error in 1ms
1414
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1415
+ Processing by APIController#index as HTML
1416
+ Completed 500 Internal Server Error in 1ms
1417
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1418
+ Processing by APIController#index as HTML
1419
+ Completed 500 Internal Server Error in 1ms
1420
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1421
+ Processing by APIController#index as HTML
1422
+ Completed 500 Internal Server Error in 1ms
1423
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1424
+ Processing by APIController#index as HTML
1425
+ Completed 500 Internal Server Error in 1ms
1426
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:22 +0200
1427
+ Processing by APIController#index as HTML
1428
+ Completed 500 Internal Server Error in 1ms
1429
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1430
+ Processing by APIController#action as HTML
1431
+ Completed 200 OK in 1ms (Views: 0.2ms)
1432
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1433
+ Processing by APIController#action as HTML
1434
+ Completed 200 OK in 1ms (Views: 0.2ms)
1435
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1436
+ Processing by APIController#action as HTML
1437
+ Completed 200 OK in 1ms (Views: 0.1ms)
1438
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1439
+ Processing by APIController#action as HTML
1440
+ Completed 200 OK in 1ms (Views: 0.1ms)
1441
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1442
+ Processing by APIController#action as HTML
1443
+ Completed 200 OK in 1ms (Views: 0.1ms)
1444
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1445
+ Processing by APIController#action as HTML
1446
+ Completed 200 OK in 1ms (Views: 0.1ms)
1447
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1448
+ Processing by APIController#index as HTML
1449
+ Completed 200 OK in 1ms (Views: 0.1ms)
1450
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1451
+ Processing by APIController#index as HTML
1452
+ Completed 200 OK in 1ms (Views: 0.1ms)
1453
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1454
+ Processing by APIController#index as HTML
1455
+ Completed 200 OK in 1ms (Views: 0.1ms)
1456
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1457
+ Processing by APIController#index as HTML
1458
+ Completed 200 OK in 1ms (Views: 0.1ms)
1459
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1460
+ Processing by APIController#index as HTML
1461
+ Completed 200 OK in 1ms (Views: 0.1ms)
1462
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1463
+ Processing by APIController#index as HTML
1464
+ Completed 200 OK in 1ms (Views: 0.1ms)
1465
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1466
+ Processing by APIController#index as HTML
1467
+ Completed 200 OK in 1ms (Views: 0.1ms)
1468
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:45 +0200
1469
+ Processing by APIController#index as HTML
1470
+ Completed 200 OK in 1ms (Views: 0.1ms)
1471
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1472
+ Processing by APIController#index as HTML
1473
+ Completed 500 Internal Server Error in 1ms
1474
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1475
+ Processing by APIController#index as HTML
1476
+ Completed 500 Internal Server Error in 1ms
1477
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1478
+ Processing by APIController#index as HTML
1479
+ Completed 500 Internal Server Error in 1ms
1480
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1481
+ Processing by APIController#index as HTML
1482
+ Completed 500 Internal Server Error in 1ms
1483
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1484
+ Processing by APIController#index as HTML
1485
+ Completed 500 Internal Server Error in 1ms
1486
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1487
+ Processing by APIController#index as HTML
1488
+ Completed 500 Internal Server Error in 1ms
1489
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1490
+ Processing by APIController#index as HTML
1491
+ Completed 500 Internal Server Error in 1ms
1492
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1493
+ Processing by APIController#index as HTML
1494
+ Completed 500 Internal Server Error in 1ms
1495
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1496
+ Processing by APIController#action as HTML
1497
+ Completed 500 Internal Server Error in 1ms
1498
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1499
+ Processing by APIController#action as HTML
1500
+ Completed 500 Internal Server Error in 1ms
1501
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1502
+ Processing by APIController#action as HTML
1503
+ Completed 500 Internal Server Error in 1ms
1504
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1505
+ Processing by APIController#action as HTML
1506
+ Completed 500 Internal Server Error in 1ms
1507
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1508
+ Processing by APIController#action as HTML
1509
+ Completed 500 Internal Server Error in 1ms
1510
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:24:59 +0200
1511
+ Processing by APIController#action as HTML
1512
+ Completed 500 Internal Server Error in 1ms
1513
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1514
+ Processing by APIController#index as HTML
1515
+ Completed 500 Internal Server Error in 0ms
1516
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1517
+ Processing by APIController#index as HTML
1518
+ Completed 500 Internal Server Error in 0ms
1519
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1520
+ Processing by APIController#index as HTML
1521
+ Completed 500 Internal Server Error in 0ms
1522
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1523
+ Processing by APIController#index as HTML
1524
+ Completed 500 Internal Server Error in 0ms
1525
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1526
+ Processing by APIController#index as HTML
1527
+ Completed 500 Internal Server Error in 0ms
1528
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1529
+ Processing by APIController#index as HTML
1530
+ Completed 500 Internal Server Error in 0ms
1531
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1532
+ Processing by APIController#index as HTML
1533
+ Completed 500 Internal Server Error in 0ms
1534
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1535
+ Processing by APIController#index as HTML
1536
+ Completed 500 Internal Server Error in 0ms
1537
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1538
+ Processing by APIController#action as HTML
1539
+ Completed 500 Internal Server Error in 0ms
1540
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1541
+ Processing by APIController#action as HTML
1542
+ Completed 500 Internal Server Error in 0ms
1543
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1544
+ Processing by APIController#action as HTML
1545
+ Completed 500 Internal Server Error in 0ms
1546
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1547
+ Processing by APIController#action as HTML
1548
+ Completed 500 Internal Server Error in 0ms
1549
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1550
+ Processing by APIController#action as HTML
1551
+ Completed 500 Internal Server Error in 0ms
1552
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:07 +0200
1553
+ Processing by APIController#action as HTML
1554
+ Completed 500 Internal Server Error in 0ms
1555
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1556
+ Processing by APIController#action as HTML
1557
+ Completed 500 Internal Server Error in 0ms
1558
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1559
+ Processing by APIController#action as HTML
1560
+ Completed 500 Internal Server Error in 0ms
1561
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1562
+ Processing by APIController#action as HTML
1563
+ Completed 500 Internal Server Error in 0ms
1564
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1565
+ Processing by APIController#action as HTML
1566
+ Completed 500 Internal Server Error in 0ms
1567
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1568
+ Processing by APIController#action as HTML
1569
+ Completed 500 Internal Server Error in 0ms
1570
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1571
+ Processing by APIController#action as HTML
1572
+ Completed 500 Internal Server Error in 0ms
1573
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1574
+ Processing by APIController#index as HTML
1575
+ Completed 500 Internal Server Error in 0ms
1576
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1577
+ Processing by APIController#index as HTML
1578
+ Completed 500 Internal Server Error in 0ms
1579
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1580
+ Processing by APIController#index as HTML
1581
+ Completed 500 Internal Server Error in 0ms
1582
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1583
+ Processing by APIController#index as HTML
1584
+ Completed 500 Internal Server Error in 0ms
1585
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1586
+ Processing by APIController#index as HTML
1587
+ Completed 500 Internal Server Error in 0ms
1588
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1589
+ Processing by APIController#index as HTML
1590
+ Completed 500 Internal Server Error in 0ms
1591
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1592
+ Processing by APIController#index as HTML
1593
+ Completed 500 Internal Server Error in 0ms
1594
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:14 +0200
1595
+ Processing by APIController#index as HTML
1596
+ Completed 500 Internal Server Error in 0ms
1597
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1598
+ Processing by APIController#action as HTML
1599
+ Completed 500 Internal Server Error in 0ms
1600
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1601
+ Processing by APIController#action as HTML
1602
+ Completed 500 Internal Server Error in 0ms
1603
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1604
+ Processing by APIController#action as HTML
1605
+ Completed 500 Internal Server Error in 0ms
1606
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1607
+ Processing by APIController#action as HTML
1608
+ Completed 500 Internal Server Error in 0ms
1609
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1610
+ Processing by APIController#action as HTML
1611
+ Completed 500 Internal Server Error in 0ms
1612
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1613
+ Processing by APIController#action as HTML
1614
+ Completed 500 Internal Server Error in 0ms
1615
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1616
+ Processing by APIController#index as HTML
1617
+ Completed 500 Internal Server Error in 0ms
1618
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1619
+ Processing by APIController#index as HTML
1620
+ Completed 500 Internal Server Error in 0ms
1621
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1622
+ Processing by APIController#index as HTML
1623
+ Completed 500 Internal Server Error in 0ms
1624
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1625
+ Processing by APIController#index as HTML
1626
+ Completed 500 Internal Server Error in 0ms
1627
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1628
+ Processing by APIController#index as HTML
1629
+ Completed 500 Internal Server Error in 0ms
1630
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1631
+ Processing by APIController#index as HTML
1632
+ Completed 500 Internal Server Error in 0ms
1633
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1634
+ Processing by APIController#index as HTML
1635
+ Completed 500 Internal Server Error in 0ms
1636
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:20 +0200
1637
+ Processing by APIController#index as HTML
1638
+ Completed 500 Internal Server Error in 0ms
1639
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1640
+ Processing by APIController#action as HTML
1641
+ Completed 200 OK in 1ms (Views: 0.2ms)
1642
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1643
+ Processing by APIController#action as HTML
1644
+ Completed 200 OK in 1ms (Views: 0.2ms)
1645
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1646
+ Processing by APIController#action as HTML
1647
+ Completed 200 OK in 1ms (Views: 0.1ms)
1648
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1649
+ Processing by APIController#action as HTML
1650
+ Completed 200 OK in 1ms (Views: 0.1ms)
1651
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1652
+ Processing by APIController#action as HTML
1653
+ Completed 200 OK in 1ms (Views: 0.1ms)
1654
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1655
+ Processing by APIController#action as HTML
1656
+ Completed 200 OK in 1ms (Views: 0.1ms)
1657
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1658
+ Processing by APIController#index as HTML
1659
+ Completed 200 OK in 1ms (Views: 0.1ms)
1660
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1661
+ Processing by APIController#index as HTML
1662
+ Completed 200 OK in 1ms (Views: 0.1ms)
1663
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1664
+ Processing by APIController#index as HTML
1665
+ Completed 200 OK in 1ms (Views: 0.1ms)
1666
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1667
+ Processing by APIController#index as HTML
1668
+ Completed 200 OK in 1ms (Views: 0.1ms)
1669
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1670
+ Processing by APIController#index as HTML
1671
+ Completed 200 OK in 1ms (Views: 0.1ms)
1672
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1673
+ Processing by APIController#index as HTML
1674
+ Completed 200 OK in 1ms (Views: 0.2ms)
1675
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1676
+ Processing by APIController#index as HTML
1677
+ Completed 200 OK in 1ms (Views: 0.1ms)
1678
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:25:39 +0200
1679
+ Processing by APIController#index as HTML
1680
+ Completed 200 OK in 1ms (Views: 0.1ms)
1681
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1682
+ Processing by APIController#index as HTML
1683
+ Completed 500 Internal Server Error in 1ms
1684
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1685
+ Processing by APIController#index as HTML
1686
+ Completed 500 Internal Server Error in 0ms
1687
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1688
+ Processing by APIController#index as HTML
1689
+ Completed 500 Internal Server Error in 0ms
1690
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1691
+ Processing by APIController#index as HTML
1692
+ Completed 500 Internal Server Error in 0ms
1693
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1694
+ Processing by APIController#index as HTML
1695
+ Completed 500 Internal Server Error in 0ms
1696
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1697
+ Processing by APIController#index as HTML
1698
+ Completed 500 Internal Server Error in 0ms
1699
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1700
+ Processing by APIController#index as HTML
1701
+ Completed 500 Internal Server Error in 0ms
1702
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1703
+ Processing by APIController#index as HTML
1704
+ Completed 500 Internal Server Error in 0ms
1705
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1706
+ Processing by APIController#action as HTML
1707
+ Completed 500 Internal Server Error in 0ms
1708
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1709
+ Processing by APIController#action as HTML
1710
+ Completed 500 Internal Server Error in 0ms
1711
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1712
+ Processing by APIController#action as HTML
1713
+ Completed 500 Internal Server Error in 0ms
1714
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1715
+ Processing by APIController#action as HTML
1716
+ Completed 500 Internal Server Error in 0ms
1717
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1718
+ Processing by APIController#action as HTML
1719
+ Completed 500 Internal Server Error in 0ms
1720
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:33 +0200
1721
+ Processing by APIController#action as HTML
1722
+ Completed 500 Internal Server Error in 0ms
1723
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
1724
+ Processing by APIController#index as HTML
1725
+ Completed 500 Internal Server Error in 2ms
1726
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
1727
+ Processing by APIController#index as HTML
1728
+ Completed 500 Internal Server Error in 2ms
1729
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
1730
+ Processing by APIController#index as HTML
1731
+ Completed 500 Internal Server Error in 2ms
1732
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
1733
+ Processing by APIController#index as HTML
1734
+ Completed 500 Internal Server Error in 2ms
1735
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
1736
+ Processing by APIController#index as HTML
1737
+ Completed 500 Internal Server Error in 2ms
1738
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
1739
+ Processing by APIController#index as HTML
1740
+ Completed 500 Internal Server Error in 2ms
1741
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
1742
+ Processing by APIController#index as HTML
1743
+ Completed 500 Internal Server Error in 2ms
1744
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
1745
+ Processing by APIController#index as HTML
1746
+ Completed 500 Internal Server Error in 2ms
1747
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
1748
+ Processing by APIController#action as HTML
1749
+ Completed 500 Internal Server Error in 2ms
1750
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:43 +0200
1751
+ Processing by APIController#action as HTML
1752
+ Completed 500 Internal Server Error in 2ms
1753
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:44 +0200
1754
+ Processing by APIController#action as HTML
1755
+ Completed 500 Internal Server Error in 2ms
1756
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:44 +0200
1757
+ Processing by APIController#action as HTML
1758
+ Completed 500 Internal Server Error in 2ms
1759
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:44 +0200
1760
+ Processing by APIController#action as HTML
1761
+ Completed 500 Internal Server Error in 3ms
1762
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:44 +0200
1763
+ Processing by APIController#action as HTML
1764
+ Completed 500 Internal Server Error in 2ms
1765
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1766
+ Processing by APIController#index as HTML
1767
+ Completed 200 OK in 2ms (Views: 0.2ms)
1768
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1769
+ Processing by APIController#index as HTML
1770
+ Completed 200 OK in 2ms (Views: 0.2ms)
1771
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1772
+ Processing by APIController#index as HTML
1773
+ Completed 200 OK in 2ms (Views: 0.2ms)
1774
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1775
+ Processing by APIController#index as HTML
1776
+ Completed 200 OK in 2ms (Views: 0.2ms)
1777
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1778
+ Processing by APIController#index as HTML
1779
+ Completed 200 OK in 2ms (Views: 0.1ms)
1780
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1781
+ Processing by APIController#index as HTML
1782
+ Completed 200 OK in 2ms (Views: 0.1ms)
1783
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1784
+ Processing by APIController#index as HTML
1785
+ Completed 200 OK in 2ms (Views: 0.2ms)
1786
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1787
+ Processing by APIController#index as HTML
1788
+ Completed 200 OK in 2ms (Views: 0.2ms)
1789
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1790
+ Processing by APIController#action as HTML
1791
+ Completed 200 OK in 1ms (Views: 0.1ms)
1792
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1793
+ Processing by APIController#action as HTML
1794
+ Completed 200 OK in 1ms (Views: 0.1ms)
1795
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1796
+ Processing by APIController#action as HTML
1797
+ Completed 200 OK in 1ms (Views: 0.1ms)
1798
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1799
+ Processing by APIController#action as HTML
1800
+ Completed 200 OK in 1ms (Views: 0.1ms)
1801
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1802
+ Processing by APIController#action as HTML
1803
+ Completed 200 OK in 1ms (Views: 0.1ms)
1804
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:26:49 +0200
1805
+ Processing by APIController#action as HTML
1806
+ Completed 200 OK in 1ms (Views: 0.1ms)
1807
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1808
+ Processing by APIController#action as HTML
1809
+ Completed 200 OK in 2ms (Views: 0.2ms)
1810
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1811
+ Processing by APIController#action as HTML
1812
+ Completed 200 OK in 1ms (Views: 0.2ms)
1813
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1814
+ Processing by APIController#action as HTML
1815
+ Completed 200 OK in 1ms (Views: 0.1ms)
1816
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1817
+ Processing by APIController#action as HTML
1818
+ Completed 200 OK in 1ms (Views: 0.1ms)
1819
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1820
+ Processing by APIController#action as HTML
1821
+ Completed 200 OK in 1ms (Views: 0.1ms)
1822
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1823
+ Processing by APIController#action as HTML
1824
+ Completed 200 OK in 1ms (Views: 0.1ms)
1825
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1826
+ Processing by APIController#index as HTML
1827
+ Completed 200 OK in 1ms (Views: 0.1ms)
1828
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1829
+ Processing by APIController#index as HTML
1830
+ Completed 200 OK in 1ms (Views: 0.1ms)
1831
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1832
+ Processing by APIController#index as HTML
1833
+ Completed 200 OK in 1ms (Views: 0.1ms)
1834
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1835
+ Processing by APIController#index as HTML
1836
+ Completed 200 OK in 1ms (Views: 0.1ms)
1837
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1838
+ Processing by APIController#index as HTML
1839
+ Completed 200 OK in 1ms (Views: 0.2ms)
1840
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1841
+ Processing by APIController#index as HTML
1842
+ Completed 200 OK in 1ms (Views: 0.1ms)
1843
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1844
+ Processing by APIController#index as HTML
1845
+ Completed 200 OK in 1ms (Views: 0.1ms)
1846
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:05 +0200
1847
+ Processing by APIController#index as HTML
1848
+ Completed 200 OK in 1ms (Views: 0.1ms)
1849
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1850
+ Processing by APIController#index as HTML
1851
+ Completed 200 OK in 2ms (Views: 0.2ms)
1852
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1853
+ Processing by APIController#index as HTML
1854
+ Completed 200 OK in 2ms (Views: 0.2ms)
1855
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1856
+ Processing by APIController#index as HTML
1857
+ Completed 200 OK in 1ms (Views: 0.1ms)
1858
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1859
+ Processing by APIController#index as HTML
1860
+ Completed 200 OK in 1ms (Views: 0.1ms)
1861
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1862
+ Processing by APIController#index as HTML
1863
+ Completed 200 OK in 1ms (Views: 0.1ms)
1864
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1865
+ Processing by APIController#index as HTML
1866
+ Completed 200 OK in 1ms (Views: 0.1ms)
1867
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1868
+ Processing by APIController#index as HTML
1869
+ Completed 200 OK in 1ms (Views: 0.1ms)
1870
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1871
+ Processing by APIController#index as HTML
1872
+ Completed 200 OK in 1ms (Views: 0.1ms)
1873
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1874
+ Processing by APIController#action as HTML
1875
+ Completed 200 OK in 1ms (Views: 0.1ms)
1876
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1877
+ Processing by APIController#action as HTML
1878
+ Completed 200 OK in 1ms (Views: 0.1ms)
1879
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1880
+ Processing by APIController#action as HTML
1881
+ Completed 200 OK in 1ms (Views: 0.1ms)
1882
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1883
+ Processing by APIController#action as HTML
1884
+ Completed 200 OK in 1ms (Views: 0.1ms)
1885
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1886
+ Processing by APIController#action as HTML
1887
+ Completed 200 OK in 1ms (Views: 0.1ms)
1888
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:25 +0200
1889
+ Processing by APIController#action as HTML
1890
+ Completed 200 OK in 1ms (Views: 0.1ms)
1891
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1892
+ Processing by APIController#index as HTML
1893
+ Completed 500 Internal Server Error in 0ms
1894
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1895
+ Processing by APIController#index as HTML
1896
+ Completed 500 Internal Server Error in 0ms
1897
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1898
+ Processing by APIController#index as HTML
1899
+ Completed 500 Internal Server Error in 0ms
1900
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1901
+ Processing by APIController#index as HTML
1902
+ Completed 500 Internal Server Error in 0ms
1903
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1904
+ Processing by APIController#index as HTML
1905
+ Completed 500 Internal Server Error in 0ms
1906
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1907
+ Processing by APIController#index as HTML
1908
+ Completed 500 Internal Server Error in 0ms
1909
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1910
+ Processing by APIController#index as HTML
1911
+ Completed 500 Internal Server Error in 0ms
1912
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1913
+ Processing by APIController#index as HTML
1914
+ Completed 500 Internal Server Error in 0ms
1915
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1916
+ Processing by APIController#action as HTML
1917
+ Completed 200 OK in 2ms (Views: 0.2ms)
1918
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1919
+ Processing by APIController#action as HTML
1920
+ Completed 200 OK in 1ms (Views: 0.2ms)
1921
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1922
+ Processing by APIController#action as HTML
1923
+ Completed 200 OK in 2ms (Views: 0.2ms)
1924
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1925
+ Processing by APIController#action as HTML
1926
+ Completed 200 OK in 1ms (Views: 0.1ms)
1927
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1928
+ Processing by APIController#action as HTML
1929
+ Completed 200 OK in 1ms (Views: 0.1ms)
1930
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:27:42 +0200
1931
+ Processing by APIController#action as HTML
1932
+ Completed 200 OK in 1ms (Views: 0.1ms)
1933
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1934
+ Processing by APIController#index as HTML
1935
+ Completed 500 Internal Server Error in 0ms
1936
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1937
+ Processing by APIController#index as HTML
1938
+ Completed 500 Internal Server Error in 0ms
1939
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1940
+ Processing by APIController#index as HTML
1941
+ Completed 500 Internal Server Error in 0ms
1942
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1943
+ Processing by APIController#index as HTML
1944
+ Completed 500 Internal Server Error in 0ms
1945
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1946
+ Processing by APIController#index as HTML
1947
+ Completed 500 Internal Server Error in 0ms
1948
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1949
+ Processing by APIController#index as HTML
1950
+ Completed 500 Internal Server Error in 0ms
1951
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1952
+ Processing by APIController#index as HTML
1953
+ Completed 500 Internal Server Error in 0ms
1954
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1955
+ Processing by APIController#index as HTML
1956
+ Completed 500 Internal Server Error in 0ms
1957
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1958
+ Processing by APIController#action as HTML
1959
+ Completed 500 Internal Server Error in 0ms
1960
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1961
+ Processing by APIController#action as HTML
1962
+ Completed 500 Internal Server Error in 0ms
1963
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1964
+ Processing by APIController#action as HTML
1965
+ Completed 500 Internal Server Error in 0ms
1966
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1967
+ Processing by APIController#action as HTML
1968
+ Completed 500 Internal Server Error in 0ms
1969
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1970
+ Processing by APIController#action as HTML
1971
+ Completed 500 Internal Server Error in 0ms
1972
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:15 +0200
1973
+ Processing by APIController#action as HTML
1974
+ Completed 500 Internal Server Error in 0ms
1975
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
1976
+ Processing by APIController#index as HTML
1977
+ Completed 500 Internal Server Error in 0ms
1978
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
1979
+ Processing by APIController#index as HTML
1980
+ Completed 500 Internal Server Error in 0ms
1981
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
1982
+ Processing by APIController#index as HTML
1983
+ Completed 500 Internal Server Error in 0ms
1984
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
1985
+ Processing by APIController#index as HTML
1986
+ Completed 500 Internal Server Error in 0ms
1987
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
1988
+ Processing by APIController#index as HTML
1989
+ Completed 500 Internal Server Error in 0ms
1990
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
1991
+ Processing by APIController#index as HTML
1992
+ Completed 500 Internal Server Error in 0ms
1993
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
1994
+ Processing by APIController#index as HTML
1995
+ Completed 500 Internal Server Error in 0ms
1996
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
1997
+ Processing by APIController#index as HTML
1998
+ Completed 500 Internal Server Error in 0ms
1999
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
2000
+ Processing by APIController#action as HTML
2001
+ Completed 200 OK in 2ms (Views: 0.2ms)
2002
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
2003
+ Processing by APIController#action as HTML
2004
+ Completed 200 OK in 2ms (Views: 0.4ms)
2005
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
2006
+ Processing by APIController#action as HTML
2007
+ Completed 200 OK in 1ms (Views: 0.2ms)
2008
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
2009
+ Processing by APIController#action as HTML
2010
+ Completed 200 OK in 1ms (Views: 0.1ms)
2011
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
2012
+ Processing by APIController#action as HTML
2013
+ Completed 200 OK in 1ms (Views: 0.1ms)
2014
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:21 +0200
2015
+ Processing by APIController#action as HTML
2016
+ Completed 200 OK in 1ms (Views: 0.1ms)
2017
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2018
+ Processing by APIController#action as HTML
2019
+ Completed 200 OK in 2ms (Views: 0.2ms)
2020
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2021
+ Processing by APIController#action as HTML
2022
+ Completed 200 OK in 1ms (Views: 0.1ms)
2023
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2024
+ Processing by APIController#action as HTML
2025
+ Completed 200 OK in 1ms (Views: 0.1ms)
2026
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2027
+ Processing by APIController#action as HTML
2028
+ Completed 200 OK in 1ms (Views: 0.1ms)
2029
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2030
+ Processing by APIController#action as HTML
2031
+ Completed 200 OK in 1ms (Views: 0.1ms)
2032
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2033
+ Processing by APIController#action as HTML
2034
+ Completed 200 OK in 1ms (Views: 0.1ms)
2035
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2036
+ Processing by APIController#index as HTML
2037
+ Completed 200 OK in 1ms (Views: 0.1ms)
2038
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2039
+ Processing by APIController#index as HTML
2040
+ Completed 200 OK in 2ms (Views: 0.2ms)
2041
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2042
+ Processing by APIController#index as HTML
2043
+ Completed 200 OK in 1ms (Views: 0.2ms)
2044
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2045
+ Processing by APIController#index as HTML
2046
+ Completed 200 OK in 1ms (Views: 0.2ms)
2047
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2048
+ Processing by APIController#index as HTML
2049
+ Completed 200 OK in 1ms (Views: 0.1ms)
2050
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2051
+ Processing by APIController#index as HTML
2052
+ Completed 200 OK in 1ms (Views: 0.1ms)
2053
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2054
+ Processing by APIController#index as HTML
2055
+ Completed 200 OK in 1ms (Views: 0.1ms)
2056
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:28:36 +0200
2057
+ Processing by APIController#index as HTML
2058
+ Completed 200 OK in 1ms (Views: 0.1ms)
2059
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2060
+ Processing by APIController#action as HTML
2061
+ Completed 200 OK in 2ms (Views: 0.2ms)
2062
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2063
+ Processing by APIController#action as HTML
2064
+ Completed 200 OK in 1ms (Views: 0.1ms)
2065
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2066
+ Processing by APIController#action as HTML
2067
+ Completed 200 OK in 1ms (Views: 0.1ms)
2068
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2069
+ Processing by APIController#action as HTML
2070
+ Completed 200 OK in 1ms (Views: 0.1ms)
2071
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2072
+ Processing by APIController#action as HTML
2073
+ Completed 200 OK in 1ms (Views: 0.1ms)
2074
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2075
+ Processing by APIController#action as HTML
2076
+ Completed 200 OK in 1ms (Views: 0.1ms)
2077
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2078
+ Processing by APIController#index as HTML
2079
+ Completed 200 OK in 2ms (Views: 0.1ms)
2080
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2081
+ Processing by APIController#index as HTML
2082
+ Completed 200 OK in 2ms (Views: 0.3ms)
2083
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2084
+ Processing by APIController#index as HTML
2085
+ Completed 200 OK in 3ms (Views: 0.2ms)
2086
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2087
+ Processing by APIController#index as HTML
2088
+ Completed 200 OK in 3ms (Views: 0.2ms)
2089
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2090
+ Processing by APIController#index as HTML
2091
+ Completed 200 OK in 2ms (Views: 0.2ms)
2092
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2093
+ Processing by APIController#index as HTML
2094
+ Completed 200 OK in 3ms (Views: 0.2ms)
2095
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2096
+ Processing by APIController#index as HTML
2097
+ Completed 200 OK in 3ms (Views: 0.3ms)
2098
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:29:43 +0200
2099
+ Processing by APIController#index as HTML
2100
+ Completed 200 OK in 3ms (Views: 0.2ms)
2101
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2102
+ Processing by APIController#action as HTML
2103
+ Completed 200 OK in 2ms (Views: 0.2ms)
2104
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2105
+ Processing by APIController#action as HTML
2106
+ Completed 200 OK in 1ms (Views: 0.1ms)
2107
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2108
+ Processing by APIController#action as HTML
2109
+ Completed 200 OK in 1ms (Views: 0.1ms)
2110
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2111
+ Processing by APIController#action as HTML
2112
+ Completed 200 OK in 1ms (Views: 0.1ms)
2113
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2114
+ Processing by APIController#action as HTML
2115
+ Completed 200 OK in 1ms (Views: 0.1ms)
2116
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2117
+ Processing by APIController#action as HTML
2118
+ Completed 200 OK in 1ms (Views: 0.1ms)
2119
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2120
+ Processing by APIController#index as HTML
2121
+ Completed 200 OK in 1ms (Views: 0.1ms)
2122
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2123
+ Processing by APIController#index as HTML
2124
+ Completed 200 OK in 1ms (Views: 0.1ms)
2125
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2126
+ Processing by APIController#index as HTML
2127
+ Completed 200 OK in 1ms (Views: 0.1ms)
2128
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2129
+ Processing by APIController#index as HTML
2130
+ Completed 200 OK in 1ms (Views: 0.2ms)
2131
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2132
+ Processing by APIController#index as HTML
2133
+ Completed 200 OK in 1ms (Views: 0.1ms)
2134
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2135
+ Processing by APIController#index as HTML
2136
+ Completed 200 OK in 2ms (Views: 0.1ms)
2137
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2138
+ Processing by APIController#index as HTML
2139
+ Completed 200 OK in 1ms (Views: 0.1ms)
2140
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:30:08 +0200
2141
+ Processing by APIController#index as HTML
2142
+ Completed 200 OK in 1ms (Views: 0.1ms)
2143
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2144
+ Processing by APIController#index as HTML
2145
+ Completed 200 OK in 2ms (Views: 0.2ms)
2146
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2147
+ Processing by APIController#index as HTML
2148
+ Completed 200 OK in 1ms (Views: 0.1ms)
2149
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2150
+ Processing by APIController#index as HTML
2151
+ Completed 200 OK in 1ms (Views: 0.2ms)
2152
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2153
+ Processing by APIController#index as HTML
2154
+ Completed 200 OK in 2ms (Views: 0.2ms)
2155
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2156
+ Processing by APIController#index as HTML
2157
+ Completed 200 OK in 2ms (Views: 0.2ms)
2158
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2159
+ Processing by APIController#index as HTML
2160
+ Completed 200 OK in 1ms (Views: 0.1ms)
2161
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2162
+ Processing by APIController#index as HTML
2163
+ Completed 200 OK in 1ms (Views: 0.1ms)
2164
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2165
+ Processing by APIController#index as HTML
2166
+ Completed 200 OK in 1ms (Views: 0.1ms)
2167
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2168
+ Processing by APIController#action as HTML
2169
+ Completed 200 OK in 1ms (Views: 0.1ms)
2170
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2171
+ Processing by APIController#action as HTML
2172
+ Completed 200 OK in 1ms (Views: 0.1ms)
2173
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2174
+ Processing by APIController#action as HTML
2175
+ Completed 200 OK in 1ms (Views: 0.1ms)
2176
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2177
+ Processing by APIController#action as HTML
2178
+ Completed 200 OK in 1ms (Views: 0.1ms)
2179
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2180
+ Processing by APIController#action as HTML
2181
+ Completed 200 OK in 1ms (Views: 0.1ms)
2182
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:07 +0200
2183
+ Processing by APIController#action as HTML
2184
+ Completed 200 OK in 1ms (Views: 0.1ms)
2185
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2186
+ Processing by APIController#index as HTML
2187
+ Completed 200 OK in 2ms (Views: 0.2ms)
2188
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2189
+ Processing by APIController#index as HTML
2190
+ Completed 200 OK in 1ms (Views: 0.1ms)
2191
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2192
+ Processing by APIController#index as HTML
2193
+ Completed 200 OK in 2ms (Views: 0.2ms)
2194
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2195
+ Processing by APIController#index as HTML
2196
+ Completed 200 OK in 1ms (Views: 0.1ms)
2197
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2198
+ Processing by APIController#index as HTML
2199
+ Completed 200 OK in 1ms (Views: 0.2ms)
2200
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2201
+ Processing by APIController#index as HTML
2202
+ Completed 200 OK in 1ms (Views: 0.2ms)
2203
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2204
+ Processing by APIController#index as HTML
2205
+ Completed 200 OK in 1ms (Views: 0.1ms)
2206
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2207
+ Processing by APIController#index as HTML
2208
+ Completed 200 OK in 1ms (Views: 0.1ms)
2209
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2210
+ Processing by APIController#action as HTML
2211
+ Completed 200 OK in 1ms (Views: 0.1ms)
2212
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2213
+ Processing by APIController#action as HTML
2214
+ Completed 200 OK in 1ms (Views: 0.1ms)
2215
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2216
+ Processing by APIController#action as HTML
2217
+ Completed 200 OK in 1ms (Views: 0.1ms)
2218
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2219
+ Processing by APIController#action as HTML
2220
+ Completed 200 OK in 1ms (Views: 0.1ms)
2221
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
2222
+ Processing by APIController#action as HTML
2223
+ Completed 200 OK in 1ms (Views: 0.1ms)
2224
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:33:52 +0200
20
2225
  Processing by APIController#action as HTML
21
- Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 730)
22
- Started GET "/action" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
2226
+ Completed 200 OK in 1ms (Views: 0.1ms)
2227
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
23
2228
  Processing by APIController#action as HTML
24
- Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 764)
25
- Started GET "/" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
2229
+ Completed 200 OK in 2ms (Views: 0.2ms)
2230
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2231
+ Processing by APIController#action as HTML
2232
+ Completed 200 OK in 1ms (Views: 0.1ms)
2233
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2234
+ Processing by APIController#action as HTML
2235
+ Completed 200 OK in 1ms (Views: 0.1ms)
2236
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2237
+ Processing by APIController#action as HTML
2238
+ Completed 200 OK in 1ms (Views: 0.1ms)
2239
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2240
+ Processing by APIController#action as HTML
2241
+ Completed 200 OK in 1ms (Views: 0.1ms)
2242
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2243
+ Processing by APIController#action as HTML
2244
+ Completed 200 OK in 1ms (Views: 0.1ms)
2245
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2246
+ Processing by APIController#index as HTML
2247
+ Completed 200 OK in 1ms (Views: 0.1ms)
2248
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2249
+ Processing by APIController#index as HTML
2250
+ Completed 200 OK in 1ms (Views: 0.1ms)
2251
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2252
+ Processing by APIController#index as HTML
2253
+ Completed 200 OK in 2ms (Views: 0.3ms)
2254
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2255
+ Processing by APIController#index as HTML
2256
+ Completed 200 OK in 2ms (Views: 0.2ms)
2257
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2258
+ Processing by APIController#index as HTML
2259
+ Completed 200 OK in 1ms (Views: 0.2ms)
2260
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2261
+ Processing by APIController#index as HTML
2262
+ Completed 200 OK in 2ms (Views: 0.2ms)
2263
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2264
+ Processing by APIController#index as HTML
2265
+ Completed 200 OK in 2ms (Views: 0.2ms)
2266
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:14 +0200
2267
+ Processing by APIController#index as HTML
2268
+ Completed 200 OK in 1ms (Views: 0.1ms)
2269
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2270
+ Processing by APIController#index as HTML
2271
+ Completed 200 OK in 2ms (Views: 0.2ms)
2272
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2273
+ Processing by APIController#index as HTML
2274
+ Completed 200 OK in 1ms (Views: 0.2ms)
2275
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2276
+ Processing by APIController#index as HTML
2277
+ Completed 200 OK in 2ms (Views: 0.1ms)
2278
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2279
+ Processing by APIController#index as HTML
2280
+ Completed 200 OK in 1ms (Views: 0.1ms)
2281
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2282
+ Processing by APIController#index as HTML
2283
+ Completed 200 OK in 1ms (Views: 0.1ms)
2284
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2285
+ Processing by APIController#index as HTML
2286
+ Completed 200 OK in 1ms (Views: 0.1ms)
2287
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2288
+ Processing by APIController#index as HTML
2289
+ Completed 200 OK in 1ms (Views: 0.1ms)
2290
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2291
+ Processing by APIController#index as HTML
2292
+ Completed 200 OK in 1ms (Views: 0.1ms)
2293
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2294
+ Processing by APIController#action as HTML
2295
+ Completed 200 OK in 1ms (Views: 0.1ms)
2296
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2297
+ Processing by APIController#action as HTML
2298
+ Completed 200 OK in 1ms (Views: 0.1ms)
2299
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2300
+ Processing by APIController#action as HTML
2301
+ Completed 200 OK in 1ms (Views: 0.1ms)
2302
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2303
+ Processing by APIController#action as HTML
2304
+ Completed 200 OK in 1ms (Views: 0.1ms)
2305
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2306
+ Processing by APIController#action as HTML
2307
+ Completed 200 OK in 1ms (Views: 0.2ms)
2308
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:34:42 +0200
2309
+ Processing by APIController#action as HTML
2310
+ Completed 200 OK in 1ms (Views: 0.2ms)
2311
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2312
+ Processing by APIController#action as HTML
2313
+ Completed 200 OK in 2ms (Views: 0.3ms)
2314
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2315
+ Processing by APIController#action as HTML
2316
+ Completed 200 OK in 1ms (Views: 0.2ms)
2317
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2318
+ Processing by APIController#action as HTML
2319
+ Completed 200 OK in 1ms (Views: 0.1ms)
2320
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2321
+ Processing by APIController#action as HTML
2322
+ Completed 200 OK in 1ms (Views: 0.2ms)
2323
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2324
+ Processing by APIController#action as HTML
2325
+ Completed 200 OK in 1ms (Views: 0.1ms)
2326
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2327
+ Processing by APIController#action as HTML
2328
+ Completed 200 OK in 1ms (Views: 0.1ms)
2329
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2330
+ Processing by APIController#index as HTML
2331
+ Completed 200 OK in 1ms (Views: 0.2ms)
2332
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2333
+ Processing by APIController#index as HTML
2334
+ Completed 200 OK in 6ms (Views: 0.1ms)
2335
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2336
+ Processing by APIController#index as HTML
2337
+ Completed 200 OK in 2ms (Views: 0.2ms)
2338
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2339
+ Processing by APIController#index as HTML
2340
+ Completed 200 OK in 1ms (Views: 0.1ms)
2341
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2342
+ Processing by APIController#index as HTML
2343
+ Completed 200 OK in 1ms (Views: 0.2ms)
2344
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2345
+ Processing by APIController#index as HTML
2346
+ Completed 200 OK in 1ms (Views: 0.2ms)
2347
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2348
+ Processing by APIController#index as HTML
2349
+ Completed 200 OK in 2ms (Views: 0.2ms)
2350
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:35:01 +0200
2351
+ Processing by APIController#index as HTML
2352
+ Completed 200 OK in 2ms (Views: 0.2ms)
2353
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2354
+ Processing by APIController#index as HTML
2355
+ Completed 200 OK in 4ms (Views: 0.6ms)
2356
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2357
+ Processing by APIController#index as HTML
2358
+ Completed 200 OK in 3ms (Views: 0.4ms)
2359
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2360
+ Processing by APIController#index as HTML
2361
+ Completed 200 OK in 3ms (Views: 0.3ms)
2362
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2363
+ Processing by APIController#index as HTML
2364
+ Completed 200 OK in 5ms (Views: 0.4ms)
2365
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2366
+ Processing by APIController#index as HTML
2367
+ Completed 200 OK in 3ms (Views: 0.3ms)
2368
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2369
+ Processing by APIController#index as HTML
2370
+ Completed 200 OK in 3ms (Views: 0.3ms)
2371
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2372
+ Processing by APIController#index as HTML
2373
+ Completed 200 OK in 3ms (Views: 0.3ms)
2374
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2375
+ Processing by APIController#index as HTML
2376
+ Completed 200 OK in 3ms (Views: 0.3ms)
2377
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2378
+ Processing by APIController#action as HTML
2379
+ Completed 200 OK in 2ms (Views: 0.3ms)
2380
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2381
+ Processing by APIController#action as HTML
2382
+ Completed 200 OK in 2ms (Views: 0.2ms)
2383
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2384
+ Processing by APIController#action as HTML
2385
+ Completed 200 OK in 2ms (Views: 0.3ms)
2386
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2387
+ Processing by APIController#action as HTML
2388
+ Completed 200 OK in 2ms (Views: 0.3ms)
2389
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2390
+ Processing by APIController#action as HTML
2391
+ Completed 200 OK in 2ms (Views: 0.2ms)
2392
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:04 +0200
2393
+ Processing by APIController#action as HTML
2394
+ Completed 200 OK in 2ms (Views: 0.2ms)
2395
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2396
+ Processing by APIController#action as HTML
2397
+ Completed 200 OK in 2ms (Views: 0.2ms)
2398
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2399
+ Processing by APIController#action as HTML
2400
+ Completed 200 OK in 1ms (Views: 0.1ms)
2401
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2402
+ Processing by APIController#action as HTML
2403
+ Completed 200 OK in 1ms (Views: 0.1ms)
2404
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2405
+ Processing by APIController#action as HTML
2406
+ Completed 200 OK in 1ms (Views: 0.1ms)
2407
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2408
+ Processing by APIController#action as HTML
2409
+ Completed 200 OK in 2ms (Views: 0.1ms)
2410
+ Started GET "/action" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2411
+ Processing by APIController#action as HTML
2412
+ Completed 200 OK in 1ms (Views: 0.1ms)
2413
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2414
+ Processing by APIController#index as HTML
2415
+ Completed 200 OK in 1ms (Views: 0.1ms)
2416
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2417
+ Processing by APIController#index as HTML
2418
+ Completed 200 OK in 1ms (Views: 0.1ms)
2419
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2420
+ Processing by APIController#index as HTML
2421
+ Completed 200 OK in 1ms (Views: 0.2ms)
2422
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
26
2423
  Processing by APIController#index as HTML
27
- Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 762)
28
- Started GET "/" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
2424
+ Completed 200 OK in 1ms (Views: 0.2ms)
2425
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
29
2426
  Processing by APIController#index as HTML
30
- Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 492)
31
- Started GET "/" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
2427
+ Completed 200 OK in 1ms (Views: 0.2ms)
2428
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2429
+ Processing by APIController#index as HTML
2430
+ Completed 200 OK in 1ms (Views: 0.1ms)
2431
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2432
+ Processing by APIController#index as HTML
2433
+ Completed 200 OK in 1ms (Views: 0.2ms)
2434
+ Started GET "/" for 127.0.0.1 at 2016-08-09 23:36:14 +0200
2435
+ Processing by APIController#index as HTML
2436
+ Completed 200 OK in 1ms (Views: 0.1ms)
2437
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2438
+ Processing by APIController#index as HTML
2439
+ Completed 200 OK in 1ms (Views: 0.2ms)
2440
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2441
+ Processing by APIController#index as HTML
2442
+ Completed 200 OK in 1ms (Views: 0.1ms)
2443
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2444
+ Processing by APIController#index as HTML
2445
+ Completed 200 OK in 0ms (Views: 0.2ms)
2446
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2447
+ Processing by APIController#index as HTML
2448
+ Completed 200 OK in 0ms (Views: 0.1ms)
2449
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2450
+ Processing by APIController#index as HTML
2451
+ Completed 200 OK in 0ms (Views: 0.1ms)
2452
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2453
+ Processing by APIController#index as HTML
2454
+ Completed 200 OK in 0ms (Views: 0.2ms)
2455
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2456
+ Processing by APIController#index as HTML
2457
+ Completed 200 OK in 0ms (Views: 0.1ms)
2458
+ Started GET "/" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2459
+ Processing by APIController#index as HTML
2460
+ Completed 200 OK in 0ms (Views: 0.1ms)
2461
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2462
+ Processing by APIController#action as HTML
2463
+ Completed 200 OK in 1ms (Views: 0.1ms)
2464
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2465
+ Processing by APIController#action as HTML
2466
+ Completed 200 OK in 1ms (Views: 0.1ms)
2467
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2468
+ Processing by APIController#action as HTML
2469
+ Completed 200 OK in 1ms (Views: 0.1ms)
2470
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2471
+ Processing by APIController#action as HTML
2472
+ Completed 200 OK in 1ms (Views: 0.1ms)
2473
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2474
+ Processing by APIController#action as HTML
2475
+ Completed 200 OK in 1ms (Views: 0.1ms)
2476
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2477
+ Processing by APIController#action as HTML
2478
+ Completed 200 OK in 1ms (Views: 0.1ms)
2479
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2480
+ Processing by APIController#action as HTML
2481
+ Completed 200 OK in 1ms (Views: 0.1ms)
2482
+ Started GET "/action" for 127.0.0.1 at 2018-08-21 23:04:14 +0200
2483
+ Processing by APIController#action as HTML
2484
+ Completed 200 OK in 1ms (Views: 0.1ms)
2485
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2486
+ Processing by APIController#action as HTML
2487
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 904)
2488
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2489
+ Processing by APIController#action as HTML
2490
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 731)
2491
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2492
+ Processing by APIController#action as HTML
2493
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 731)
2494
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2495
+ Processing by APIController#action as HTML
2496
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 731)
2497
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2498
+ Processing by APIController#action as HTML
2499
+ Completed 200 OK in 5ms (Views: 4.7ms | Allocations: 732)
2500
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2501
+ Processing by APIController#action as HTML
2502
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 732)
2503
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2504
+ Processing by APIController#action as HTML
2505
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 731)
2506
+ Started GET "/action" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2507
+ Processing by APIController#action as HTML
2508
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 765)
2509
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2510
+ Processing by APIController#index as HTML
2511
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 771)
2512
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
32
2513
  Processing by APIController#index as HTML
33
2514
  Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
34
- Started GET "/" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
2515
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
35
2516
  Processing by APIController#index as HTML
36
2517
  Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
37
- Started GET "/" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
2518
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
38
2519
  Processing by APIController#index as HTML
39
2520
  Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
40
- Started GET "/" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
2521
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
41
2522
  Processing by APIController#index as HTML
42
- Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 492)
43
- Started GET "/" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
2523
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2524
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
2525
+ Processing by APIController#index as HTML
2526
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2527
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
44
2528
  Processing by APIController#index as HTML
45
- Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 492)
46
- Started GET "/" for 127.0.0.1 at 2019-10-23 14:56:59 +0200
2529
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2530
+ Started GET "/" for 127.0.0.1 at 2019-06-06 08:43:19 +0200
47
2531
  Processing by APIController#index as HTML
48
2532
  Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 492)
2533
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2534
+ Processing by APIController#index as HTML
2535
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 835)
2536
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2537
+ Processing by APIController#index as HTML
2538
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2539
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2540
+ Processing by APIController#index as HTML
2541
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2542
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2543
+ Processing by APIController#index as HTML
2544
+ Completed 200 OK in 5ms (Views: 0.2ms | Allocations: 435)
2545
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2546
+ Processing by APIController#index as HTML
2547
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2548
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2549
+ Processing by APIController#index as HTML
2550
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2551
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2552
+ Processing by APIController#index as HTML
2553
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2554
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2555
+ Processing by APIController#index as HTML
2556
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2557
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2558
+ Processing by APIController#action as HTML
2559
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 697)
2560
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2561
+ Processing by APIController#action as HTML
2562
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2563
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2564
+ Processing by APIController#action as HTML
2565
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2566
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2567
+ Processing by APIController#action as HTML
2568
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2569
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2570
+ Processing by APIController#action as HTML
2571
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2572
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2573
+ Processing by APIController#action as HTML
2574
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2575
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2576
+ Processing by APIController#action as HTML
2577
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2578
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:30:26 +0200
2579
+ Processing by APIController#action as HTML
2580
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 704)
2581
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2582
+ Processing by APIController#index as HTML
2583
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 898)
2584
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2585
+ Processing by APIController#index as HTML
2586
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 512)
2587
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2588
+ Processing by APIController#index as HTML
2589
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 518)
2590
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2591
+ Processing by APIController#index as HTML
2592
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 512)
2593
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2594
+ Processing by APIController#index as HTML
2595
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 512)
2596
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2597
+ Processing by APIController#index as HTML
2598
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 512)
2599
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2600
+ Processing by APIController#index as HTML
2601
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 512)
2602
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2603
+ Processing by APIController#index as HTML
2604
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 512)
2605
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2606
+ Processing by APIController#action as HTML
2607
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 748)
2608
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2609
+ Processing by APIController#action as HTML
2610
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2611
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2612
+ Processing by APIController#action as HTML
2613
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2614
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2615
+ Processing by APIController#action as HTML
2616
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2617
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2618
+ Processing by APIController#action as HTML
2619
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2620
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2621
+ Processing by APIController#action as HTML
2622
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2623
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2624
+ Processing by APIController#action as HTML
2625
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 726)
2626
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:05 +0200
2627
+ Processing by APIController#action as HTML
2628
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 755)
2629
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2630
+ Processing by APIController#action as HTML
2631
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 850)
2632
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2633
+ Processing by APIController#action as HTML
2634
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2635
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2636
+ Processing by APIController#action as HTML
2637
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 675)
2638
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2639
+ Processing by APIController#action as HTML
2640
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 675)
2641
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2642
+ Processing by APIController#action as HTML
2643
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 675)
2644
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2645
+ Processing by APIController#action as HTML
2646
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 675)
2647
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2648
+ Processing by APIController#action as HTML
2649
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2650
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2651
+ Processing by APIController#action as HTML
2652
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 704)
2653
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2654
+ Processing by APIController#index as HTML
2655
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 681)
2656
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2657
+ Processing by APIController#index as HTML
2658
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2659
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2660
+ Processing by APIController#index as HTML
2661
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2662
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2663
+ Processing by APIController#index as HTML
2664
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2665
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2666
+ Processing by APIController#index as HTML
2667
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2668
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2669
+ Processing by APIController#index as HTML
2670
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2671
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2672
+ Processing by APIController#index as HTML
2673
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2674
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:44:14 +0200
2675
+ Processing by APIController#index as HTML
2676
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2677
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2678
+ Processing by APIController#action as HTML
2679
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 850)
2680
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2681
+ Processing by APIController#action as HTML
2682
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2683
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2684
+ Processing by APIController#action as HTML
2685
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2686
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2687
+ Processing by APIController#action as HTML
2688
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2689
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2690
+ Processing by APIController#action as HTML
2691
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2692
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2693
+ Processing by APIController#action as HTML
2694
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2695
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2696
+ Processing by APIController#action as HTML
2697
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2698
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2699
+ Processing by APIController#action as HTML
2700
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 704)
2701
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2702
+ Processing by APIController#index as HTML
2703
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 681)
2704
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2705
+ Processing by APIController#index as HTML
2706
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2707
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2708
+ Processing by APIController#index as HTML
2709
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2710
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2711
+ Processing by APIController#index as HTML
2712
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2713
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2714
+ Processing by APIController#index as HTML
2715
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2716
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2717
+ Processing by APIController#index as HTML
2718
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2719
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2720
+ Processing by APIController#index as HTML
2721
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2722
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:04 +0200
2723
+ Processing by APIController#index as HTML
2724
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2725
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2726
+ Processing by APIController#action as HTML
2727
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 850)
2728
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2729
+ Processing by APIController#action as HTML
2730
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2731
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2732
+ Processing by APIController#action as HTML
2733
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2734
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2735
+ Processing by APIController#action as HTML
2736
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2737
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2738
+ Processing by APIController#action as HTML
2739
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2740
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2741
+ Processing by APIController#action as HTML
2742
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2743
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2744
+ Processing by APIController#action as HTML
2745
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 675)
2746
+ Started GET "/action" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2747
+ Processing by APIController#action as HTML
2748
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 704)
2749
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2750
+ Processing by APIController#index as HTML
2751
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 681)
2752
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2753
+ Processing by APIController#index as HTML
2754
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2755
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2756
+ Processing by APIController#index as HTML
2757
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2758
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2759
+ Processing by APIController#index as HTML
2760
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2761
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2762
+ Processing by APIController#index as HTML
2763
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2764
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2765
+ Processing by APIController#index as HTML
2766
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2767
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2768
+ Processing by APIController#index as HTML
2769
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2770
+ Started GET "/" for 127.0.0.1 at 2020-04-03 13:45:31 +0200
2771
+ Processing by APIController#index as HTML
2772
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 434)
2773
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2774
+ Processing by APIController#index as HTML
2775
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 767)
2776
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2777
+ Processing by APIController#index as HTML
2778
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 379)
2779
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2780
+ Processing by APIController#index as HTML
2781
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2782
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2783
+ Processing by APIController#index as HTML
2784
+ Completed 200 OK in 5ms (Views: 0.2ms | Allocations: 380)
2785
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2786
+ Processing by APIController#index as HTML
2787
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2788
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2789
+ Processing by APIController#index as HTML
2790
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2791
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2792
+ Processing by APIController#index as HTML
2793
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2794
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2795
+ Processing by APIController#index as HTML
2796
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2797
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2798
+ Processing by APIController#action as HTML
2799
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 654)
2800
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2801
+ Processing by APIController#action as HTML
2802
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 632)
2803
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2804
+ Processing by APIController#action as HTML
2805
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 632)
2806
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2807
+ Processing by APIController#action as HTML
2808
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 632)
2809
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2810
+ Processing by APIController#action as HTML
2811
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 632)
2812
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2813
+ Processing by APIController#action as HTML
2814
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 632)
2815
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2816
+ Processing by APIController#action as HTML
2817
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 632)
2818
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:09:45 +0100
2819
+ Processing by APIController#action as HTML
2820
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 662)
2821
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2822
+ Processing by APIController#action as HTML
2823
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 792)
2824
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2825
+ Processing by APIController#action as HTML
2826
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 635)
2827
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2828
+ Processing by APIController#action as HTML
2829
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 635)
2830
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2831
+ Processing by APIController#action as HTML
2832
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 637)
2833
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2834
+ Processing by APIController#action as HTML
2835
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 635)
2836
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2837
+ Processing by APIController#action as HTML
2838
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 635)
2839
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2840
+ Processing by APIController#action as HTML
2841
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 635)
2842
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2843
+ Processing by APIController#action as HTML
2844
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 665)
2845
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2846
+ Processing by APIController#index as HTML
2847
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 628)
2848
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2849
+ Processing by APIController#index as HTML
2850
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2851
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2852
+ Processing by APIController#index as HTML
2853
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2854
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2855
+ Processing by APIController#index as HTML
2856
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2857
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2858
+ Processing by APIController#index as HTML
2859
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2860
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2861
+ Processing by APIController#index as HTML
2862
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 379)
2863
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2864
+ Processing by APIController#index as HTML
2865
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2866
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:10:43 +0100
2867
+ Processing by APIController#index as HTML
2868
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 379)
2869
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2870
+ Processing by APIController#action as HTML
2871
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 812)
2872
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2873
+ Processing by APIController#action as HTML
2874
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 647)
2875
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2876
+ Processing by APIController#action as HTML
2877
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2878
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2879
+ Processing by APIController#action as HTML
2880
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 647)
2881
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2882
+ Processing by APIController#action as HTML
2883
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2884
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2885
+ Processing by APIController#action as HTML
2886
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2887
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2888
+ Processing by APIController#action as HTML
2889
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2890
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2891
+ Processing by APIController#action as HTML
2892
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 679)
2893
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2894
+ Processing by APIController#index as HTML
2895
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 662)
2896
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2897
+ Processing by APIController#index as HTML
2898
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2899
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2900
+ Processing by APIController#index as HTML
2901
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2902
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2903
+ Processing by APIController#index as HTML
2904
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2905
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2906
+ Processing by APIController#index as HTML
2907
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2908
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2909
+ Processing by APIController#index as HTML
2910
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2911
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2912
+ Processing by APIController#index as HTML
2913
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2914
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:11:06 +0100
2915
+ Processing by APIController#index as HTML
2916
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2917
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2918
+ Processing by APIController#action as HTML
2919
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 800)
2920
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2921
+ Processing by APIController#action as HTML
2922
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2923
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2924
+ Processing by APIController#action as HTML
2925
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2926
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2927
+ Processing by APIController#action as HTML
2928
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2929
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2930
+ Processing by APIController#action as HTML
2931
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 647)
2932
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2933
+ Processing by APIController#action as HTML
2934
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 647)
2935
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2936
+ Processing by APIController#action as HTML
2937
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 647)
2938
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2939
+ Processing by APIController#action as HTML
2940
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 677)
2941
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2942
+ Processing by APIController#index as HTML
2943
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 655)
2944
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2945
+ Processing by APIController#index as HTML
2946
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 411)
2947
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2948
+ Processing by APIController#index as HTML
2949
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 411)
2950
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2951
+ Processing by APIController#index as HTML
2952
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 411)
2953
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2954
+ Processing by APIController#index as HTML
2955
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 411)
2956
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2957
+ Processing by APIController#index as HTML
2958
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 411)
2959
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2960
+ Processing by APIController#index as HTML
2961
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2962
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:42:14 +0100
2963
+ Processing by APIController#index as HTML
2964
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2965
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2966
+ Processing by APIController#action as HTML
2967
+ Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 812)
2968
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2969
+ Processing by APIController#action as HTML
2970
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2971
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2972
+ Processing by APIController#action as HTML
2973
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2974
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2975
+ Processing by APIController#action as HTML
2976
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2977
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2978
+ Processing by APIController#action as HTML
2979
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2980
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2981
+ Processing by APIController#action as HTML
2982
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2983
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2984
+ Processing by APIController#action as HTML
2985
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 647)
2986
+ Started GET "/action" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2987
+ Processing by APIController#action as HTML
2988
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 677)
2989
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2990
+ Processing by APIController#index as HTML
2991
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 658)
2992
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2993
+ Processing by APIController#index as HTML
2994
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2995
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2996
+ Processing by APIController#index as HTML
2997
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
2998
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
2999
+ Processing by APIController#index as HTML
3000
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
3001
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
3002
+ Processing by APIController#index as HTML
3003
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
3004
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
3005
+ Processing by APIController#index as HTML
3006
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
3007
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
3008
+ Processing by APIController#index as HTML
3009
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)
3010
+ Started GET "/" for 127.0.0.1 at 2020-12-13 13:45:28 +0100
3011
+ Processing by APIController#index as HTML
3012
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 411)