lena 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +48 -0
- data/Rakefile +29 -0
- data/app/assets/javascripts/lena.coffee +78 -0
- data/app/controllers/lena/lena_controller.rb +8 -0
- data/config/routes.rb +3 -0
- data/lib/lena.rb +4 -0
- data/lib/lena/engine.rb +20 -0
- data/lib/lena/rails/routing.rb +7 -0
- data/lib/lena/routing.rb +13 -0
- data/lib/lena/version.rb +3 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +14 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/views/application/index.html +3 -0
- data/spec/dummy/app/views/application/log.html +4 -0
- data/spec/dummy/app/views/application/throw.html +4 -0
- data/spec/dummy/app/views/application/throw_callstack.html +10 -0
- data/spec/dummy/app/views/layouts/application.html.erb +13 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +14 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +9 -0
- data/spec/dummy/config/environments/test.rb +12 -0
- data/spec/dummy/config/initializers/lena.rb +10 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/routes.rb +7 -0
- data/spec/dummy/log/development.log +170 -0
- data/spec/dummy/log/test.log +352 -0
- data/spec/dummy/spec/javascripts/support/jasmine.yml +20 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/1c6fd1c437c9411ba952f11bacc0320f +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/746c4b5e95c34b98c11d314938f4eaf1 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/b7a52d401e731277ea560db378ef97c3 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/1c6fd1c437c9411ba952f11bacc0320f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/b7a52d401e731277ea560db378ef97c3 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/features/lena_spec.rb +30 -0
- data/spec/spec_helper.rb +51 -0
- metadata +239 -0
@@ -0,0 +1,170 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 13:49:58 -0300
|
4
|
+
Processing by ApplicationController#index as HTML
|
5
|
+
Rendered application/index.html within layouts/application (0.7ms)
|
6
|
+
Completed 200 OK in 244ms (Views: 243.9ms)
|
7
|
+
|
8
|
+
|
9
|
+
Started GET "/assets/lena.js?body=1" for 127.0.0.1 at 2013-11-26 13:49:59 -0300
|
10
|
+
|
11
|
+
|
12
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-11-26 13:49:59 -0300
|
13
|
+
|
14
|
+
|
15
|
+
Started GET "/tunekeys" for 127.0.0.1 at 2013-11-26 13:50:02 -0300
|
16
|
+
|
17
|
+
ActionController::RoutingError (No route matches [GET] "/tunekeys"):
|
18
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
19
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
20
|
+
railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
|
21
|
+
railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
|
22
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
23
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
24
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
25
|
+
railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
|
26
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
27
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
28
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
29
|
+
activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
30
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
31
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
32
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
33
|
+
railties (4.0.1) lib/rails/engine.rb:511:in `call'
|
34
|
+
railties (4.0.1) lib/rails/application.rb:97:in `call'
|
35
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
36
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
37
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
38
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
39
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
40
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
41
|
+
|
42
|
+
|
43
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
44
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
|
45
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
46
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.9ms)
|
47
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (29.7ms)
|
48
|
+
|
49
|
+
|
50
|
+
Started GET "/tunekeys" for 127.0.0.1 at 2013-11-26 13:50:04 -0300
|
51
|
+
|
52
|
+
ActionController::RoutingError (No route matches [GET] "/tunekeys"):
|
53
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
54
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
55
|
+
railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
|
56
|
+
railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
|
57
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
58
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
59
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
60
|
+
railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
|
61
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
62
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
63
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
64
|
+
activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
65
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
66
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
67
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
68
|
+
railties (4.0.1) lib/rails/engine.rb:511:in `call'
|
69
|
+
railties (4.0.1) lib/rails/application.rb:97:in `call'
|
70
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
71
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
72
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
73
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
74
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
75
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
76
|
+
|
77
|
+
|
78
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.7ms)
|
79
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
|
80
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
81
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
|
82
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (11.9ms)
|
83
|
+
|
84
|
+
|
85
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 13:50:04 -0300
|
86
|
+
Processing by ApplicationController#index as HTML
|
87
|
+
Rendered application/index.html within layouts/application (0.0ms)
|
88
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
89
|
+
|
90
|
+
|
91
|
+
Started GET "/tunekeys" for 127.0.0.1 at 2013-11-26 13:50:12 -0300
|
92
|
+
|
93
|
+
ActionController::RoutingError (No route matches [GET] "/tunekeys"):
|
94
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
95
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
96
|
+
railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
|
97
|
+
railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
|
98
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
99
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
100
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
101
|
+
railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
|
102
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
103
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
104
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
105
|
+
activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
106
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
107
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
108
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
109
|
+
railties (4.0.1) lib/rails/engine.rb:511:in `call'
|
110
|
+
railties (4.0.1) lib/rails/application.rb:97:in `call'
|
111
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
112
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
113
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
114
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
115
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
116
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
117
|
+
|
118
|
+
|
119
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms)
|
120
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (19.2ms)
|
121
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
122
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
123
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (35.0ms)
|
124
|
+
|
125
|
+
|
126
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 13:50:13 -0300
|
127
|
+
Processing by ApplicationController#throw as HTML
|
128
|
+
Rendered application/throw.html within layouts/application (0.3ms)
|
129
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
130
|
+
|
131
|
+
|
132
|
+
Started GET "/throw_nested" for 127.0.0.1 at 2013-11-26 13:50:26 -0300
|
133
|
+
|
134
|
+
ActionController::RoutingError (No route matches [GET] "/throw_nested"):
|
135
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
136
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
137
|
+
railties (4.0.1) lib/rails/rack/logger.rb:38:in `call_app'
|
138
|
+
railties (4.0.1) lib/rails/rack/logger.rb:20:in `block in call'
|
139
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `block in tagged'
|
140
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:25:in `tagged'
|
141
|
+
activesupport (4.0.1) lib/active_support/tagged_logging.rb:67:in `tagged'
|
142
|
+
railties (4.0.1) lib/rails/rack/logger.rb:20:in `call'
|
143
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
144
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
145
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
146
|
+
activesupport (4.0.1) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
|
147
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
148
|
+
actionpack (4.0.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
149
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
150
|
+
railties (4.0.1) lib/rails/engine.rb:511:in `call'
|
151
|
+
railties (4.0.1) lib/rails/application.rb:97:in `call'
|
152
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
153
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
154
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
155
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
156
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
157
|
+
/Users/wbyoung/.rvm/rubies/ruby-2.0.0-p353/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
158
|
+
|
159
|
+
|
160
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms)
|
161
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
|
162
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms)
|
163
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
|
164
|
+
Rendered /Users/wbyoung/.rvm/gems/ruby-2.0.0-p353/gems/actionpack-4.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (13.0ms)
|
165
|
+
|
166
|
+
|
167
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 13:50:34 -0300
|
168
|
+
Processing by ApplicationController#throw_callstack as HTML
|
169
|
+
Rendered application/throw_callstack.html within layouts/application (0.5ms)
|
170
|
+
Completed 200 OK in 4ms (Views: 3.4ms)
|
@@ -0,0 +1,352 @@
|
|
1
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 00:40:40 -0300
|
2
|
+
Processing by ApplicationController#throw as HTML
|
3
|
+
Rendered application/throw.html within layouts/application (0.9ms)
|
4
|
+
Completed 200 OK in 206ms (Views: 206.0ms)
|
5
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 00:40:40 -0300
|
6
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 00:40:40 -0300
|
7
|
+
Processing by Lena::LenaController#log as */*
|
8
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
9
|
+
Rendered text template (0.0ms)
|
10
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
11
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 00:40:40 -0300
|
12
|
+
Processing by ApplicationController#index as HTML
|
13
|
+
Rendered application/index.html within layouts/application (0.4ms)
|
14
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
15
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 00:40:40 -0300
|
16
|
+
Processing by ApplicationController#throw_callstack as HTML
|
17
|
+
Rendered application/throw_callstack.html within layouts/application (0.3ms)
|
18
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
19
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 00:40:40 -0300
|
20
|
+
Processing by Lena::LenaController#log as */*
|
21
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
22
|
+
Rendered text template (0.0ms)
|
23
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
24
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 00:40:40 -0300
|
25
|
+
Processing by ApplicationController#log as HTML
|
26
|
+
Rendered application/log.html within layouts/application (0.3ms)
|
27
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
28
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 00:40:40 -0300
|
29
|
+
Processing by Lena::LenaController#log as */*
|
30
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
31
|
+
Rendered text template (0.0ms)
|
32
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
33
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 00:41:48 -0300
|
34
|
+
Processing by ApplicationController#throw_callstack as HTML
|
35
|
+
Rendered application/throw_callstack.html within layouts/application (0.8ms)
|
36
|
+
Completed 200 OK in 35ms (Views: 34.7ms)
|
37
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 00:41:48 -0300
|
38
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 00:41:48 -0300
|
39
|
+
Processing by Lena::LenaController#log as */*
|
40
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
41
|
+
Rendered text template (0.0ms)
|
42
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
43
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 00:41:48 -0300
|
44
|
+
Processing by ApplicationController#index as HTML
|
45
|
+
Rendered application/index.html within layouts/application (0.3ms)
|
46
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
47
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 00:41:48 -0300
|
48
|
+
Processing by ApplicationController#log as HTML
|
49
|
+
Rendered application/log.html within layouts/application (0.4ms)
|
50
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
51
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 00:41:48 -0300
|
52
|
+
Processing by Lena::LenaController#log as */*
|
53
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
54
|
+
Rendered text template (0.0ms)
|
55
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
56
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 00:41:48 -0300
|
57
|
+
Processing by ApplicationController#throw as HTML
|
58
|
+
Rendered application/throw.html within layouts/application (0.3ms)
|
59
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
60
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 00:41:48 -0300
|
61
|
+
Processing by Lena::LenaController#log as */*
|
62
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
63
|
+
Rendered text template (0.0ms)
|
64
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
65
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 10:55:15 -0300
|
66
|
+
Processing by ApplicationController#throw as HTML
|
67
|
+
Rendered application/throw.html within layouts/application (1.1ms)
|
68
|
+
Completed 200 OK in 296ms (Views: 295.7ms)
|
69
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 10:55:15 -0300
|
70
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 10:55:15 -0300
|
71
|
+
Processing by Lena::LenaController#log as */*
|
72
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
73
|
+
Rendered text template (0.0ms)
|
74
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
75
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 10:55:15 -0300
|
76
|
+
Processing by ApplicationController#index as HTML
|
77
|
+
Rendered application/index.html within layouts/application (0.4ms)
|
78
|
+
Completed 200 OK in 2ms (Views: 1.8ms)
|
79
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 10:55:15 -0300
|
80
|
+
Processing by ApplicationController#log as HTML
|
81
|
+
Rendered application/log.html within layouts/application (0.5ms)
|
82
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
83
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 10:55:15 -0300
|
84
|
+
Processing by Lena::LenaController#log as */*
|
85
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
86
|
+
Rendered text template (0.0ms)
|
87
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
88
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 10:55:15 -0300
|
89
|
+
Processing by ApplicationController#throw_callstack as HTML
|
90
|
+
Rendered application/throw_callstack.html within layouts/application (0.3ms)
|
91
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
92
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 10:55:15 -0300
|
93
|
+
Processing by Lena::LenaController#log as */*
|
94
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
95
|
+
Rendered text template (0.0ms)
|
96
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
97
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 12:38:37 -0300
|
98
|
+
Processing by ApplicationController#throw_callstack as HTML
|
99
|
+
Rendered application/throw_callstack.html within layouts/application (0.8ms)
|
100
|
+
Completed 200 OK in 36ms (Views: 35.8ms)
|
101
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 12:38:37 -0300
|
102
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 12:38:37 -0300
|
103
|
+
Processing by Lena::LenaController#log as */*
|
104
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
105
|
+
Rendered text template (0.0ms)
|
106
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
107
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 12:38:37 -0300
|
108
|
+
Processing by ApplicationController#throw as HTML
|
109
|
+
Rendered application/throw.html within layouts/application (0.3ms)
|
110
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
111
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 12:38:37 -0300
|
112
|
+
Processing by Lena::LenaController#log as */*
|
113
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
114
|
+
Rendered text template (0.0ms)
|
115
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
116
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 12:38:37 -0300
|
117
|
+
Processing by ApplicationController#log as HTML
|
118
|
+
Rendered application/log.html within layouts/application (0.3ms)
|
119
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
120
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 12:38:37 -0300
|
121
|
+
Processing by Lena::LenaController#log as */*
|
122
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
123
|
+
Rendered text template (0.0ms)
|
124
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
125
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 12:38:37 -0300
|
126
|
+
Processing by ApplicationController#index as HTML
|
127
|
+
Rendered application/index.html within layouts/application (0.3ms)
|
128
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
129
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 12:39:01 -0300
|
130
|
+
Processing by ApplicationController#index as HTML
|
131
|
+
Rendered application/index.html within layouts/application (1.0ms)
|
132
|
+
Completed 200 OK in 36ms (Views: 35.4ms)
|
133
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 12:39:01 -0300
|
134
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 12:39:01 -0300
|
135
|
+
Processing by ApplicationController#throw_callstack as HTML
|
136
|
+
Rendered application/throw_callstack.html within layouts/application (0.3ms)
|
137
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
138
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 12:39:01 -0300
|
139
|
+
Processing by Lena::LenaController#log as */*
|
140
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
141
|
+
Rendered text template (0.0ms)
|
142
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
143
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 12:39:01 -0300
|
144
|
+
Processing by ApplicationController#log as HTML
|
145
|
+
Rendered application/log.html within layouts/application (0.3ms)
|
146
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
147
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 12:39:01 -0300
|
148
|
+
Processing by Lena::LenaController#log as */*
|
149
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
150
|
+
Rendered text template (0.0ms)
|
151
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
152
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 12:39:01 -0300
|
153
|
+
Processing by ApplicationController#throw as HTML
|
154
|
+
Rendered application/throw.html within layouts/application (0.3ms)
|
155
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
156
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 12:39:01 -0300
|
157
|
+
Processing by Lena::LenaController#log as */*
|
158
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
159
|
+
Rendered text template (0.0ms)
|
160
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
161
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 12:40:12 -0300
|
162
|
+
Processing by ApplicationController#throw as HTML
|
163
|
+
Rendered application/throw.html within layouts/application (0.8ms)
|
164
|
+
Completed 200 OK in 35ms (Views: 34.8ms)
|
165
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 12:40:12 -0300
|
166
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 12:40:12 -0300
|
167
|
+
Processing by Lena::LenaController#log as */*
|
168
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
169
|
+
Rendered text template (0.0ms)
|
170
|
+
Completed 200 OK in 1ms (Views: 0.8ms)
|
171
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 12:40:12 -0300
|
172
|
+
Processing by ApplicationController#index as HTML
|
173
|
+
Rendered application/index.html within layouts/application (0.3ms)
|
174
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
175
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 12:40:12 -0300
|
176
|
+
Processing by ApplicationController#log as HTML
|
177
|
+
Rendered application/log.html within layouts/application (0.3ms)
|
178
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
179
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 12:40:12 -0300
|
180
|
+
Processing by Lena::LenaController#log as */*
|
181
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
182
|
+
Rendered text template (0.0ms)
|
183
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
184
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 12:40:12 -0300
|
185
|
+
Processing by ApplicationController#throw_callstack as HTML
|
186
|
+
Rendered application/throw_callstack.html within layouts/application (0.5ms)
|
187
|
+
Completed 200 OK in 2ms (Views: 2.2ms)
|
188
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 12:40:12 -0300
|
189
|
+
Processing by Lena::LenaController#log as */*
|
190
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
191
|
+
Rendered text template (0.0ms)
|
192
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
193
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 13:11:28 -0300
|
194
|
+
Processing by ApplicationController#index as HTML
|
195
|
+
Rendered application/index.html within layouts/application (0.8ms)
|
196
|
+
Completed 200 OK in 204ms (Views: 204.0ms)
|
197
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 13:11:29 -0300
|
198
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 13:11:29 -0300
|
199
|
+
Processing by ApplicationController#throw_callstack as HTML
|
200
|
+
Rendered application/throw_callstack.html within layouts/application (0.3ms)
|
201
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
202
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:11:29 -0300
|
203
|
+
Processing by Lena::LenaController#log as */*
|
204
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
205
|
+
Rendered text template (0.0ms)
|
206
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
207
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 13:11:29 -0300
|
208
|
+
Processing by ApplicationController#throw as HTML
|
209
|
+
Rendered application/throw.html within layouts/application (0.3ms)
|
210
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
211
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:11:29 -0300
|
212
|
+
Processing by Lena::LenaController#log as */*
|
213
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
214
|
+
Rendered text template (0.0ms)
|
215
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
216
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 13:11:29 -0300
|
217
|
+
Processing by ApplicationController#log as HTML
|
218
|
+
Rendered application/log.html within layouts/application (0.3ms)
|
219
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
220
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:11:29 -0300
|
221
|
+
Processing by Lena::LenaController#log as */*
|
222
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
223
|
+
Rendered text template (0.0ms)
|
224
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
225
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 13:11:31 -0300
|
226
|
+
Processing by ApplicationController#throw_callstack as HTML
|
227
|
+
Rendered application/throw_callstack.html within layouts/application (0.9ms)
|
228
|
+
Completed 200 OK in 37ms (Views: 36.7ms)
|
229
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 13:11:31 -0300
|
230
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:11:31 -0300
|
231
|
+
Processing by Lena::LenaController#log as */*
|
232
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
233
|
+
Rendered text template (0.0ms)
|
234
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
235
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 13:11:31 -0300
|
236
|
+
Processing by ApplicationController#throw as HTML
|
237
|
+
Rendered application/throw.html within layouts/application (0.3ms)
|
238
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
239
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:11:31 -0300
|
240
|
+
Processing by Lena::LenaController#log as */*
|
241
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
242
|
+
Rendered text template (0.0ms)
|
243
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
244
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 13:11:31 -0300
|
245
|
+
Processing by ApplicationController#log as HTML
|
246
|
+
Rendered application/log.html within layouts/application (0.3ms)
|
247
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
248
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:11:31 -0300
|
249
|
+
Processing by Lena::LenaController#log as */*
|
250
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
251
|
+
Rendered text template (0.0ms)
|
252
|
+
Completed 200 OK in 1ms (Views: 0.4ms)
|
253
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 13:11:31 -0300
|
254
|
+
Processing by ApplicationController#index as HTML
|
255
|
+
Rendered application/index.html within layouts/application (0.3ms)
|
256
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
257
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 13:12:22 -0300
|
258
|
+
Processing by ApplicationController#throw as HTML
|
259
|
+
Rendered application/throw.html within layouts/application (1.2ms)
|
260
|
+
Completed 200 OK in 38ms (Views: 37.3ms)
|
261
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 13:12:22 -0300
|
262
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:12:23 -0300
|
263
|
+
Processing by Lena::LenaController#log as */*
|
264
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
265
|
+
Rendered text template (0.0ms)
|
266
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
267
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 13:12:23 -0300
|
268
|
+
Processing by ApplicationController#log as HTML
|
269
|
+
Rendered application/log.html within layouts/application (0.3ms)
|
270
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
271
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:12:23 -0300
|
272
|
+
Processing by Lena::LenaController#log as */*
|
273
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
274
|
+
Rendered text template (0.0ms)
|
275
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
276
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 13:12:23 -0300
|
277
|
+
Processing by ApplicationController#throw_callstack as HTML
|
278
|
+
Rendered application/throw_callstack.html within layouts/application (0.3ms)
|
279
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
280
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:12:23 -0300
|
281
|
+
Processing by Lena::LenaController#log as */*
|
282
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
283
|
+
Rendered text template (0.0ms)
|
284
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
285
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 13:12:23 -0300
|
286
|
+
Processing by ApplicationController#index as HTML
|
287
|
+
Rendered application/index.html within layouts/application (0.3ms)
|
288
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
289
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 13:45:35 -0300
|
290
|
+
Processing by ApplicationController#throw as HTML
|
291
|
+
Rendered application/throw.html within layouts/application (0.8ms)
|
292
|
+
Completed 200 OK in 35ms (Views: 34.6ms)
|
293
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 13:45:35 -0300
|
294
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:45:35 -0300
|
295
|
+
Processing by Lena::LenaController#log as */*
|
296
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
297
|
+
Rendered text template (0.0ms)
|
298
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
299
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 13:45:35 -0300
|
300
|
+
Processing by ApplicationController#log as HTML
|
301
|
+
Rendered application/log.html within layouts/application (0.3ms)
|
302
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
303
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:45:35 -0300
|
304
|
+
Processing by Lena::LenaController#log as */*
|
305
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
306
|
+
Rendered text template (0.0ms)
|
307
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
308
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 13:45:35 -0300
|
309
|
+
Processing by ApplicationController#index as HTML
|
310
|
+
Rendered application/index.html within layouts/application (0.3ms)
|
311
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
312
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 13:45:35 -0300
|
313
|
+
Processing by ApplicationController#throw_callstack as HTML
|
314
|
+
Rendered application/throw_callstack.html within layouts/application (0.3ms)
|
315
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
316
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:45:35 -0300
|
317
|
+
Processing by Lena::LenaController#log as */*
|
318
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
319
|
+
Rendered text template (0.0ms)
|
320
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
321
|
+
Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-26 13:47:13 -0300
|
322
|
+
Processing by ApplicationController#throw_callstack as HTML
|
323
|
+
Rendered application/throw_callstack.html within layouts/application (0.8ms)
|
324
|
+
Completed 200 OK in 12ms (Views: 11.6ms)
|
325
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-26 13:47:13 -0300
|
326
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:47:13 -0300
|
327
|
+
Processing by Lena::LenaController#log as */*
|
328
|
+
Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
|
329
|
+
Rendered text template (0.0ms)
|
330
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
331
|
+
Started GET "/throw" for 127.0.0.1 at 2013-11-26 13:47:13 -0300
|
332
|
+
Processing by ApplicationController#throw as HTML
|
333
|
+
Rendered application/throw.html within layouts/application (0.3ms)
|
334
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
335
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:47:13 -0300
|
336
|
+
Processing by Lena::LenaController#log as */*
|
337
|
+
Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
|
338
|
+
Rendered text template (0.0ms)
|
339
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
340
|
+
Started GET "/log" for 127.0.0.1 at 2013-11-26 13:47:13 -0300
|
341
|
+
Processing by ApplicationController#log as HTML
|
342
|
+
Rendered application/log.html within layouts/application (0.3ms)
|
343
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
344
|
+
Started POST "/lena/log" for 127.0.0.1 at 2013-11-26 13:47:13 -0300
|
345
|
+
Processing by Lena::LenaController#log as */*
|
346
|
+
Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
|
347
|
+
Rendered text template (0.0ms)
|
348
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
349
|
+
Started GET "/" for 127.0.0.1 at 2013-11-26 13:47:13 -0300
|
350
|
+
Processing by ApplicationController#index as HTML
|
351
|
+
Rendered application/index.html within layouts/application (0.5ms)
|
352
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|