rails-rfc6570 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/rails/rfc6570.rb +121 -30
- data/lib/rails/rfc6570/patches.rb +1 -32
- data/lib/rails/rfc6570/version.rb +1 -1
- data/spec/dummy/log/test.log +1941 -35
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 74b3f4cd030c8555fe9d6af441983f830a9e7479
|
4
|
+
data.tar.gz: a2c5d8c9b378333de81341b36b91afd6263f359a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4754131ff07609bfd699f470555bd24417148f5eb478e8d32b1d4c6838d1fc377902ead5dbc65885d12e93e31f8b41de27a6ff644cb130ad2cb2fd4f74d71b0
|
7
|
+
data.tar.gz: a35d15890cbfb33f429792a30ff2e843fc6334b8ede1d2115a9787582c752477b8efacc186af289b28501d6e79bc898681a31b71f6781cc6ba19e074a72a0293
|
data/README.md
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# Rails::RFC6570
|
2
2
|
|
3
|
-
Pragmatical access to your Rails 4.0
|
3
|
+
Pragmatical access to your Rails 4.0 or 4.1 or 4.2 routes as RFC6570 URI templates. Since version 0.3.0 Ruby 2.0+ is required.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
7
7
|
Add this line to your application's Gemfile:
|
8
8
|
|
9
|
-
gem 'rails-rfc6570', '~> 0.
|
9
|
+
gem 'rails-rfc6570', '~> 0.3'
|
10
10
|
|
11
11
|
And then execute:
|
12
12
|
|
@@ -93,7 +93,7 @@ end
|
|
93
93
|
|
94
94
|
This gem does not support every construct possible with route matchers especially nested groups cannot be expressed in URI templates. It also makes some assumptions when converting splat matchers like swallowing a multiple slashes.
|
95
95
|
|
96
|
-
You can also combine **Rails::RFC6570** with [rack-link_headers](https://jgraichen/rack-link_headers) and provide
|
96
|
+
You can also combine **Rails::RFC6570** with [rack-link_headers](https://github.com/jgraichen/rack-link_headers) and provide hypermedia linking everywhere!
|
97
97
|
|
98
98
|
```ruby
|
99
99
|
class UserController < ApplicationController
|
data/lib/rails/rfc6570.rb
CHANGED
@@ -82,6 +82,12 @@ module ActionDispatch
|
|
82
82
|
end
|
83
83
|
when [:SLASH, :STAR]
|
84
84
|
placeholder node.right, '/', '*'
|
85
|
+
when [:SLASH, :CAT]
|
86
|
+
if node.right.left.type == :STAR
|
87
|
+
placeholder(node.right.left, '/', '*') + visit(node.right.right)
|
88
|
+
else
|
89
|
+
super
|
90
|
+
end
|
85
91
|
when [:CAT, :STAR]
|
86
92
|
visit(node.left).to_s.gsub(/\/+$/, '') + placeholder(node.right, '/', '*')
|
87
93
|
else
|
@@ -108,20 +114,131 @@ end
|
|
108
114
|
module Rails
|
109
115
|
module RFC6570
|
110
116
|
if defined?(::Rails::Railtie)
|
111
|
-
class Railtie < Rails::Railtie # :nodoc:
|
117
|
+
class Railtie < ::Rails::Railtie # :nodoc:
|
112
118
|
initializer 'rails-rfc6570', :group => :all do |app|
|
113
119
|
require 'rails/rfc6570/patches'
|
120
|
+
require 'action_dispatch/journey'
|
121
|
+
|
122
|
+
MAJOR = Rails::VERSION::MAJOR
|
123
|
+
MINOR = Rails::VERSION::MINOR
|
124
|
+
|
125
|
+
::ActionDispatch::Routing::RouteSet.send :include,
|
126
|
+
Rails::RFC6570::Extensions::RouteSet
|
127
|
+
|
128
|
+
if MAJOR == 4 && (0..1).include?(MINOR)
|
129
|
+
::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
|
130
|
+
:prepend, Rails::RFC6570::Extensions::NamedRouteCollection40
|
131
|
+
else
|
132
|
+
::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
|
133
|
+
:prepend, Rails::RFC6570::Extensions::NamedRouteCollection42
|
134
|
+
end
|
135
|
+
|
136
|
+
::ActionDispatch::Routing::RouteSet::NamedRouteCollection.send \
|
137
|
+
:include, Rails::RFC6570::Extensions::NamedRouteCollection
|
138
|
+
|
139
|
+
::ActionDispatch::Journey::Route.send :include,
|
140
|
+
Rails::RFC6570::Extensions::JourneyRoute
|
114
141
|
|
115
|
-
|
142
|
+
::ActionDispatch::Journey::Nodes::Node.send :include,
|
143
|
+
Rails::RFC6570::Extensions::JourneyNode
|
144
|
+
|
145
|
+
::ActiveSupport.on_load(:action_controller) do
|
116
146
|
include Rails::RFC6570::Helper
|
117
147
|
extend Rails::RFC6570::ControllerExtension
|
118
|
-
Rails.application.routes.url_helpers.send :include,
|
119
|
-
Rails::RFC6570::UrlHelper
|
120
148
|
end
|
121
149
|
end
|
122
150
|
end
|
123
151
|
end
|
124
152
|
|
153
|
+
module Extensions
|
154
|
+
module RouteSet
|
155
|
+
def to_rfc6570(opts = {})
|
156
|
+
routes.map{|r| r.to_rfc6570(opts) }
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
module NamedRouteCollection
|
161
|
+
def to_rfc6570(opts = {})
|
162
|
+
Hash[routes.map{|n, r| [n, r.to_rfc6570(opts)] }]
|
163
|
+
end
|
164
|
+
|
165
|
+
def define_rfc6570_helpers(name, route, mod, set)
|
166
|
+
rfc6570_name = :"#{name}_rfc6570"
|
167
|
+
rfc6570_url_name = :"#{name}_url_rfc6570"
|
168
|
+
rfc6570_path_name = :"#{name}_path_rfc6570"
|
169
|
+
|
170
|
+
[rfc6570_name, rfc6570_url_name, rfc6570_path_name].each do |helper|
|
171
|
+
mod.send :undef_method, helper if mod.respond_to? helper
|
172
|
+
end
|
173
|
+
|
174
|
+
mod.module_eval do
|
175
|
+
define_method(rfc6570_name) do |opts = {}|
|
176
|
+
template = route.to_rfc6570(opts)
|
177
|
+
|
178
|
+
if opts.fetch(:path_only, false)
|
179
|
+
template
|
180
|
+
else
|
181
|
+
root_uri = Addressable::URI.parse(root_url)
|
182
|
+
|
183
|
+
Addressable::Template.new root_uri.join(template.pattern).to_s
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
define_method(rfc6570_url_name) do |opts = {}|
|
188
|
+
send rfc6570_name, opts.merge(path_only: false)
|
189
|
+
end
|
190
|
+
|
191
|
+
define_method(rfc6570_path_name) do |opts = {}|
|
192
|
+
send rfc6570_name, opts.merge(path_only: true)
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
set << rfc6570_name
|
197
|
+
set << rfc6570_url_name
|
198
|
+
set << rfc6570_path_name
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
module NamedRouteCollection40
|
203
|
+
def to_rfc6570(opts = {})
|
204
|
+
Hash[routes.map{|n, r| [n, r.to_rfc6570(opts)] }]
|
205
|
+
end
|
206
|
+
|
207
|
+
def add(name, route)
|
208
|
+
define_rfc6570_helpers name, route, @module, @helpers
|
209
|
+
super
|
210
|
+
end
|
211
|
+
|
212
|
+
alias_method :[]=, :add
|
213
|
+
end
|
214
|
+
|
215
|
+
module NamedRouteCollection42
|
216
|
+
def helper_names
|
217
|
+
super
|
218
|
+
end
|
219
|
+
|
220
|
+
def add(name, route)
|
221
|
+
define_rfc6570_helpers name, route, @url_helpers_module, @url_helpers
|
222
|
+
super
|
223
|
+
end
|
224
|
+
|
225
|
+
alias_method :[]=, :add
|
226
|
+
end
|
227
|
+
|
228
|
+
module JourneyRoute
|
229
|
+
def to_rfc6570(opts = {})
|
230
|
+
path.spec.to_rfc6570 opts.merge(route: self)
|
231
|
+
end
|
232
|
+
end
|
233
|
+
|
234
|
+
module JourneyNode
|
235
|
+
def to_rfc6570(opts = {})
|
236
|
+
::Addressable::Template.new \
|
237
|
+
::ActionDispatch::Journey::Visitors::RFC6570.new(opts).accept(self)
|
238
|
+
end
|
239
|
+
end
|
240
|
+
end
|
241
|
+
|
125
242
|
module Helper
|
126
243
|
def rfc6570_routes(opts = {})
|
127
244
|
routes = {}
|
@@ -164,32 +281,6 @@ module Rails
|
|
164
281
|
end
|
165
282
|
end
|
166
283
|
|
167
|
-
module UrlHelper
|
168
|
-
include Rails::RFC6570::Helper
|
169
|
-
|
170
|
-
def respond_to_missing?(mth, include_private = false)
|
171
|
-
if mth =~ /^(\w+)_rfc6570$/
|
172
|
-
Rails.application.routes.named_routes.names.include?($1)
|
173
|
-
else
|
174
|
-
super
|
175
|
-
end
|
176
|
-
end
|
177
|
-
|
178
|
-
def method_missing(mth, *args, &block)
|
179
|
-
opts = args.first || {}
|
180
|
-
case mth
|
181
|
-
when /^(\w+)_path_rfc6570$/
|
182
|
-
rfc6570_route $1, opts.merge(path_only: true)
|
183
|
-
when /^(\w+)_url_rfc6570$/
|
184
|
-
rfc6570_route $1, opts.merge(path_only: false) # independent of whatever future defaults
|
185
|
-
when /^(\w+)_rfc6570$/
|
186
|
-
rfc6570_route $1, opts
|
187
|
-
else
|
188
|
-
super
|
189
|
-
end
|
190
|
-
end
|
191
|
-
end
|
192
|
-
|
193
284
|
def params_for(controller, action)
|
194
285
|
ctr = "#{controller.camelize}Controller".constantize
|
195
286
|
ctr.rfc6570_defs[action.to_sym] if ctr.respond_to?(:rfc6570_defs)
|
@@ -1,5 +1,4 @@
|
|
1
|
-
require '
|
2
|
-
require 'action_dispatch/journey'
|
1
|
+
require 'addressable/uri'
|
3
2
|
require 'addressable/template'
|
4
3
|
|
5
4
|
module Addressable
|
@@ -19,33 +18,3 @@ module Addressable
|
|
19
18
|
end
|
20
19
|
end
|
21
20
|
end
|
22
|
-
|
23
|
-
module ActionDispatch
|
24
|
-
module Routing
|
25
|
-
class RouteSet
|
26
|
-
def to_rfc6570(opts = {})
|
27
|
-
routes.map{|r| r.to_rfc6570(opts) }
|
28
|
-
end
|
29
|
-
|
30
|
-
class NamedRouteCollection
|
31
|
-
def to_rfc6570(opts = {})
|
32
|
-
Hash[routes.map{|n, r| [n, r.to_rfc6570(opts)] }]
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
module Journey
|
39
|
-
class Route
|
40
|
-
def to_rfc6570(opts = {})
|
41
|
-
path.spec.to_rfc6570 opts.merge(route: self)
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
class Nodes::Node
|
46
|
-
def to_rfc6570(opts = {})
|
47
|
-
::Addressable::Template.new Visitors::RFC6570.new(opts).accept(self)
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
data/spec/dummy/log/test.log
CHANGED
@@ -1,72 +1,1978 @@
|
|
1
|
-
Started GET "/
|
1
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
2
|
+
Processing by APIController#index as HTML
|
3
|
+
Completed 200 OK in 5ms (Views: 0.9ms)
|
4
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
5
|
+
Processing by APIController#index as HTML
|
6
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
7
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
8
|
+
Processing by APIController#index as HTML
|
9
|
+
Completed 200 OK in 3ms (Views: 0.5ms)
|
10
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
11
|
+
Processing by APIController#index as HTML
|
12
|
+
Completed 200 OK in 3ms (Views: 0.5ms)
|
13
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
14
|
+
Processing by APIController#index as HTML
|
15
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
16
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
17
|
+
Processing by APIController#index as HTML
|
18
|
+
Completed 200 OK in 4ms (Views: 0.4ms)
|
19
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
20
|
+
Processing by APIController#index as HTML
|
21
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
22
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
23
|
+
Processing by APIController#index as HTML
|
24
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
25
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
26
|
+
Processing by APIController#action as HTML
|
27
|
+
Completed 500 Internal Server Error in 3ms
|
28
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
29
|
+
Processing by APIController#action as HTML
|
30
|
+
Completed 500 Internal Server Error in 2ms
|
31
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
32
|
+
Processing by APIController#action as HTML
|
33
|
+
Completed 500 Internal Server Error in 2ms
|
34
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
35
|
+
Processing by APIController#action as HTML
|
36
|
+
Completed 500 Internal Server Error in 2ms
|
37
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
2
38
|
Processing by APIController#action as HTML
|
39
|
+
Completed 500 Internal Server Error in 4ms
|
40
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 09:49:53 +0100
|
41
|
+
Processing by APIController#action as HTML
|
42
|
+
Completed 500 Internal Server Error in 3ms
|
43
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:50:53 +0100
|
44
|
+
Processing by APIController#index as HTML
|
3
45
|
Completed 200 OK in 2ms (Views: 0.3ms)
|
4
|
-
Started GET "/action" for 127.0.0.1 at
|
46
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 09:51:00 +0100
|
5
47
|
Processing by APIController#action as HTML
|
48
|
+
Completed 500 Internal Server Error in 2ms
|
49
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:53:14 +0100
|
50
|
+
Processing by APIController#index as HTML
|
51
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
52
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:56:08 +0100
|
53
|
+
Processing by APIController#index as HTML
|
54
|
+
Completed 500 Internal Server Error in 0ms
|
55
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:56:15 +0100
|
56
|
+
Processing by APIController#index as HTML
|
57
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
58
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:56:34 +0100
|
59
|
+
Processing by APIController#index as HTML
|
60
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
61
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:56:46 +0100
|
62
|
+
Processing by APIController#index as HTML
|
63
|
+
Completed 200 OK in 15ms (Views: 0.6ms)
|
64
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:57:06 +0100
|
65
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:57:14 +0100
|
66
|
+
Processing by APIController#index as HTML
|
67
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
68
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:57:45 +0100
|
69
|
+
Processing by APIController#index as HTML
|
70
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
71
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:58:03 +0100
|
72
|
+
Processing by APIController#index as HTML
|
73
|
+
Completed 200 OK in 350ms (Views: 0.3ms)
|
74
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:58:12 +0100
|
75
|
+
Processing by APIController#index as HTML
|
76
|
+
Completed 200 OK in 48ms (Views: 1.2ms)
|
77
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:59:03 +0100
|
78
|
+
Processing by APIController#index as HTML
|
79
|
+
Completed 500 Internal Server Error in 0ms
|
80
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:59:19 +0100
|
81
|
+
Processing by APIController#index as HTML
|
82
|
+
Completed 500 Internal Server Error in 0ms
|
83
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 09:59:31 +0100
|
84
|
+
Processing by APIController#index as HTML
|
85
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
86
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:00:08 +0100
|
87
|
+
Processing by APIController#index as HTML
|
88
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
89
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:00:20 +0100
|
90
|
+
Processing by APIController#index as HTML
|
91
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
92
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:01:05 +0100
|
93
|
+
Processing by APIController#index as HTML
|
94
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
95
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:01:24 +0100
|
96
|
+
Processing by APIController#index as HTML
|
6
97
|
Completed 200 OK in 2ms (Views: 0.2ms)
|
7
|
-
Started GET "/
|
98
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:01:36 +0100
|
99
|
+
Processing by APIController#index as HTML
|
100
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
101
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:02:21 +0100
|
102
|
+
Processing by APIController#index as HTML
|
103
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
104
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:06:51 +0100
|
105
|
+
Processing by APIController#index as HTML
|
106
|
+
Completed 500 Internal Server Error in 1ms
|
107
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:07:00 +0100
|
108
|
+
Processing by APIController#index as HTML
|
109
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
110
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:07:50 +0100
|
111
|
+
Processing by APIController#index as HTML
|
112
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
113
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:01 +0100
|
114
|
+
Processing by APIController#index as HTML
|
115
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
116
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
117
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
118
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
119
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
120
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
121
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
122
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
123
|
+
Processing by APIController#index as HTML
|
124
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
125
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
126
|
+
Processing by APIController#index as HTML
|
127
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
128
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
129
|
+
Processing by APIController#index as HTML
|
130
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
131
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
132
|
+
Processing by APIController#index as HTML
|
133
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
134
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
135
|
+
Processing by APIController#index as HTML
|
136
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
137
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
138
|
+
Processing by APIController#index as HTML
|
139
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
140
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
141
|
+
Processing by APIController#index as HTML
|
142
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
143
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:07 +0100
|
144
|
+
Processing by APIController#index as HTML
|
145
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
146
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
8
147
|
Processing by APIController#action as HTML
|
148
|
+
Completed 500 Internal Server Error in 2ms
|
149
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
150
|
+
Processing by APIController#action as HTML
|
151
|
+
Completed 500 Internal Server Error in 1ms
|
152
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
153
|
+
Processing by APIController#action as HTML
|
154
|
+
Completed 500 Internal Server Error in 1ms
|
155
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
156
|
+
Processing by APIController#action as HTML
|
157
|
+
Completed 500 Internal Server Error in 1ms
|
158
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
159
|
+
Processing by APIController#action as HTML
|
160
|
+
Completed 500 Internal Server Error in 1ms
|
161
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
162
|
+
Processing by APIController#action as HTML
|
163
|
+
Completed 500 Internal Server Error in 2ms
|
164
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
165
|
+
Processing by APIController#index as HTML
|
166
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
167
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
168
|
+
Processing by APIController#index as HTML
|
169
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
170
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
171
|
+
Processing by APIController#index as HTML
|
172
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
173
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
174
|
+
Processing by APIController#index as HTML
|
175
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
176
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
177
|
+
Processing by APIController#index as HTML
|
178
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
179
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
180
|
+
Processing by APIController#index as HTML
|
181
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
182
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
183
|
+
Processing by APIController#index as HTML
|
184
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
185
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:08:28 +0100
|
186
|
+
Processing by APIController#index as HTML
|
187
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
188
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
189
|
+
Processing by APIController#index as HTML
|
190
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
191
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
192
|
+
Processing by APIController#index as HTML
|
193
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
194
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
195
|
+
Processing by APIController#index as HTML
|
196
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
197
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
198
|
+
Processing by APIController#index as HTML
|
199
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
200
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
201
|
+
Processing by APIController#index as HTML
|
202
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
203
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
204
|
+
Processing by APIController#index as HTML
|
205
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
206
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
207
|
+
Processing by APIController#index as HTML
|
208
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
209
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
210
|
+
Processing by APIController#index as HTML
|
9
211
|
Completed 200 OK in 2ms (Views: 0.2ms)
|
10
|
-
Started GET "/action" for 127.0.0.1 at
|
212
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
213
|
+
Processing by APIController#action as HTML
|
214
|
+
Completed 500 Internal Server Error in 3ms
|
215
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
216
|
+
Processing by APIController#action as HTML
|
217
|
+
Completed 500 Internal Server Error in 2ms
|
218
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
219
|
+
Processing by APIController#action as HTML
|
220
|
+
Completed 500 Internal Server Error in 2ms
|
221
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
222
|
+
Processing by APIController#action as HTML
|
223
|
+
Completed 500 Internal Server Error in 2ms
|
224
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
225
|
+
Processing by APIController#action as HTML
|
226
|
+
Completed 500 Internal Server Error in 2ms
|
227
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:10:16 +0100
|
11
228
|
Processing by APIController#action as HTML
|
229
|
+
Completed 500 Internal Server Error in 2ms
|
230
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
231
|
+
Processing by APIController#action as HTML
|
232
|
+
Completed 500 Internal Server Error in 2ms
|
233
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
234
|
+
Processing by APIController#action as HTML
|
235
|
+
Completed 500 Internal Server Error in 2ms
|
236
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
237
|
+
Processing by APIController#action as HTML
|
238
|
+
Completed 500 Internal Server Error in 2ms
|
239
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
240
|
+
Processing by APIController#action as HTML
|
241
|
+
Completed 500 Internal Server Error in 2ms
|
242
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
243
|
+
Processing by APIController#action as HTML
|
244
|
+
Completed 500 Internal Server Error in 1ms
|
245
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
246
|
+
Processing by APIController#action as HTML
|
247
|
+
Completed 500 Internal Server Error in 2ms
|
248
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
249
|
+
Processing by APIController#index as HTML
|
250
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
251
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
252
|
+
Processing by APIController#index as HTML
|
253
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
254
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
255
|
+
Processing by APIController#index as HTML
|
256
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
257
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
258
|
+
Processing by APIController#index as HTML
|
259
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
260
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
261
|
+
Processing by APIController#index as HTML
|
262
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
263
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
264
|
+
Processing by APIController#index as HTML
|
265
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
266
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
267
|
+
Processing by APIController#index as HTML
|
12
268
|
Completed 200 OK in 2ms (Views: 0.2ms)
|
13
|
-
Started GET "/" for 127.0.0.1 at
|
269
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:01 +0100
|
270
|
+
Processing by APIController#index as HTML
|
271
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
272
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:14 +0100
|
14
273
|
Processing by APIController#index as HTML
|
15
274
|
Completed 200 OK in 2ms (Views: 0.3ms)
|
16
|
-
Started GET "/" for 127.0.0.1 at
|
275
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:14 +0100
|
17
276
|
Processing by APIController#index as HTML
|
18
277
|
Completed 200 OK in 2ms (Views: 0.3ms)
|
19
|
-
Started GET "/" for 127.0.0.1 at
|
278
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:14 +0100
|
20
279
|
Processing by APIController#index as HTML
|
21
280
|
Completed 200 OK in 2ms (Views: 0.3ms)
|
22
|
-
Started GET "/" for 127.0.0.1 at
|
281
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:14 +0100
|
282
|
+
Processing by APIController#index as HTML
|
283
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
284
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:15 +0100
|
285
|
+
Processing by APIController#index as HTML
|
286
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
287
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:15 +0100
|
288
|
+
Processing by APIController#index as HTML
|
289
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
290
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:15 +0100
|
291
|
+
Processing by APIController#index as HTML
|
292
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
293
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:15 +0100
|
294
|
+
Processing by APIController#index as HTML
|
295
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
296
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:15 +0100
|
297
|
+
Processing by APIController#action as HTML
|
298
|
+
Completed 500 Internal Server Error in 2ms
|
299
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:15 +0100
|
300
|
+
Processing by APIController#action as HTML
|
301
|
+
Completed 500 Internal Server Error in 9ms
|
302
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:15 +0100
|
303
|
+
Processing by APIController#action as HTML
|
304
|
+
Completed 500 Internal Server Error in 2ms
|
305
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:15 +0100
|
306
|
+
Processing by APIController#action as HTML
|
307
|
+
Completed 500 Internal Server Error in 2ms
|
308
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:15 +0100
|
309
|
+
Processing by APIController#action as HTML
|
310
|
+
Completed 500 Internal Server Error in 2ms
|
311
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:15 +0100
|
312
|
+
Processing by APIController#action as HTML
|
313
|
+
Completed 500 Internal Server Error in 2ms
|
314
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
315
|
+
Processing by APIController#action as HTML
|
316
|
+
Completed 500 Internal Server Error in 2ms
|
317
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
318
|
+
Processing by APIController#action as HTML
|
319
|
+
Completed 500 Internal Server Error in 2ms
|
320
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
321
|
+
Processing by APIController#action as HTML
|
322
|
+
Completed 500 Internal Server Error in 1ms
|
323
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
324
|
+
Processing by APIController#action as HTML
|
325
|
+
Completed 500 Internal Server Error in 2ms
|
326
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
327
|
+
Processing by APIController#action as HTML
|
328
|
+
Completed 500 Internal Server Error in 2ms
|
329
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
330
|
+
Processing by APIController#action as HTML
|
331
|
+
Completed 500 Internal Server Error in 1ms
|
332
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
23
333
|
Processing by APIController#index as HTML
|
24
334
|
Completed 200 OK in 2ms (Views: 0.3ms)
|
25
|
-
Started GET "/" for 127.0.0.1 at
|
335
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
336
|
+
Processing by APIController#index as HTML
|
337
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
338
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
26
339
|
Processing by APIController#index as HTML
|
27
340
|
Completed 200 OK in 2ms (Views: 0.3ms)
|
28
|
-
Started GET "/" for 127.0.0.1 at
|
341
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
342
|
+
Processing by APIController#index as HTML
|
343
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
344
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
345
|
+
Processing by APIController#index as HTML
|
346
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
347
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
348
|
+
Processing by APIController#index as HTML
|
349
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
350
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
29
351
|
Processing by APIController#index as HTML
|
30
352
|
Completed 200 OK in 2ms (Views: 0.3ms)
|
31
|
-
Started GET "/" for 127.0.0.1 at
|
353
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:11:50 +0100
|
354
|
+
Processing by APIController#index as HTML
|
355
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
356
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
357
|
+
Processing by APIController#action as HTML
|
358
|
+
Completed 500 Internal Server Error in 2ms
|
359
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
360
|
+
Processing by APIController#action as HTML
|
361
|
+
Completed 500 Internal Server Error in 1ms
|
362
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
363
|
+
Processing by APIController#action as HTML
|
364
|
+
Completed 500 Internal Server Error in 1ms
|
365
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
366
|
+
Processing by APIController#action as HTML
|
367
|
+
Completed 500 Internal Server Error in 2ms
|
368
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
369
|
+
Processing by APIController#action as HTML
|
370
|
+
Completed 500 Internal Server Error in 2ms
|
371
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
372
|
+
Processing by APIController#action as HTML
|
373
|
+
Completed 500 Internal Server Error in 2ms
|
374
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
32
375
|
Processing by APIController#index as HTML
|
33
376
|
Completed 200 OK in 2ms (Views: 0.3ms)
|
34
|
-
Started GET "/" for 127.0.0.1 at
|
377
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
378
|
+
Processing by APIController#index as HTML
|
379
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
380
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
381
|
+
Processing by APIController#index as HTML
|
382
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
383
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
35
384
|
Processing by APIController#index as HTML
|
36
385
|
Completed 200 OK in 3ms (Views: 0.3ms)
|
37
|
-
Started GET "/
|
386
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
387
|
+
Processing by APIController#index as HTML
|
388
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
389
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
390
|
+
Processing by APIController#index as HTML
|
391
|
+
Completed 200 OK in 8ms (Views: 0.3ms)
|
392
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
393
|
+
Processing by APIController#index as HTML
|
394
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
395
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:18 +0100
|
396
|
+
Processing by APIController#index as HTML
|
397
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
398
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
399
|
+
Processing by APIController#index as HTML
|
400
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
401
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
402
|
+
Processing by APIController#index as HTML
|
403
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
404
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
405
|
+
Processing by APIController#index as HTML
|
406
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
407
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
408
|
+
Processing by APIController#index as HTML
|
409
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
410
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
411
|
+
Processing by APIController#index as HTML
|
412
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
413
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
414
|
+
Processing by APIController#index as HTML
|
415
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
416
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
417
|
+
Processing by APIController#index as HTML
|
418
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
419
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
420
|
+
Processing by APIController#index as HTML
|
421
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
422
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
423
|
+
Processing by APIController#action as HTML
|
424
|
+
Completed 500 Internal Server Error in 2ms
|
425
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
426
|
+
Processing by APIController#action as HTML
|
427
|
+
Completed 500 Internal Server Error in 2ms
|
428
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
429
|
+
Processing by APIController#action as HTML
|
430
|
+
Completed 500 Internal Server Error in 1ms
|
431
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
432
|
+
Processing by APIController#action as HTML
|
433
|
+
Completed 500 Internal Server Error in 2ms
|
434
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
38
435
|
Processing by APIController#action as HTML
|
39
|
-
Completed
|
40
|
-
Started GET "/action" for 127.0.0.1 at
|
436
|
+
Completed 500 Internal Server Error in 2ms
|
437
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:12:47 +0100
|
41
438
|
Processing by APIController#action as HTML
|
439
|
+
Completed 500 Internal Server Error in 2ms
|
440
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
441
|
+
Processing by APIController#action as HTML
|
442
|
+
Completed 500 Internal Server Error in 2ms
|
443
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
444
|
+
Processing by APIController#action as HTML
|
445
|
+
Completed 500 Internal Server Error in 2ms
|
446
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
447
|
+
Processing by APIController#action as HTML
|
448
|
+
Completed 500 Internal Server Error in 2ms
|
449
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
450
|
+
Processing by APIController#action as HTML
|
451
|
+
Completed 500 Internal Server Error in 2ms
|
452
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
453
|
+
Processing by APIController#action as HTML
|
454
|
+
Completed 500 Internal Server Error in 2ms
|
455
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
456
|
+
Processing by APIController#action as HTML
|
457
|
+
Completed 500 Internal Server Error in 2ms
|
458
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
459
|
+
Processing by APIController#index as HTML
|
460
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
461
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
462
|
+
Processing by APIController#index as HTML
|
463
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
464
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
465
|
+
Processing by APIController#index as HTML
|
466
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
467
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
468
|
+
Processing by APIController#index as HTML
|
469
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
470
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
471
|
+
Processing by APIController#index as HTML
|
472
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
473
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
474
|
+
Processing by APIController#index as HTML
|
475
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
476
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
477
|
+
Processing by APIController#index as HTML
|
478
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
479
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:14:52 +0100
|
480
|
+
Processing by APIController#index as HTML
|
42
481
|
Completed 200 OK in 3ms (Views: 0.4ms)
|
43
|
-
Started GET "/action" for 127.0.0.1 at
|
482
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
483
|
+
Processing by APIController#action as HTML
|
484
|
+
Completed 500 Internal Server Error in 2ms
|
485
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
486
|
+
Processing by APIController#action as HTML
|
487
|
+
Completed 500 Internal Server Error in 1ms
|
488
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
489
|
+
Processing by APIController#action as HTML
|
490
|
+
Completed 500 Internal Server Error in 1ms
|
491
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
492
|
+
Processing by APIController#action as HTML
|
493
|
+
Completed 500 Internal Server Error in 1ms
|
494
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
44
495
|
Processing by APIController#action as HTML
|
45
|
-
Completed
|
46
|
-
Started GET "/action" for 127.0.0.1 at
|
496
|
+
Completed 500 Internal Server Error in 1ms
|
497
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
47
498
|
Processing by APIController#action as HTML
|
48
|
-
Completed
|
49
|
-
Started GET "/" for 127.0.0.1 at
|
499
|
+
Completed 500 Internal Server Error in 2ms
|
500
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
50
501
|
Processing by APIController#index as HTML
|
51
|
-
Completed 200 OK in
|
52
|
-
Started GET "/" for 127.0.0.1 at
|
502
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
503
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
53
504
|
Processing by APIController#index as HTML
|
54
|
-
Completed 200 OK in
|
55
|
-
Started GET "/" for 127.0.0.1 at
|
505
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
506
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
56
507
|
Processing by APIController#index as HTML
|
57
|
-
Completed 200 OK in
|
58
|
-
Started GET "/" for 127.0.0.1 at
|
508
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
509
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
59
510
|
Processing by APIController#index as HTML
|
60
|
-
Completed 200 OK in
|
61
|
-
Started GET "/" for 127.0.0.1 at
|
511
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
512
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
62
513
|
Processing by APIController#index as HTML
|
63
|
-
Completed 200 OK in
|
64
|
-
Started GET "/" for 127.0.0.1 at
|
514
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
515
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
65
516
|
Processing by APIController#index as HTML
|
66
|
-
Completed 200 OK in
|
67
|
-
Started GET "/" for 127.0.0.1 at
|
517
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
518
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
519
|
+
Processing by APIController#index as HTML
|
520
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
521
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:11 +0100
|
522
|
+
Processing by APIController#index as HTML
|
523
|
+
Completed 200 OK in 7ms (Views: 0.5ms)
|
524
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
525
|
+
Processing by APIController#action as HTML
|
526
|
+
Completed 500 Internal Server Error in 2ms
|
527
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
528
|
+
Processing by APIController#action as HTML
|
529
|
+
Completed 500 Internal Server Error in 2ms
|
530
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
531
|
+
Processing by APIController#action as HTML
|
532
|
+
Completed 500 Internal Server Error in 1ms
|
533
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
534
|
+
Processing by APIController#action as HTML
|
535
|
+
Completed 500 Internal Server Error in 2ms
|
536
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
537
|
+
Processing by APIController#action as HTML
|
538
|
+
Completed 500 Internal Server Error in 2ms
|
539
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
540
|
+
Processing by APIController#action as HTML
|
541
|
+
Completed 500 Internal Server Error in 2ms
|
542
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
543
|
+
Processing by APIController#index as HTML
|
544
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
545
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
546
|
+
Processing by APIController#index as HTML
|
547
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
548
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
549
|
+
Processing by APIController#index as HTML
|
550
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
551
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
552
|
+
Processing by APIController#index as HTML
|
553
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
554
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
555
|
+
Processing by APIController#index as HTML
|
556
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
557
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
558
|
+
Processing by APIController#index as HTML
|
559
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
560
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
561
|
+
Processing by APIController#index as HTML
|
562
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
563
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:15:24 +0100
|
564
|
+
Processing by APIController#index as HTML
|
565
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
566
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
567
|
+
Processing by APIController#index as HTML
|
568
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
569
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
570
|
+
Processing by APIController#index as HTML
|
571
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
572
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
573
|
+
Processing by APIController#index as HTML
|
574
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
575
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
576
|
+
Processing by APIController#index as HTML
|
577
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
578
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
579
|
+
Processing by APIController#index as HTML
|
580
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
581
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
582
|
+
Processing by APIController#index as HTML
|
583
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
584
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
68
585
|
Processing by APIController#index as HTML
|
69
|
-
Completed 200 OK in
|
70
|
-
Started GET "/" for 127.0.0.1 at
|
586
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
587
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
71
588
|
Processing by APIController#index as HTML
|
72
|
-
Completed 200 OK in
|
589
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
590
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
591
|
+
Processing by APIController#action as HTML
|
592
|
+
Completed 500 Internal Server Error in 2ms
|
593
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
594
|
+
Processing by APIController#action as HTML
|
595
|
+
Completed 500 Internal Server Error in 2ms
|
596
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
597
|
+
Processing by APIController#action as HTML
|
598
|
+
Completed 500 Internal Server Error in 1ms
|
599
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
600
|
+
Processing by APIController#action as HTML
|
601
|
+
Completed 500 Internal Server Error in 6ms
|
602
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
603
|
+
Processing by APIController#action as HTML
|
604
|
+
Completed 500 Internal Server Error in 2ms
|
605
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:32:50 +0100
|
606
|
+
Processing by APIController#action as HTML
|
607
|
+
Completed 500 Internal Server Error in 2ms
|
608
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
609
|
+
Processing by APIController#index as HTML
|
610
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
611
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
612
|
+
Processing by APIController#index as HTML
|
613
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
614
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
615
|
+
Processing by APIController#index as HTML
|
616
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
617
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
618
|
+
Processing by APIController#index as HTML
|
619
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
620
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
621
|
+
Processing by APIController#index as HTML
|
622
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
623
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
624
|
+
Processing by APIController#index as HTML
|
625
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
626
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
627
|
+
Processing by APIController#index as HTML
|
628
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
629
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
630
|
+
Processing by APIController#index as HTML
|
631
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
632
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
633
|
+
Processing by APIController#action as HTML
|
634
|
+
Completed 500 Internal Server Error in 2ms
|
635
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
636
|
+
Processing by APIController#action as HTML
|
637
|
+
Completed 500 Internal Server Error in 1ms
|
638
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
639
|
+
Processing by APIController#action as HTML
|
640
|
+
Completed 500 Internal Server Error in 2ms
|
641
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
642
|
+
Processing by APIController#action as HTML
|
643
|
+
Completed 500 Internal Server Error in 7ms
|
644
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
645
|
+
Processing by APIController#action as HTML
|
646
|
+
Completed 500 Internal Server Error in 2ms
|
647
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:04 +0100
|
648
|
+
Processing by APIController#action as HTML
|
649
|
+
Completed 500 Internal Server Error in 2ms
|
650
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
651
|
+
Processing by APIController#index as HTML
|
652
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
653
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
654
|
+
Processing by APIController#index as HTML
|
655
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
656
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
657
|
+
Processing by APIController#index as HTML
|
658
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
659
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
660
|
+
Processing by APIController#index as HTML
|
661
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
662
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
663
|
+
Processing by APIController#index as HTML
|
664
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
665
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
666
|
+
Processing by APIController#index as HTML
|
667
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
668
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
669
|
+
Processing by APIController#index as HTML
|
670
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
671
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
672
|
+
Processing by APIController#index as HTML
|
673
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
674
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
675
|
+
Processing by APIController#action as HTML
|
676
|
+
Completed 500 Internal Server Error in 2ms
|
677
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
678
|
+
Processing by APIController#action as HTML
|
679
|
+
Completed 500 Internal Server Error in 2ms
|
680
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
681
|
+
Processing by APIController#action as HTML
|
682
|
+
Completed 500 Internal Server Error in 2ms
|
683
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
684
|
+
Processing by APIController#action as HTML
|
685
|
+
Completed 500 Internal Server Error in 10ms
|
686
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
687
|
+
Processing by APIController#action as HTML
|
688
|
+
Completed 500 Internal Server Error in 2ms
|
689
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:46:34 +0100
|
690
|
+
Processing by APIController#action as HTML
|
691
|
+
Completed 500 Internal Server Error in 2ms
|
692
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
693
|
+
Processing by APIController#index as HTML
|
694
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
695
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
696
|
+
Processing by APIController#index as HTML
|
697
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
698
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
699
|
+
Processing by APIController#index as HTML
|
700
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
701
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
702
|
+
Processing by APIController#index as HTML
|
703
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
704
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
705
|
+
Processing by APIController#index as HTML
|
706
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
707
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
708
|
+
Processing by APIController#index as HTML
|
709
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
710
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
711
|
+
Processing by APIController#index as HTML
|
712
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
713
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
714
|
+
Processing by APIController#index as HTML
|
715
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
716
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
717
|
+
Processing by APIController#action as HTML
|
718
|
+
Completed 500 Internal Server Error in 2ms
|
719
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
720
|
+
Processing by APIController#action as HTML
|
721
|
+
Completed 500 Internal Server Error in 2ms
|
722
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
723
|
+
Processing by APIController#action as HTML
|
724
|
+
Completed 500 Internal Server Error in 1ms
|
725
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
726
|
+
Processing by APIController#action as HTML
|
727
|
+
Completed 500 Internal Server Error in 7ms
|
728
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
729
|
+
Processing by APIController#action as HTML
|
730
|
+
Completed 500 Internal Server Error in 2ms
|
731
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:13 +0100
|
732
|
+
Processing by APIController#action as HTML
|
733
|
+
Completed 500 Internal Server Error in 2ms
|
734
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
735
|
+
Processing by APIController#action as HTML
|
736
|
+
Completed 500 Internal Server Error in 2ms
|
737
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
738
|
+
Processing by APIController#action as HTML
|
739
|
+
Completed 500 Internal Server Error in 2ms
|
740
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
741
|
+
Processing by APIController#action as HTML
|
742
|
+
Completed 500 Internal Server Error in 2ms
|
743
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
744
|
+
Processing by APIController#action as HTML
|
745
|
+
Completed 500 Internal Server Error in 2ms
|
746
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
747
|
+
Processing by APIController#action as HTML
|
748
|
+
Completed 500 Internal Server Error in 2ms
|
749
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
750
|
+
Processing by APIController#action as HTML
|
751
|
+
Completed 500 Internal Server Error in 2ms
|
752
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
753
|
+
Processing by APIController#index as HTML
|
754
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
755
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
756
|
+
Processing by APIController#index as HTML
|
757
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
758
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
759
|
+
Processing by APIController#index as HTML
|
760
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
761
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
762
|
+
Processing by APIController#index as HTML
|
763
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
764
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
765
|
+
Processing by APIController#index as HTML
|
766
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
767
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
768
|
+
Processing by APIController#index as HTML
|
769
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
770
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
771
|
+
Processing by APIController#index as HTML
|
772
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
773
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:47:30 +0100
|
774
|
+
Processing by APIController#index as HTML
|
775
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
776
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:49:15 +0100
|
777
|
+
Processing by APIController#action as HTML
|
778
|
+
Completed 500 Internal Server Error in 2ms
|
779
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:49:52 +0100
|
780
|
+
Processing by APIController#action as HTML
|
781
|
+
Completed 500 Internal Server Error in 2ms
|
782
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:50:04 +0100
|
783
|
+
Processing by APIController#action as HTML
|
784
|
+
Completed 500 Internal Server Error in 2ms
|
785
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:50:18 +0100
|
786
|
+
Processing by APIController#action as HTML
|
787
|
+
Completed 500 Internal Server Error in 2ms
|
788
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:51:51 +0100
|
789
|
+
Processing by APIController#action as HTML
|
790
|
+
Completed 500 Internal Server Error in 2ms
|
791
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:52:38 +0100
|
792
|
+
Processing by APIController#action as HTML
|
793
|
+
Completed 500 Internal Server Error in 2ms
|
794
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:54:46 +0100
|
795
|
+
Processing by APIController#action as HTML
|
796
|
+
Completed 500 Internal Server Error in 2ms
|
797
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:55:21 +0100
|
798
|
+
Processing by APIController#action as HTML
|
799
|
+
Completed 500 Internal Server Error in 2ms
|
800
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:55:59 +0100
|
801
|
+
Processing by APIController#action as HTML
|
802
|
+
Completed 500 Internal Server Error in 2ms
|
803
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:56:54 +0100
|
804
|
+
Processing by APIController#action as HTML
|
805
|
+
Completed 500 Internal Server Error in 2ms
|
806
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:59:44 +0100
|
807
|
+
Processing by APIController#action as HTML
|
808
|
+
Completed 500 Internal Server Error in 2ms
|
809
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:59:52 +0100
|
810
|
+
Processing by APIController#index as HTML
|
811
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
812
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:59:52 +0100
|
813
|
+
Processing by APIController#index as HTML
|
814
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
815
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:59:52 +0100
|
816
|
+
Processing by APIController#index as HTML
|
817
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
818
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:59:52 +0100
|
819
|
+
Processing by APIController#index as HTML
|
820
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
821
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:59:53 +0100
|
822
|
+
Processing by APIController#index as HTML
|
823
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
824
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:59:53 +0100
|
825
|
+
Processing by APIController#index as HTML
|
826
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
827
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:59:53 +0100
|
828
|
+
Processing by APIController#index as HTML
|
829
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
830
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 10:59:53 +0100
|
831
|
+
Processing by APIController#index as HTML
|
832
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
833
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:59:53 +0100
|
834
|
+
Processing by APIController#action as HTML
|
835
|
+
Completed 500 Internal Server Error in 3ms
|
836
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:59:53 +0100
|
837
|
+
Processing by APIController#action as HTML
|
838
|
+
Completed 500 Internal Server Error in 2ms
|
839
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:59:53 +0100
|
840
|
+
Processing by APIController#action as HTML
|
841
|
+
Completed 500 Internal Server Error in 1ms
|
842
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:59:53 +0100
|
843
|
+
Processing by APIController#action as HTML
|
844
|
+
Completed 500 Internal Server Error in 2ms
|
845
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:59:53 +0100
|
846
|
+
Processing by APIController#action as HTML
|
847
|
+
Completed 500 Internal Server Error in 2ms
|
848
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 10:59:53 +0100
|
849
|
+
Processing by APIController#action as HTML
|
850
|
+
Completed 500 Internal Server Error in 2ms
|
851
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
852
|
+
Processing by APIController#action as HTML
|
853
|
+
Completed 500 Internal Server Error in 2ms
|
854
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
855
|
+
Processing by APIController#action as HTML
|
856
|
+
Completed 500 Internal Server Error in 1ms
|
857
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
858
|
+
Processing by APIController#action as HTML
|
859
|
+
Completed 500 Internal Server Error in 1ms
|
860
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
861
|
+
Processing by APIController#action as HTML
|
862
|
+
Completed 500 Internal Server Error in 2ms
|
863
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
864
|
+
Processing by APIController#action as HTML
|
865
|
+
Completed 500 Internal Server Error in 2ms
|
866
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
867
|
+
Processing by APIController#action as HTML
|
868
|
+
Completed 500 Internal Server Error in 2ms
|
869
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
870
|
+
Processing by APIController#index as HTML
|
871
|
+
Completed 500 Internal Server Error in 1ms
|
872
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
873
|
+
Processing by APIController#index as HTML
|
874
|
+
Completed 500 Internal Server Error in 1ms
|
875
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
876
|
+
Processing by APIController#index as HTML
|
877
|
+
Completed 500 Internal Server Error in 2ms
|
878
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
879
|
+
Processing by APIController#index as HTML
|
880
|
+
Completed 500 Internal Server Error in 1ms
|
881
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
882
|
+
Processing by APIController#index as HTML
|
883
|
+
Completed 500 Internal Server Error in 1ms
|
884
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
885
|
+
Processing by APIController#index as HTML
|
886
|
+
Completed 500 Internal Server Error in 1ms
|
887
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
888
|
+
Processing by APIController#index as HTML
|
889
|
+
Completed 500 Internal Server Error in 6ms
|
890
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:05:30 +0100
|
891
|
+
Processing by APIController#index as HTML
|
892
|
+
Completed 500 Internal Server Error in 1ms
|
893
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
894
|
+
Processing by APIController#index as HTML
|
895
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
896
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
897
|
+
Processing by APIController#index as HTML
|
898
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
899
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
900
|
+
Processing by APIController#index as HTML
|
901
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
902
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
903
|
+
Processing by APIController#index as HTML
|
904
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
905
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
906
|
+
Processing by APIController#index as HTML
|
907
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
908
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
909
|
+
Processing by APIController#index as HTML
|
910
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
911
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
912
|
+
Processing by APIController#index as HTML
|
913
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
914
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
915
|
+
Processing by APIController#index as HTML
|
916
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
917
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
918
|
+
Processing by APIController#action as HTML
|
919
|
+
Completed 500 Internal Server Error in 2ms
|
920
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
921
|
+
Processing by APIController#action as HTML
|
922
|
+
Completed 500 Internal Server Error in 2ms
|
923
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
924
|
+
Processing by APIController#action as HTML
|
925
|
+
Completed 500 Internal Server Error in 2ms
|
926
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
927
|
+
Processing by APIController#action as HTML
|
928
|
+
Completed 500 Internal Server Error in 2ms
|
929
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
930
|
+
Processing by APIController#action as HTML
|
931
|
+
Completed 500 Internal Server Error in 2ms
|
932
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:06:01 +0100
|
933
|
+
Processing by APIController#action as HTML
|
934
|
+
Completed 500 Internal Server Error in 2ms
|
935
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
936
|
+
Processing by APIController#index as HTML
|
937
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
938
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
939
|
+
Processing by APIController#index as HTML
|
940
|
+
Completed 200 OK in 4ms (Views: 0.5ms)
|
941
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
942
|
+
Processing by APIController#index as HTML
|
943
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
944
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
945
|
+
Processing by APIController#index as HTML
|
946
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
947
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
948
|
+
Processing by APIController#index as HTML
|
949
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
950
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
951
|
+
Processing by APIController#index as HTML
|
952
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
953
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
954
|
+
Processing by APIController#index as HTML
|
955
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
956
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
957
|
+
Processing by APIController#index as HTML
|
958
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
959
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
960
|
+
Processing by APIController#action as HTML
|
961
|
+
Completed 500 Internal Server Error in 2ms
|
962
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
963
|
+
Processing by APIController#action as HTML
|
964
|
+
Completed 500 Internal Server Error in 1ms
|
965
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
966
|
+
Processing by APIController#action as HTML
|
967
|
+
Completed 500 Internal Server Error in 1ms
|
968
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
969
|
+
Processing by APIController#action as HTML
|
970
|
+
Completed 500 Internal Server Error in 2ms
|
971
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
972
|
+
Processing by APIController#action as HTML
|
973
|
+
Completed 500 Internal Server Error in 2ms
|
974
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:07:14 +0100
|
975
|
+
Processing by APIController#action as HTML
|
976
|
+
Completed 500 Internal Server Error in 2ms
|
977
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
978
|
+
Processing by APIController#action as HTML
|
979
|
+
Completed 500 Internal Server Error in 2ms
|
980
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
981
|
+
Processing by APIController#action as HTML
|
982
|
+
Completed 500 Internal Server Error in 1ms
|
983
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
984
|
+
Processing by APIController#action as HTML
|
985
|
+
Completed 500 Internal Server Error in 2ms
|
986
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
987
|
+
Processing by APIController#action as HTML
|
988
|
+
Completed 500 Internal Server Error in 2ms
|
989
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
990
|
+
Processing by APIController#action as HTML
|
991
|
+
Completed 500 Internal Server Error in 2ms
|
992
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
993
|
+
Processing by APIController#action as HTML
|
994
|
+
Completed 500 Internal Server Error in 1ms
|
995
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
996
|
+
Processing by APIController#index as HTML
|
997
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
998
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
999
|
+
Processing by APIController#index as HTML
|
1000
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1001
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
1002
|
+
Processing by APIController#index as HTML
|
1003
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1004
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
1005
|
+
Processing by APIController#index as HTML
|
1006
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1007
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
1008
|
+
Processing by APIController#index as HTML
|
1009
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1010
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
1011
|
+
Processing by APIController#index as HTML
|
1012
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
1013
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
1014
|
+
Processing by APIController#index as HTML
|
1015
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1016
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:08:19 +0100
|
1017
|
+
Processing by APIController#index as HTML
|
1018
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1019
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1020
|
+
Processing by APIController#action as HTML
|
1021
|
+
Completed 500 Internal Server Error in 2ms
|
1022
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1023
|
+
Processing by APIController#action as HTML
|
1024
|
+
Completed 500 Internal Server Error in 3ms
|
1025
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1026
|
+
Processing by APIController#action as HTML
|
1027
|
+
Completed 500 Internal Server Error in 2ms
|
1028
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1029
|
+
Processing by APIController#action as HTML
|
1030
|
+
Completed 500 Internal Server Error in 2ms
|
1031
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1032
|
+
Processing by APIController#action as HTML
|
1033
|
+
Completed 500 Internal Server Error in 2ms
|
1034
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1035
|
+
Processing by APIController#action as HTML
|
1036
|
+
Completed 500 Internal Server Error in 2ms
|
1037
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1038
|
+
Processing by APIController#index as HTML
|
1039
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
1040
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1041
|
+
Processing by APIController#index as HTML
|
1042
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1043
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1044
|
+
Processing by APIController#index as HTML
|
1045
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1046
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1047
|
+
Processing by APIController#index as HTML
|
1048
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1049
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1050
|
+
Processing by APIController#index as HTML
|
1051
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1052
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1053
|
+
Processing by APIController#index as HTML
|
1054
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
1055
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1056
|
+
Processing by APIController#index as HTML
|
1057
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1058
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:10:50 +0100
|
1059
|
+
Processing by APIController#index as HTML
|
1060
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1061
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:09 +0100
|
1062
|
+
Processing by APIController#index as HTML
|
1063
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1064
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:09 +0100
|
1065
|
+
Processing by APIController#index as HTML
|
1066
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1067
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:09 +0100
|
1068
|
+
Processing by APIController#index as HTML
|
1069
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1070
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1071
|
+
Processing by APIController#index as HTML
|
1072
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1073
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1074
|
+
Processing by APIController#index as HTML
|
1075
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1076
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1077
|
+
Processing by APIController#index as HTML
|
1078
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1079
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1080
|
+
Processing by APIController#index as HTML
|
1081
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1082
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1083
|
+
Processing by APIController#index as HTML
|
1084
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1085
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1086
|
+
Processing by APIController#action as HTML
|
1087
|
+
Completed 500 Internal Server Error in 2ms
|
1088
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1089
|
+
Processing by APIController#action as HTML
|
1090
|
+
Completed 500 Internal Server Error in 1ms
|
1091
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1092
|
+
Processing by APIController#action as HTML
|
1093
|
+
Completed 500 Internal Server Error in 1ms
|
1094
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1095
|
+
Processing by APIController#action as HTML
|
1096
|
+
Completed 500 Internal Server Error in 2ms
|
1097
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1098
|
+
Processing by APIController#action as HTML
|
1099
|
+
Completed 500 Internal Server Error in 1ms
|
1100
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:10 +0100
|
1101
|
+
Processing by APIController#action as HTML
|
1102
|
+
Completed 500 Internal Server Error in 2ms
|
1103
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1104
|
+
Processing by APIController#action as HTML
|
1105
|
+
Completed 500 Internal Server Error in 2ms
|
1106
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1107
|
+
Processing by APIController#action as HTML
|
1108
|
+
Completed 500 Internal Server Error in 1ms
|
1109
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1110
|
+
Processing by APIController#action as HTML
|
1111
|
+
Completed 500 Internal Server Error in 2ms
|
1112
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1113
|
+
Processing by APIController#action as HTML
|
1114
|
+
Completed 500 Internal Server Error in 2ms
|
1115
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1116
|
+
Processing by APIController#action as HTML
|
1117
|
+
Completed 500 Internal Server Error in 2ms
|
1118
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1119
|
+
Processing by APIController#action as HTML
|
1120
|
+
Completed 500 Internal Server Error in 2ms
|
1121
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1122
|
+
Processing by APIController#index as HTML
|
1123
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1124
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1125
|
+
Processing by APIController#index as HTML
|
1126
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
1127
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1128
|
+
Processing by APIController#index as HTML
|
1129
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1130
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1131
|
+
Processing by APIController#index as HTML
|
1132
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1133
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1134
|
+
Processing by APIController#index as HTML
|
1135
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1136
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1137
|
+
Processing by APIController#index as HTML
|
1138
|
+
Completed 200 OK in 7ms (Views: 0.5ms)
|
1139
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1140
|
+
Processing by APIController#index as HTML
|
1141
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1142
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:22 +0100
|
1143
|
+
Processing by APIController#index as HTML
|
1144
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1145
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1146
|
+
Processing by APIController#action as HTML
|
1147
|
+
Completed 500 Internal Server Error in 2ms
|
1148
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1149
|
+
Processing by APIController#action as HTML
|
1150
|
+
Completed 500 Internal Server Error in 2ms
|
1151
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1152
|
+
Processing by APIController#action as HTML
|
1153
|
+
Completed 500 Internal Server Error in 2ms
|
1154
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1155
|
+
Processing by APIController#action as HTML
|
1156
|
+
Completed 500 Internal Server Error in 2ms
|
1157
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1158
|
+
Processing by APIController#action as HTML
|
1159
|
+
Completed 500 Internal Server Error in 2ms
|
1160
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1161
|
+
Processing by APIController#action as HTML
|
1162
|
+
Completed 500 Internal Server Error in 2ms
|
1163
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1164
|
+
Processing by APIController#index as HTML
|
1165
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1166
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1167
|
+
Processing by APIController#index as HTML
|
1168
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1169
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1170
|
+
Processing by APIController#index as HTML
|
1171
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1172
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1173
|
+
Processing by APIController#index as HTML
|
1174
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1175
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1176
|
+
Processing by APIController#index as HTML
|
1177
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1178
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1179
|
+
Processing by APIController#index as HTML
|
1180
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
1181
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1182
|
+
Processing by APIController#index as HTML
|
1183
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
1184
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:11:47 +0100
|
1185
|
+
Processing by APIController#index as HTML
|
1186
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1187
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1188
|
+
Processing by APIController#index as HTML
|
1189
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1190
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1191
|
+
Processing by APIController#index as HTML
|
1192
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1193
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1194
|
+
Processing by APIController#index as HTML
|
1195
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1196
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1197
|
+
Processing by APIController#index as HTML
|
1198
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1199
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1200
|
+
Processing by APIController#index as HTML
|
1201
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1202
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1203
|
+
Processing by APIController#index as HTML
|
1204
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1205
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1206
|
+
Processing by APIController#index as HTML
|
1207
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1208
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1209
|
+
Processing by APIController#index as HTML
|
1210
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1211
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1212
|
+
Processing by APIController#action as HTML
|
1213
|
+
Completed 500 Internal Server Error in 2ms
|
1214
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1215
|
+
Processing by APIController#action as HTML
|
1216
|
+
Completed 500 Internal Server Error in 2ms
|
1217
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1218
|
+
Processing by APIController#action as HTML
|
1219
|
+
Completed 500 Internal Server Error in 1ms
|
1220
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1221
|
+
Processing by APIController#action as HTML
|
1222
|
+
Completed 500 Internal Server Error in 2ms
|
1223
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1224
|
+
Processing by APIController#action as HTML
|
1225
|
+
Completed 500 Internal Server Error in 2ms
|
1226
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:12:03 +0100
|
1227
|
+
Processing by APIController#action as HTML
|
1228
|
+
Completed 500 Internal Server Error in 2ms
|
1229
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1230
|
+
Processing by APIController#action as HTML
|
1231
|
+
Completed 500 Internal Server Error in 2ms
|
1232
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1233
|
+
Processing by APIController#action as HTML
|
1234
|
+
Completed 500 Internal Server Error in 2ms
|
1235
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1236
|
+
Processing by APIController#action as HTML
|
1237
|
+
Completed 500 Internal Server Error in 2ms
|
1238
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1239
|
+
Processing by APIController#action as HTML
|
1240
|
+
Completed 500 Internal Server Error in 2ms
|
1241
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1242
|
+
Processing by APIController#action as HTML
|
1243
|
+
Completed 500 Internal Server Error in 2ms
|
1244
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1245
|
+
Processing by APIController#action as HTML
|
1246
|
+
Completed 500 Internal Server Error in 2ms
|
1247
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1248
|
+
Processing by APIController#index as HTML
|
1249
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1250
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1251
|
+
Processing by APIController#index as HTML
|
1252
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1253
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1254
|
+
Processing by APIController#index as HTML
|
1255
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1256
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1257
|
+
Processing by APIController#index as HTML
|
1258
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1259
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1260
|
+
Processing by APIController#index as HTML
|
1261
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1262
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1263
|
+
Processing by APIController#index as HTML
|
1264
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
1265
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1266
|
+
Processing by APIController#index as HTML
|
1267
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1268
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:13:54 +0100
|
1269
|
+
Processing by APIController#index as HTML
|
1270
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1271
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1272
|
+
Processing by APIController#index as HTML
|
1273
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1274
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1275
|
+
Processing by APIController#index as HTML
|
1276
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1277
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1278
|
+
Processing by APIController#index as HTML
|
1279
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1280
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1281
|
+
Processing by APIController#index as HTML
|
1282
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1283
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1284
|
+
Processing by APIController#index as HTML
|
1285
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1286
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1287
|
+
Processing by APIController#index as HTML
|
1288
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1289
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1290
|
+
Processing by APIController#index as HTML
|
1291
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1292
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1293
|
+
Processing by APIController#index as HTML
|
1294
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1295
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1296
|
+
Processing by APIController#action as HTML
|
1297
|
+
Completed 500 Internal Server Error in 2ms
|
1298
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1299
|
+
Processing by APIController#action as HTML
|
1300
|
+
Completed 500 Internal Server Error in 2ms
|
1301
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1302
|
+
Processing by APIController#action as HTML
|
1303
|
+
Completed 500 Internal Server Error in 1ms
|
1304
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1305
|
+
Processing by APIController#action as HTML
|
1306
|
+
Completed 500 Internal Server Error in 2ms
|
1307
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1308
|
+
Processing by APIController#action as HTML
|
1309
|
+
Completed 500 Internal Server Error in 2ms
|
1310
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:16:47 +0100
|
1311
|
+
Processing by APIController#action as HTML
|
1312
|
+
Completed 500 Internal Server Error in 2ms
|
1313
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1314
|
+
Processing by APIController#index as HTML
|
1315
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1316
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1317
|
+
Processing by APIController#index as HTML
|
1318
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1319
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1320
|
+
Processing by APIController#index as HTML
|
1321
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1322
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1323
|
+
Processing by APIController#index as HTML
|
1324
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1325
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1326
|
+
Processing by APIController#index as HTML
|
1327
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1328
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1329
|
+
Processing by APIController#index as HTML
|
1330
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1331
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1332
|
+
Processing by APIController#index as HTML
|
1333
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1334
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1335
|
+
Processing by APIController#index as HTML
|
1336
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1337
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1338
|
+
Processing by APIController#action as HTML
|
1339
|
+
Completed 500 Internal Server Error in 2ms
|
1340
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1341
|
+
Processing by APIController#action as HTML
|
1342
|
+
Completed 500 Internal Server Error in 2ms
|
1343
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1344
|
+
Processing by APIController#action as HTML
|
1345
|
+
Completed 500 Internal Server Error in 2ms
|
1346
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1347
|
+
Processing by APIController#action as HTML
|
1348
|
+
Completed 500 Internal Server Error in 2ms
|
1349
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1350
|
+
Processing by APIController#action as HTML
|
1351
|
+
Completed 500 Internal Server Error in 2ms
|
1352
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:17:47 +0100
|
1353
|
+
Processing by APIController#action as HTML
|
1354
|
+
Completed 500 Internal Server Error in 2ms
|
1355
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1356
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1357
|
+
Processing by APIController#action as HTML
|
1358
|
+
Completed 500 Internal Server Error in 2ms
|
1359
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1360
|
+
Processing by APIController#action as HTML
|
1361
|
+
Completed 500 Internal Server Error in 1ms
|
1362
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1363
|
+
Processing by APIController#action as HTML
|
1364
|
+
Completed 500 Internal Server Error in 1ms
|
1365
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1366
|
+
Processing by APIController#action as HTML
|
1367
|
+
Completed 500 Internal Server Error in 2ms
|
1368
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1369
|
+
Processing by APIController#action as HTML
|
1370
|
+
Completed 500 Internal Server Error in 1ms
|
1371
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1372
|
+
Processing by APIController#index as HTML
|
1373
|
+
Completed 200 OK in 4ms (Views: 0.5ms)
|
1374
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1375
|
+
Processing by APIController#index as HTML
|
1376
|
+
Completed 200 OK in 3ms (Views: 0.4ms)
|
1377
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1378
|
+
Processing by APIController#index as HTML
|
1379
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1380
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1381
|
+
Processing by APIController#index as HTML
|
1382
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1383
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1384
|
+
Processing by APIController#index as HTML
|
1385
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1386
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1387
|
+
Processing by APIController#index as HTML
|
1388
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1389
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1390
|
+
Processing by APIController#index as HTML
|
1391
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
1392
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:27:39 +0100
|
1393
|
+
Processing by APIController#index as HTML
|
1394
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1395
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:28:43 +0100
|
1396
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:28:43 +0100
|
1397
|
+
Processing by APIController#index as HTML
|
1398
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1399
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:28:43 +0100
|
1400
|
+
Processing by APIController#index as HTML
|
1401
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1402
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:28:43 +0100
|
1403
|
+
Processing by APIController#index as HTML
|
1404
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1405
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:28:43 +0100
|
1406
|
+
Processing by APIController#index as HTML
|
1407
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1408
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:28:43 +0100
|
1409
|
+
Processing by APIController#index as HTML
|
1410
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1411
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:28:43 +0100
|
1412
|
+
Processing by APIController#index as HTML
|
1413
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1414
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:28:43 +0100
|
1415
|
+
Processing by APIController#index as HTML
|
1416
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1417
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:28:43 +0100
|
1418
|
+
Processing by APIController#action as HTML
|
1419
|
+
Completed 500 Internal Server Error in 2ms
|
1420
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:28:44 +0100
|
1421
|
+
Processing by APIController#action as HTML
|
1422
|
+
Completed 500 Internal Server Error in 1ms
|
1423
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:28:44 +0100
|
1424
|
+
Processing by APIController#action as HTML
|
1425
|
+
Completed 500 Internal Server Error in 1ms
|
1426
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:28:44 +0100
|
1427
|
+
Processing by APIController#action as HTML
|
1428
|
+
Completed 500 Internal Server Error in 6ms
|
1429
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:28:44 +0100
|
1430
|
+
Processing by APIController#action as HTML
|
1431
|
+
Completed 500 Internal Server Error in 2ms
|
1432
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:28:44 +0100
|
1433
|
+
Processing by APIController#action as HTML
|
1434
|
+
Completed 500 Internal Server Error in 2ms
|
1435
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1436
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1437
|
+
Processing by APIController#index as HTML
|
1438
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1439
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1440
|
+
Processing by APIController#index as HTML
|
1441
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1442
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1443
|
+
Processing by APIController#index as HTML
|
1444
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1445
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1446
|
+
Processing by APIController#index as HTML
|
1447
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1448
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1449
|
+
Processing by APIController#index as HTML
|
1450
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1451
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1452
|
+
Processing by APIController#index as HTML
|
1453
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1454
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1455
|
+
Processing by APIController#index as HTML
|
1456
|
+
Completed 200 OK in 2ms (Views: 0.4ms)
|
1457
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1458
|
+
Processing by APIController#action as HTML
|
1459
|
+
Completed 500 Internal Server Error in 2ms
|
1460
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1461
|
+
Processing by APIController#action as HTML
|
1462
|
+
Completed 500 Internal Server Error in 2ms
|
1463
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1464
|
+
Processing by APIController#action as HTML
|
1465
|
+
Completed 500 Internal Server Error in 2ms
|
1466
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1467
|
+
Processing by APIController#action as HTML
|
1468
|
+
Completed 500 Internal Server Error in 2ms
|
1469
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1470
|
+
Processing by APIController#action as HTML
|
1471
|
+
Completed 500 Internal Server Error in 7ms
|
1472
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:29:47 +0100
|
1473
|
+
Processing by APIController#action as HTML
|
1474
|
+
Completed 500 Internal Server Error in 2ms
|
1475
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:30:50 +0100
|
1476
|
+
Processing by APIController#index as HTML
|
1477
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1478
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:30:50 +0100
|
1479
|
+
Processing by APIController#index as HTML
|
1480
|
+
Completed 200 OK in 4ms (Views: 0.4ms)
|
1481
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:30:50 +0100
|
1482
|
+
Processing by APIController#index as HTML
|
1483
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1484
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:30:50 +0100
|
1485
|
+
Processing by APIController#index as HTML
|
1486
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1487
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:30:51 +0100
|
1488
|
+
Processing by APIController#index as HTML
|
1489
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1490
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:30:51 +0100
|
1491
|
+
Processing by APIController#index as HTML
|
1492
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1493
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:30:51 +0100
|
1494
|
+
Processing by APIController#index as HTML
|
1495
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1496
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:30:51 +0100
|
1497
|
+
Processing by APIController#index as HTML
|
1498
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
1499
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:30:51 +0100
|
1500
|
+
Processing by APIController#action as HTML
|
1501
|
+
Completed 500 Internal Server Error in 2ms
|
1502
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:30:51 +0100
|
1503
|
+
Processing by APIController#action as HTML
|
1504
|
+
Completed 500 Internal Server Error in 1ms
|
1505
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:30:51 +0100
|
1506
|
+
Processing by APIController#action as HTML
|
1507
|
+
Completed 500 Internal Server Error in 1ms
|
1508
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:30:51 +0100
|
1509
|
+
Processing by APIController#action as HTML
|
1510
|
+
Completed 500 Internal Server Error in 2ms
|
1511
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:30:51 +0100
|
1512
|
+
Processing by APIController#action as HTML
|
1513
|
+
Completed 500 Internal Server Error in 2ms
|
1514
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:30:51 +0100
|
1515
|
+
Processing by APIController#action as HTML
|
1516
|
+
Completed 500 Internal Server Error in 2ms
|
1517
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1518
|
+
Processing by APIController#action as HTML
|
1519
|
+
Completed 500 Internal Server Error in 2ms
|
1520
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1521
|
+
Processing by APIController#action as HTML
|
1522
|
+
Completed 500 Internal Server Error in 1ms
|
1523
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1524
|
+
Processing by APIController#action as HTML
|
1525
|
+
Completed 500 Internal Server Error in 2ms
|
1526
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1527
|
+
Processing by APIController#action as HTML
|
1528
|
+
Completed 500 Internal Server Error in 2ms
|
1529
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1530
|
+
Processing by APIController#action as HTML
|
1531
|
+
Completed 500 Internal Server Error in 2ms
|
1532
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1533
|
+
Processing by APIController#action as HTML
|
1534
|
+
Completed 500 Internal Server Error in 1ms
|
1535
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1536
|
+
Processing by APIController#index as HTML
|
1537
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1538
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1539
|
+
Processing by APIController#index as HTML
|
1540
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1541
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1542
|
+
Processing by APIController#index as HTML
|
1543
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1544
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1545
|
+
Processing by APIController#index as HTML
|
1546
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1547
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1548
|
+
Processing by APIController#index as HTML
|
1549
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1550
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1551
|
+
Processing by APIController#index as HTML
|
1552
|
+
Completed 200 OK in 7ms (Views: 0.3ms)
|
1553
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1554
|
+
Processing by APIController#index as HTML
|
1555
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1556
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:31:09 +0100
|
1557
|
+
Processing by APIController#index as HTML
|
1558
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1559
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1560
|
+
Processing by APIController#index as HTML
|
1561
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1562
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1563
|
+
Processing by APIController#index as HTML
|
1564
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1565
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1566
|
+
Processing by APIController#index as HTML
|
1567
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1568
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1569
|
+
Processing by APIController#index as HTML
|
1570
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1571
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1572
|
+
Processing by APIController#index as HTML
|
1573
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1574
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1575
|
+
Processing by APIController#index as HTML
|
1576
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1577
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1578
|
+
Processing by APIController#index as HTML
|
1579
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1580
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1581
|
+
Processing by APIController#index as HTML
|
1582
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1583
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1584
|
+
Processing by APIController#action as HTML
|
1585
|
+
Completed 500 Internal Server Error in 2ms
|
1586
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1587
|
+
Processing by APIController#action as HTML
|
1588
|
+
Completed 500 Internal Server Error in 2ms
|
1589
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1590
|
+
Processing by APIController#action as HTML
|
1591
|
+
Completed 500 Internal Server Error in 2ms
|
1592
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1593
|
+
Processing by APIController#action as HTML
|
1594
|
+
Completed 500 Internal Server Error in 2ms
|
1595
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1596
|
+
Processing by APIController#action as HTML
|
1597
|
+
Completed 500 Internal Server Error in 2ms
|
1598
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:21 +0100
|
1599
|
+
Processing by APIController#action as HTML
|
1600
|
+
Completed 500 Internal Server Error in 2ms
|
1601
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1602
|
+
Processing by APIController#index as HTML
|
1603
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1604
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1605
|
+
Processing by APIController#index as HTML
|
1606
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1607
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1608
|
+
Processing by APIController#index as HTML
|
1609
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1610
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1611
|
+
Processing by APIController#index as HTML
|
1612
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1613
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1614
|
+
Processing by APIController#index as HTML
|
1615
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1616
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1617
|
+
Processing by APIController#index as HTML
|
1618
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1619
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1620
|
+
Processing by APIController#index as HTML
|
1621
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1622
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1623
|
+
Processing by APIController#index as HTML
|
1624
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1625
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1626
|
+
Processing by APIController#action as HTML
|
1627
|
+
Completed 500 Internal Server Error in 0ms
|
1628
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1629
|
+
Processing by APIController#action as HTML
|
1630
|
+
Completed 500 Internal Server Error in 0ms
|
1631
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1632
|
+
Processing by APIController#action as HTML
|
1633
|
+
Completed 500 Internal Server Error in 0ms
|
1634
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1635
|
+
Processing by APIController#action as HTML
|
1636
|
+
Completed 500 Internal Server Error in 0ms
|
1637
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1638
|
+
Processing by APIController#action as HTML
|
1639
|
+
Completed 500 Internal Server Error in 0ms
|
1640
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:34:57 +0100
|
1641
|
+
Processing by APIController#action as HTML
|
1642
|
+
Completed 500 Internal Server Error in 0ms
|
1643
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1644
|
+
Processing by APIController#index as HTML
|
1645
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1646
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1647
|
+
Processing by APIController#index as HTML
|
1648
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1649
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1650
|
+
Processing by APIController#index as HTML
|
1651
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1652
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1653
|
+
Processing by APIController#index as HTML
|
1654
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1655
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1656
|
+
Processing by APIController#index as HTML
|
1657
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1658
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1659
|
+
Processing by APIController#index as HTML
|
1660
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1661
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1662
|
+
Processing by APIController#index as HTML
|
1663
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1664
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1665
|
+
Processing by APIController#index as HTML
|
1666
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1667
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1668
|
+
Processing by APIController#action as HTML
|
1669
|
+
Completed 500 Internal Server Error in 3ms
|
1670
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1671
|
+
Processing by APIController#action as HTML
|
1672
|
+
Completed 500 Internal Server Error in 2ms
|
1673
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1674
|
+
Processing by APIController#action as HTML
|
1675
|
+
Completed 500 Internal Server Error in 2ms
|
1676
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1677
|
+
Processing by APIController#action as HTML
|
1678
|
+
Completed 500 Internal Server Error in 2ms
|
1679
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1680
|
+
Processing by APIController#action as HTML
|
1681
|
+
Completed 500 Internal Server Error in 2ms
|
1682
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:35:18 +0100
|
1683
|
+
Processing by APIController#action as HTML
|
1684
|
+
Completed 500 Internal Server Error in 2ms
|
1685
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1686
|
+
Processing by APIController#action as HTML
|
1687
|
+
Completed 500 Internal Server Error in 2ms
|
1688
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1689
|
+
Processing by APIController#action as HTML
|
1690
|
+
Completed 500 Internal Server Error in 2ms
|
1691
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1692
|
+
Processing by APIController#action as HTML
|
1693
|
+
Completed 500 Internal Server Error in 2ms
|
1694
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1695
|
+
Processing by APIController#action as HTML
|
1696
|
+
Completed 500 Internal Server Error in 2ms
|
1697
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1698
|
+
Processing by APIController#action as HTML
|
1699
|
+
Completed 500 Internal Server Error in 2ms
|
1700
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1701
|
+
Processing by APIController#action as HTML
|
1702
|
+
Completed 500 Internal Server Error in 2ms
|
1703
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1704
|
+
Processing by APIController#index as HTML
|
1705
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1706
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1707
|
+
Processing by APIController#index as HTML
|
1708
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1709
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1710
|
+
Processing by APIController#index as HTML
|
1711
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1712
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1713
|
+
Processing by APIController#index as HTML
|
1714
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1715
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1716
|
+
Processing by APIController#index as HTML
|
1717
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1718
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1719
|
+
Processing by APIController#index as HTML
|
1720
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1721
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1722
|
+
Processing by APIController#index as HTML
|
1723
|
+
Completed 200 OK in 4ms (Views: 0.4ms)
|
1724
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:36:16 +0100
|
1725
|
+
Processing by APIController#index as HTML
|
1726
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1727
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1728
|
+
Processing by APIController#action as HTML
|
1729
|
+
Completed 500 Internal Server Error in 4ms
|
1730
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1731
|
+
Processing by APIController#action as HTML
|
1732
|
+
Completed 500 Internal Server Error in 3ms
|
1733
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1734
|
+
Processing by APIController#action as HTML
|
1735
|
+
Completed 500 Internal Server Error in 2ms
|
1736
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1737
|
+
Processing by APIController#action as HTML
|
1738
|
+
Completed 500 Internal Server Error in 2ms
|
1739
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1740
|
+
Processing by APIController#action as HTML
|
1741
|
+
Completed 500 Internal Server Error in 2ms
|
1742
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1743
|
+
Processing by APIController#action as HTML
|
1744
|
+
Completed 500 Internal Server Error in 2ms
|
1745
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1746
|
+
Processing by APIController#index as HTML
|
1747
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1748
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1749
|
+
Processing by APIController#index as HTML
|
1750
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1751
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1752
|
+
Processing by APIController#index as HTML
|
1753
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1754
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1755
|
+
Processing by APIController#index as HTML
|
1756
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1757
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1758
|
+
Processing by APIController#index as HTML
|
1759
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1760
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1761
|
+
Processing by APIController#index as HTML
|
1762
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1763
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1764
|
+
Processing by APIController#index as HTML
|
1765
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1766
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:17 +0100
|
1767
|
+
Processing by APIController#index as HTML
|
1768
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1769
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:56 +0100
|
1770
|
+
Processing by APIController#index as HTML
|
1771
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1772
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1773
|
+
Processing by APIController#index as HTML
|
1774
|
+
Completed 200 OK in 3ms (Views: 0.2ms)
|
1775
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1776
|
+
Processing by APIController#index as HTML
|
1777
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1778
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1779
|
+
Processing by APIController#index as HTML
|
1780
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1781
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1782
|
+
Processing by APIController#index as HTML
|
1783
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1784
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1785
|
+
Processing by APIController#index as HTML
|
1786
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1787
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1788
|
+
Processing by APIController#index as HTML
|
1789
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1790
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1791
|
+
Processing by APIController#index as HTML
|
1792
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1793
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1794
|
+
Processing by APIController#action as HTML
|
1795
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1796
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1797
|
+
Processing by APIController#action as HTML
|
1798
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1799
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1800
|
+
Processing by APIController#action as HTML
|
1801
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1802
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1803
|
+
Processing by APIController#action as HTML
|
1804
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1805
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1806
|
+
Processing by APIController#action as HTML
|
1807
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1808
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:38:57 +0100
|
1809
|
+
Processing by APIController#action as HTML
|
1810
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1811
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1812
|
+
Processing by APIController#index as HTML
|
1813
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1814
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1815
|
+
Processing by APIController#index as HTML
|
1816
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1817
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1818
|
+
Processing by APIController#index as HTML
|
1819
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1820
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1821
|
+
Processing by APIController#index as HTML
|
1822
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1823
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1824
|
+
Processing by APIController#index as HTML
|
1825
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1826
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1827
|
+
Processing by APIController#index as HTML
|
1828
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1829
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1830
|
+
Processing by APIController#index as HTML
|
1831
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1832
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1833
|
+
Processing by APIController#index as HTML
|
1834
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1835
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1836
|
+
Processing by APIController#action as HTML
|
1837
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1838
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1839
|
+
Processing by APIController#action as HTML
|
1840
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1841
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1842
|
+
Processing by APIController#action as HTML
|
1843
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1844
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1845
|
+
Processing by APIController#action as HTML
|
1846
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1847
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1848
|
+
Processing by APIController#action as HTML
|
1849
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1850
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:27 +0100
|
1851
|
+
Processing by APIController#action as HTML
|
1852
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1853
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1854
|
+
Processing by APIController#index as HTML
|
1855
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1856
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1857
|
+
Processing by APIController#index as HTML
|
1858
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1859
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1860
|
+
Processing by APIController#index as HTML
|
1861
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1862
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1863
|
+
Processing by APIController#index as HTML
|
1864
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1865
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1866
|
+
Processing by APIController#index as HTML
|
1867
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1868
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1869
|
+
Processing by APIController#index as HTML
|
1870
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1871
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1872
|
+
Processing by APIController#index as HTML
|
1873
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1874
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1875
|
+
Processing by APIController#index as HTML
|
1876
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1877
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1878
|
+
Processing by APIController#action as HTML
|
1879
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1880
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1881
|
+
Processing by APIController#action as HTML
|
1882
|
+
Completed 200 OK in 1ms (Views: 0.1ms)
|
1883
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1884
|
+
Processing by APIController#action as HTML
|
1885
|
+
Completed 200 OK in 1ms (Views: 0.2ms)
|
1886
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1887
|
+
Processing by APIController#action as HTML
|
1888
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1889
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1890
|
+
Processing by APIController#action as HTML
|
1891
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1892
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:53:41 +0100
|
1893
|
+
Processing by APIController#action as HTML
|
1894
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1895
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1896
|
+
Processing by APIController#index as HTML
|
1897
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1898
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1899
|
+
Processing by APIController#index as HTML
|
1900
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1901
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1902
|
+
Processing by APIController#index as HTML
|
1903
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1904
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1905
|
+
Processing by APIController#index as HTML
|
1906
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1907
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1908
|
+
Processing by APIController#index as HTML
|
1909
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1910
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1911
|
+
Processing by APIController#index as HTML
|
1912
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1913
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1914
|
+
Processing by APIController#index as HTML
|
1915
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1916
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1917
|
+
Processing by APIController#index as HTML
|
1918
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1919
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1920
|
+
Processing by APIController#action as HTML
|
1921
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1922
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1923
|
+
Processing by APIController#action as HTML
|
1924
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1925
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1926
|
+
Processing by APIController#action as HTML
|
1927
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1928
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1929
|
+
Processing by APIController#action as HTML
|
1930
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1931
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1932
|
+
Processing by APIController#action as HTML
|
1933
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1934
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:54:26 +0100
|
1935
|
+
Processing by APIController#action as HTML
|
1936
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1937
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1938
|
+
Processing by APIController#index as HTML
|
1939
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1940
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1941
|
+
Processing by APIController#index as HTML
|
1942
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1943
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1944
|
+
Processing by APIController#index as HTML
|
1945
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1946
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1947
|
+
Processing by APIController#index as HTML
|
1948
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1949
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1950
|
+
Processing by APIController#index as HTML
|
1951
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1952
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1953
|
+
Processing by APIController#index as HTML
|
1954
|
+
Completed 200 OK in 3ms (Views: 0.3ms)
|
1955
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1956
|
+
Processing by APIController#index as HTML
|
1957
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1958
|
+
Started GET "/" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1959
|
+
Processing by APIController#index as HTML
|
1960
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1961
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1962
|
+
Processing by APIController#action as HTML
|
1963
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1964
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1965
|
+
Processing by APIController#action as HTML
|
1966
|
+
Completed 200 OK in 2ms (Views: 0.3ms)
|
1967
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1968
|
+
Processing by APIController#action as HTML
|
1969
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1970
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1971
|
+
Processing by APIController#action as HTML
|
1972
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1973
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1974
|
+
Processing by APIController#action as HTML
|
1975
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|
1976
|
+
Started GET "/action" for 127.0.0.1 at 2015-03-16 11:55:16 +0100
|
1977
|
+
Processing by APIController#action as HTML
|
1978
|
+
Completed 200 OK in 2ms (Views: 0.2ms)
|