lena 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: af1c091763d076159eb0bf25c8a8dc5c324108fb
4
- data.tar.gz: 61316f9e5b1c8acad448fc65753c7038202546c6
3
+ metadata.gz: eb1d75a9d311064077a0c7613ec9c9eb80a48d11
4
+ data.tar.gz: 4f9744d3e003820ff7c3623d96ea55aa091849e5
5
5
  SHA512:
6
- metadata.gz: 7f6409860c8a4d0ea141264dd6a478e16d5dd3ef6ad26db77273658763fcb943a2ec53b16ccee02b4503a46210b2e987453f4c2983437c87d2c4f29404bfd18d
7
- data.tar.gz: a562b29218b58b5f36ca29f88c636842bfa57643bcc537b1bc620f3250f84e429eea364533a1a2e87137a3fd77a4a6495d27f5d69fe563a9db2d4d93ba1aae05
6
+ metadata.gz: d5f91f0d8f412492650c35aecbb4c0e984e17f6a5a1eeb076dae4ab2adac5c109903eabd9ae7da296995e60a4a8e43334ef2129be8aece4d01841d6aa3007323
7
+ data.tar.gz: 6618ac8238ea2719a117a155494dd9a624c3db4bcbff2b40ee3c8f1e18959450015515ff60437c9ce960976aa28728a445f14766b0c21a14b0a937f856857904
@@ -8,7 +8,7 @@ Settings = do ->
8
8
  attributes = (attribute for attribute in attributes when attribute)
9
9
  attributes[0]
10
10
  destination: read('data-lena-destination')
11
- submitURL: read('data-lena-url')
11
+ submitURL: read('data-lena-remote-url')
12
12
 
13
13
  # The handlers for each type of logging.
14
14
  # These take an object with the following properties:
@@ -18,10 +18,8 @@ handlers =
18
18
  remote: (data) ->
19
19
  query = for key, value of data when value
20
20
  "#{key}=#{encodeURIComponent(value)}"
21
- xhr = new XMLHttpRequest()
22
- xhr.open "post", Settings.submitURL, true
23
- xhr.setRequestHeader 'Content-type', 'application/x-www-form-urlencoded'
24
- xhr.send query.join('&')
21
+ img = new Image()
22
+ img.src = "#{Settings.submitURL}?#{query.join('&')}"
25
23
 
26
24
  local: (data) ->
27
25
  message = data.message
@@ -31,8 +29,6 @@ handlers =
31
29
  console.warn(message)
32
30
  else if console?.log
33
31
  console.log(message)
34
- else
35
- alert(message)
36
32
 
37
33
  # The main Leña handler. All user calls go through here. The final
38
34
  # data is aggregated before it is dispatched to one of the handlers.
@@ -60,6 +56,7 @@ lena.log = (message, stacktrace) ->
60
56
  switch Settings.destination
61
57
  when 'local' then destinations = ['local']
62
58
  when 'remote' then destinations = ['remote']
59
+ when 'all' then destinations = ['local', 'remote']
63
60
  else destinations = ['local', 'remote']
64
61
  lena(message, stacktrace, destinations)
65
62
 
@@ -1,7 +1,7 @@
1
1
  module Lena
2
2
  class LenaController < ActionController::Base
3
- def log
4
- Lena::Engine.config.javascript_handler.call params
3
+ def report
4
+ Lena::Engine.config.report_handler.call params
5
5
  render text: ""
6
6
  end
7
7
  end
data/config/routes.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  Lena::Engine.routes.draw do
2
- post 'log', to: 'lena#log', as: :submission
2
+ match 'report', to: 'lena#report', via: [:get, :post]
3
3
  end
data/lib/lena/engine.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'lena/rails/routing'
2
2
 
3
3
  module Lena
4
- class JavaScriptError < Exception; end
4
+ class ClientError < StandardError; end
5
5
 
6
6
  class Engine < ::Rails::Engine
7
7
  isolate_namespace Lena
@@ -9,8 +9,8 @@ module Lena
9
9
  app.config.assets.precompile += %w(lena.js)
10
10
  end
11
11
 
12
- config.javascript_handler = Proc.new do
13
- raise JavaScriptError.new
12
+ config.report_handler = Proc.new do
13
+ raise ClientError.new
14
14
  end
15
15
  end
16
16
 
data/lib/lena/routing.rb CHANGED
@@ -6,7 +6,7 @@ module Lena
6
6
  def configuration
7
7
  return {
8
8
  'data-lena-destination' => Rails.env.development? ? "local" : "",
9
- 'data-lena-url' => self.submission_path,
9
+ 'data-lena-remote-url' => self.report_path,
10
10
  }
11
11
  end
12
12
  end
data/lib/lena/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lena
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -350,3 +350,959 @@ Started GET "/" for 127.0.0.1 at 2013-11-26 13:47:13 -0300
350
350
  Processing by ApplicationController#index as HTML
351
351
  Rendered application/index.html within layouts/application (0.5ms)
352
352
  Completed 200 OK in 3ms (Views: 2.4ms)
353
+ Started GET "/" for 127.0.0.1 at 2013-11-27 23:53:30 -0300
354
+ Processing by ApplicationController#index as HTML
355
+ Rendered application/index.html within layouts/application (2.1ms)
356
+ Completed 200 OK in 353ms (Views: 352.6ms)
357
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-27 23:53:31 -0300
358
+ Started GET "/log" for 127.0.0.1 at 2013-11-27 23:53:31 -0300
359
+ Processing by ApplicationController#log as HTML
360
+ Rendered application/log.html within layouts/application (0.4ms)
361
+ Completed 200 OK in 2ms (Views: 1.8ms)
362
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-27 23:53:31 -0300
363
+ Processing by Lena::LenaController#log as */*
364
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
365
+ Rendered text template (0.0ms)
366
+ Completed 200 OK in 2ms (Views: 1.6ms)
367
+ Started GET "/throw" for 127.0.0.1 at 2013-11-27 23:53:31 -0300
368
+ Processing by ApplicationController#throw as HTML
369
+ Rendered application/throw.html within layouts/application (0.4ms)
370
+ Completed 200 OK in 2ms (Views: 1.6ms)
371
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-27 23:53:31 -0300
372
+ Processing by Lena::LenaController#log as */*
373
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
374
+ Rendered text template (0.0ms)
375
+ Completed 200 OK in 0ms (Views: 0.3ms)
376
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-27 23:53:31 -0300
377
+ Processing by ApplicationController#throw_callstack as HTML
378
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
379
+ Completed 200 OK in 2ms (Views: 1.6ms)
380
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-27 23:53:31 -0300
381
+ Processing by Lena::LenaController#log as */*
382
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
383
+ Rendered text template (0.0ms)
384
+ Completed 200 OK in 0ms (Views: 0.4ms)
385
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-27 23:53:40 -0300
386
+ Processing by ApplicationController#throw_callstack as HTML
387
+ Rendered application/throw_callstack.html within layouts/application (0.9ms)
388
+ Completed 200 OK in 198ms (Views: 197.5ms)
389
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-27 23:53:41 -0300
390
+ Started GET "/log" for 127.0.0.1 at 2013-11-27 23:53:41 -0300
391
+ Processing by ApplicationController#log as HTML
392
+ Rendered application/log.html within layouts/application (0.5ms)
393
+ Completed 200 OK in 2ms (Views: 1.9ms)
394
+ Started GET "/throw" for 127.0.0.1 at 2013-11-27 23:53:41 -0300
395
+ Processing by ApplicationController#throw as HTML
396
+ Rendered application/throw.html within layouts/application (0.3ms)
397
+ Completed 200 OK in 2ms (Views: 1.6ms)
398
+ Started GET "/" for 127.0.0.1 at 2013-11-27 23:53:41 -0300
399
+ Processing by ApplicationController#index as HTML
400
+ Rendered application/index.html within layouts/application (0.3ms)
401
+ Completed 200 OK in 2ms (Views: 2.0ms)
402
+ Started GET "/throw" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
403
+ Processing by ApplicationController#throw as HTML
404
+ Rendered application/throw.html within layouts/application (1.0ms)
405
+ Completed 200 OK in 204ms (Views: 203.3ms)
406
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
407
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
408
+ Processing by Lena::LenaController#log as */*
409
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
410
+ Rendered text template (0.0ms)
411
+ Completed 200 OK in 1ms (Views: 1.1ms)
412
+ Started GET "/log" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
413
+ Processing by ApplicationController#log as HTML
414
+ Rendered application/log.html within layouts/application (0.4ms)
415
+ Completed 200 OK in 2ms (Views: 1.9ms)
416
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
417
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
418
+ Processing by Lena::LenaController#log as */*
419
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
420
+ Rendered text template (0.0ms)
421
+ Completed 200 OK in 0ms (Views: 0.3ms)
422
+ Started GET "/" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
423
+ Processing by ApplicationController#index as HTML
424
+ Rendered application/index.html within layouts/application (0.3ms)
425
+ Completed 200 OK in 2ms (Views: 1.6ms)
426
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
427
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
428
+ Processing by ApplicationController#throw_callstack as HTML
429
+ Rendered application/throw_callstack.html within layouts/application (0.5ms)
430
+ Completed 200 OK in 2ms (Views: 2.3ms)
431
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
432
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-27 23:53:50 -0300
433
+ Processing by Lena::LenaController#log as */*
434
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
435
+ Rendered text template (0.0ms)
436
+ Completed 200 OK in 0ms (Views: 0.3ms)
437
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:16:25 -0300
438
+ Processing by ApplicationController#index as HTML
439
+ Rendered application/index.html within layouts/application (1.5ms)
440
+ Completed 200 OK in 16ms (Views: 15.8ms)
441
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:16:25 -0300
442
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:17:26 -0300
443
+ Processing by ApplicationController#index as HTML
444
+ Rendered application/index.html within layouts/application (0.8ms)
445
+ Completed 200 OK in 12ms (Views: 11.2ms)
446
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:17:26 -0300
447
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:17:58 -0300
448
+ Processing by ApplicationController#index as HTML
449
+ Rendered application/index.html within layouts/application (0.8ms)
450
+ Completed 200 OK in 12ms (Views: 11.4ms)
451
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:17:58 -0300
452
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:18:08 -0300
453
+ Processing by ApplicationController#index as HTML
454
+ Rendered application/index.html within layouts/application (0.9ms)
455
+ Completed 200 OK in 12ms (Views: 11.4ms)
456
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:18:08 -0300
457
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:18:31 -0300
458
+ Processing by ApplicationController#index as HTML
459
+ Rendered application/index.html within layouts/application (1.2ms)
460
+ Completed 200 OK in 16ms (Views: 15.2ms)
461
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:18:31 -0300
462
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:19:21 -0300
463
+ Processing by ApplicationController#log as HTML
464
+ Rendered application/log.html within layouts/application (0.9ms)
465
+ Completed 200 OK in 12ms (Views: 11.3ms)
466
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:19:21 -0300
467
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:19:21 -0300
468
+ Processing by Lena::LenaController#log as */*
469
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
470
+ Completed 500 Internal Server Error in 0ms
471
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:19:21 -0300
472
+ Processing by ApplicationController#index as HTML
473
+ Rendered application/index.html within layouts/application (0.3ms)
474
+ Completed 200 OK in 2ms (Views: 1.5ms)
475
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:19:21 -0300
476
+ Processing by ApplicationController#throw as HTML
477
+ Rendered application/throw.html within layouts/application (0.3ms)
478
+ Completed 200 OK in 2ms (Views: 1.6ms)
479
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:19:21 -0300
480
+ Processing by Lena::LenaController#log as */*
481
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
482
+ Completed 500 Internal Server Error in 0ms
483
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:19:21 -0300
484
+ Processing by ApplicationController#throw_callstack as HTML
485
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
486
+ Completed 200 OK in 2ms (Views: 1.5ms)
487
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:19:21 -0300
488
+ Processing by Lena::LenaController#log as */*
489
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
490
+ Completed 500 Internal Server Error in 0ms
491
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:19:52 -0300
492
+ Processing by ApplicationController#throw as HTML
493
+ Rendered application/throw.html within layouts/application (0.9ms)
494
+ Completed 200 OK in 12ms (Views: 11.7ms)
495
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:19:52 -0300
496
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:19:52 -0300
497
+ Processing by Lena::LenaController#log as */*
498
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
499
+ Completed 500 Internal Server Error in 0ms
500
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:19:52 -0300
501
+ Processing by ApplicationController#index as HTML
502
+ Rendered application/index.html within layouts/application (0.3ms)
503
+ Completed 200 OK in 2ms (Views: 1.7ms)
504
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:19:52 -0300
505
+ Processing by ApplicationController#log as HTML
506
+ Rendered application/log.html within layouts/application (0.3ms)
507
+ Completed 200 OK in 2ms (Views: 1.5ms)
508
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:19:52 -0300
509
+ Processing by Lena::LenaController#log as */*
510
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
511
+ Completed 500 Internal Server Error in 0ms
512
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:19:52 -0300
513
+ Processing by ApplicationController#throw_callstack as HTML
514
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
515
+ Completed 200 OK in 2ms (Views: 1.7ms)
516
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:19:52 -0300
517
+ Processing by Lena::LenaController#log as */*
518
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
519
+ Completed 500 Internal Server Error in 0ms
520
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:20:32 -0300
521
+ Processing by ApplicationController#index as HTML
522
+ Rendered application/index.html within layouts/application (0.9ms)
523
+ Completed 200 OK in 13ms (Views: 12.9ms)
524
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:20:32 -0300
525
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:20:32 -0300
526
+ Processing by ApplicationController#log as HTML
527
+ Rendered application/log.html within layouts/application (0.3ms)
528
+ Completed 200 OK in 2ms (Views: 1.5ms)
529
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:20:32 -0300
530
+ Processing by Lena::LenaController#log as */*
531
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
532
+ Rendered text template (0.0ms)
533
+ Completed 200 OK in 2ms (Views: 1.8ms)
534
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:20:32 -0300
535
+ Processing by ApplicationController#throw as HTML
536
+ Rendered application/throw.html within layouts/application (0.4ms)
537
+ Completed 200 OK in 2ms (Views: 2.2ms)
538
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:20:32 -0300
539
+ Processing by Lena::LenaController#log as */*
540
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
541
+ Rendered text template (0.0ms)
542
+ Completed 200 OK in 1ms (Views: 0.4ms)
543
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:20:32 -0300
544
+ Processing by ApplicationController#throw_callstack as HTML
545
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
546
+ Completed 200 OK in 2ms (Views: 1.4ms)
547
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:20:32 -0300
548
+ Processing by Lena::LenaController#log as */*
549
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
550
+ Rendered text template (0.0ms)
551
+ Completed 200 OK in 0ms (Views: 0.4ms)
552
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:21:29 -0300
553
+ Processing by ApplicationController#throw as HTML
554
+ Rendered application/throw.html within layouts/application (0.9ms)
555
+ Completed 200 OK in 12ms (Views: 11.5ms)
556
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:21:29 -0300
557
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:21:29 -0300
558
+ Processing by Lena::LenaController#log as */*
559
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
560
+ Rendered text template (0.0ms)
561
+ Completed 200 OK in 1ms (Views: 1.0ms)
562
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:21:29 -0300
563
+ Processing by ApplicationController#log as HTML
564
+ Rendered application/log.html within layouts/application (0.3ms)
565
+ Completed 200 OK in 2ms (Views: 1.5ms)
566
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:21:29 -0300
567
+ Processing by Lena::LenaController#log as */*
568
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
569
+ Rendered text template (0.0ms)
570
+ Completed 200 OK in 0ms (Views: 0.3ms)
571
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:21:29 -0300
572
+ Processing by ApplicationController#throw_callstack as HTML
573
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
574
+ Completed 200 OK in 2ms (Views: 1.5ms)
575
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:21:29 -0300
576
+ Processing by Lena::LenaController#log as */*
577
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
578
+ Rendered text template (0.0ms)
579
+ Completed 200 OK in 1ms (Views: 0.6ms)
580
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:21:29 -0300
581
+ Processing by ApplicationController#index as HTML
582
+ Rendered application/index.html within layouts/application (0.3ms)
583
+ Completed 200 OK in 2ms (Views: 1.6ms)
584
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:21:34 -0300
585
+ Processing by ApplicationController#throw as HTML
586
+ Rendered application/throw.html within layouts/application (0.9ms)
587
+ Completed 200 OK in 12ms (Views: 11.7ms)
588
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:21:34 -0300
589
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:21:34 -0300
590
+ Processing by Lena::LenaController#log as */*
591
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
592
+ Rendered text template (0.0ms)
593
+ Completed 200 OK in 1ms (Views: 0.9ms)
594
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:21:34 -0300
595
+ Processing by ApplicationController#index as HTML
596
+ Rendered application/index.html within layouts/application (0.3ms)
597
+ Completed 200 OK in 2ms (Views: 1.5ms)
598
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:21:34 -0300
599
+ Processing by ApplicationController#log as HTML
600
+ Rendered application/log.html within layouts/application (0.3ms)
601
+ Completed 200 OK in 2ms (Views: 1.5ms)
602
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:21:35 -0300
603
+ Processing by Lena::LenaController#log as */*
604
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
605
+ Rendered text template (0.0ms)
606
+ Completed 200 OK in 0ms (Views: 0.3ms)
607
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:21:35 -0300
608
+ Processing by ApplicationController#throw_callstack as HTML
609
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
610
+ Completed 200 OK in 2ms (Views: 1.4ms)
611
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:21:35 -0300
612
+ Processing by Lena::LenaController#log as */*
613
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
614
+ Rendered text template (0.0ms)
615
+ Completed 200 OK in 0ms (Views: 0.3ms)
616
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:21:59 -0300
617
+ Processing by ApplicationController#throw_callstack as HTML
618
+ Rendered application/throw_callstack.html within layouts/application (0.9ms)
619
+ Completed 200 OK in 13ms (Views: 12.2ms)
620
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:21:59 -0300
621
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:21:59 -0300
622
+ Processing by Lena::LenaController#log as */*
623
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
624
+ Completed 500 Internal Server Error in 0ms
625
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:21:59 -0300
626
+ Processing by ApplicationController#throw as HTML
627
+ Rendered application/throw.html within layouts/application (0.3ms)
628
+ Completed 200 OK in 2ms (Views: 1.5ms)
629
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:21:59 -0300
630
+ Processing by Lena::LenaController#log as */*
631
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
632
+ Completed 500 Internal Server Error in 0ms
633
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:21:59 -0300
634
+ Processing by ApplicationController#index as HTML
635
+ Rendered application/index.html within layouts/application (0.3ms)
636
+ Completed 200 OK in 2ms (Views: 1.6ms)
637
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:21:59 -0300
638
+ Processing by ApplicationController#log as HTML
639
+ Rendered application/log.html within layouts/application (0.3ms)
640
+ Completed 200 OK in 2ms (Views: 1.7ms)
641
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:21:59 -0300
642
+ Processing by Lena::LenaController#log as */*
643
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
644
+ Completed 500 Internal Server Error in 0ms
645
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:22:30 -0300
646
+ Processing by ApplicationController#index as HTML
647
+ Rendered application/index.html within layouts/application (0.9ms)
648
+ Completed 200 OK in 12ms (Views: 12.0ms)
649
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:22:30 -0300
650
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:22:30 -0300
651
+ Processing by ApplicationController#throw as HTML
652
+ Rendered application/throw.html within layouts/application (0.3ms)
653
+ Completed 200 OK in 2ms (Views: 1.6ms)
654
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:22:30 -0300
655
+ Processing by Lena::LenaController#log as */*
656
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
657
+ Rendered text template (0.0ms)
658
+ Completed 200 OK in 1ms (Views: 0.9ms)
659
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:22:30 -0300
660
+ Processing by ApplicationController#throw_callstack as HTML
661
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
662
+ Completed 200 OK in 2ms (Views: 1.5ms)
663
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:22:30 -0300
664
+ Processing by Lena::LenaController#log as */*
665
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
666
+ Rendered text template (0.0ms)
667
+ Completed 200 OK in 0ms (Views: 0.3ms)
668
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:22:30 -0300
669
+ Processing by ApplicationController#log as HTML
670
+ Rendered application/log.html within layouts/application (0.3ms)
671
+ Completed 200 OK in 2ms (Views: 1.8ms)
672
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:22:30 -0300
673
+ Processing by Lena::LenaController#log as */*
674
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
675
+ Rendered text template (0.0ms)
676
+ Completed 200 OK in 0ms (Views: 0.3ms)
677
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:23:52 -0300
678
+ Processing by ApplicationController#throw_callstack as HTML
679
+ Rendered application/throw_callstack.html within layouts/application (1.4ms)
680
+ Completed 200 OK in 13ms (Views: 12.5ms)
681
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:23:53 -0300
682
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:23:53 -0300
683
+ Processing by Lena::LenaController#log as */*
684
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
685
+ Rendered text template (0.0ms)
686
+ Completed 200 OK in 1ms (Views: 1.0ms)
687
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:23:53 -0300
688
+ Processing by ApplicationController#log as HTML
689
+ Rendered application/log.html within layouts/application (0.3ms)
690
+ Completed 200 OK in 2ms (Views: 1.7ms)
691
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:23:53 -0300
692
+ Processing by Lena::LenaController#log as */*
693
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
694
+ Rendered text template (0.0ms)
695
+ Completed 200 OK in 0ms (Views: 0.3ms)
696
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:23:53 -0300
697
+ Processing by ApplicationController#throw as HTML
698
+ Rendered application/throw.html within layouts/application (0.3ms)
699
+ Completed 200 OK in 2ms (Views: 1.6ms)
700
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:23:53 -0300
701
+ Processing by Lena::LenaController#log as */*
702
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
703
+ Rendered text template (0.0ms)
704
+ Completed 200 OK in 0ms (Views: 0.3ms)
705
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:23:53 -0300
706
+ Processing by ApplicationController#index as HTML
707
+ Rendered application/index.html within layouts/application (0.3ms)
708
+ Completed 200 OK in 1ms (Views: 1.4ms)
709
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:24:14 -0300
710
+ Processing by ApplicationController#throw as HTML
711
+ Rendered application/throw.html within layouts/application (0.8ms)
712
+ Completed 200 OK in 12ms (Views: 11.6ms)
713
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:24:14 -0300
714
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:24:14 -0300
715
+ Processing by Lena::LenaController#log as */*
716
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
717
+ Rendered text template (0.0ms)
718
+ Completed 200 OK in 1ms (Views: 0.8ms)
719
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:24:14 -0300
720
+ Processing by ApplicationController#index as HTML
721
+ Rendered application/index.html within layouts/application (0.3ms)
722
+ Completed 200 OK in 2ms (Views: 1.5ms)
723
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:24:14 -0300
724
+ Processing by ApplicationController#log as HTML
725
+ Rendered application/log.html within layouts/application (0.3ms)
726
+ Completed 200 OK in 2ms (Views: 1.5ms)
727
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:24:14 -0300
728
+ Processing by Lena::LenaController#log as */*
729
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
730
+ Rendered text template (0.0ms)
731
+ Completed 200 OK in 0ms (Views: 0.3ms)
732
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:24:14 -0300
733
+ Processing by ApplicationController#throw_callstack as HTML
734
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
735
+ Completed 200 OK in 2ms (Views: 1.5ms)
736
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:24:14 -0300
737
+ Processing by Lena::LenaController#log as */*
738
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
739
+ Rendered text template (0.0ms)
740
+ Completed 200 OK in 0ms (Views: 0.3ms)
741
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:24:38 -0300
742
+ Processing by ApplicationController#log as HTML
743
+ Rendered application/log.html within layouts/application (0.8ms)
744
+ Completed 200 OK in 12ms (Views: 11.4ms)
745
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:24:38 -0300
746
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:24:38 -0300
747
+ Processing by Lena::LenaController#log as */*
748
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
749
+ Rendered text template (0.0ms)
750
+ Completed 200 OK in 1ms (Views: 0.8ms)
751
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:24:38 -0300
752
+ Processing by ApplicationController#index as HTML
753
+ Rendered application/index.html within layouts/application (0.3ms)
754
+ Completed 200 OK in 2ms (Views: 1.7ms)
755
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:24:38 -0300
756
+ Processing by ApplicationController#throw as HTML
757
+ Rendered application/throw.html within layouts/application (0.3ms)
758
+ Completed 200 OK in 2ms (Views: 1.8ms)
759
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:24:38 -0300
760
+ Processing by Lena::LenaController#log as */*
761
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
762
+ Rendered text template (0.0ms)
763
+ Completed 200 OK in 0ms (Views: 0.3ms)
764
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:24:38 -0300
765
+ Processing by ApplicationController#throw_callstack as HTML
766
+ Rendered application/throw_callstack.html within layouts/application (0.4ms)
767
+ Completed 200 OK in 2ms (Views: 2.0ms)
768
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:24:38 -0300
769
+ Processing by Lena::LenaController#log as */*
770
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
771
+ Rendered text template (0.0ms)
772
+ Completed 200 OK in 0ms (Views: 0.4ms)
773
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:24:52 -0300
774
+ Processing by ApplicationController#throw as HTML
775
+ Rendered application/throw.html within layouts/application (0.8ms)
776
+ Completed 200 OK in 10ms (Views: 9.9ms)
777
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:24:52 -0300
778
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:24:52 -0300
779
+ Processing by Lena::LenaController#log as */*
780
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
781
+ Rendered text template (0.0ms)
782
+ Completed 200 OK in 1ms (Views: 0.9ms)
783
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:24:52 -0300
784
+ Processing by ApplicationController#index as HTML
785
+ Rendered application/index.html within layouts/application (0.3ms)
786
+ Completed 200 OK in 2ms (Views: 1.5ms)
787
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:24:52 -0300
788
+ Processing by ApplicationController#log as HTML
789
+ Rendered application/log.html within layouts/application (0.3ms)
790
+ Completed 200 OK in 2ms (Views: 1.5ms)
791
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:24:52 -0300
792
+ Processing by Lena::LenaController#log as */*
793
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
794
+ Rendered text template (0.0ms)
795
+ Completed 200 OK in 0ms (Views: 0.3ms)
796
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:24:52 -0300
797
+ Processing by ApplicationController#throw_callstack as HTML
798
+ Rendered application/throw_callstack.html within layouts/application (0.4ms)
799
+ Completed 200 OK in 2ms (Views: 1.9ms)
800
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:24:52 -0300
801
+ Processing by Lena::LenaController#log as */*
802
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
803
+ Rendered text template (0.0ms)
804
+ Completed 200 OK in 0ms (Views: 0.4ms)
805
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:25:01 -0300
806
+ Processing by Lena::LenaController#log as HTML
807
+ Completed 500 Internal Server Error in 0ms
808
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:25:01 -0300
809
+ Processing by ApplicationController#index as HTML
810
+ Rendered application/index.html within layouts/application (0.9ms)
811
+ Completed 200 OK in 10ms (Views: 9.7ms)
812
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:25:01 -0300
813
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:25:01 -0300
814
+ Processing by ApplicationController#log as HTML
815
+ Rendered application/log.html within layouts/application (0.3ms)
816
+ Completed 200 OK in 2ms (Views: 1.7ms)
817
+ Started GET "/lena/log?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:25:01 -0300
818
+ Processing by Lena::LenaController#log as */*
819
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
820
+ Rendered text template (0.0ms)
821
+ Completed 200 OK in 1ms (Views: 1.0ms)
822
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:25:01 -0300
823
+ Processing by ApplicationController#throw_callstack as HTML
824
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
825
+ Completed 200 OK in 2ms (Views: 1.5ms)
826
+ Started GET "/lena/log?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:25:02 -0300
827
+ Processing by Lena::LenaController#log as */*
828
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
829
+ Rendered text template (0.0ms)
830
+ Completed 200 OK in 0ms (Views: 0.4ms)
831
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:25:02 -0300
832
+ Processing by ApplicationController#throw as HTML
833
+ Rendered application/throw.html within layouts/application (0.3ms)
834
+ Completed 200 OK in 2ms (Views: 1.4ms)
835
+ Started GET "/lena/log?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:25:02 -0300
836
+ Processing by Lena::LenaController#log as */*
837
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
838
+ Rendered text template (0.0ms)
839
+ Completed 200 OK in 0ms (Views: 0.4ms)
840
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:25:37 -0300
841
+ Processing by Lena::LenaController#log as HTML
842
+ Completed 500 Internal Server Error in 0ms
843
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:25:55 -0300
844
+ Processing by Lena::LenaController#log as HTML
845
+ Completed 500 Internal Server Error in 0ms
846
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:26:20 -0300
847
+ Processing by Lena::LenaController#log as HTML
848
+ Completed 500 Internal Server Error in 0ms
849
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:26:46 -0300
850
+ Processing by Lena::LenaController#log as HTML
851
+ Completed 500 Internal Server Error in 0ms
852
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:26:59 -0300
853
+ Processing by Lena::LenaController#log as HTML
854
+ Completed 500 Internal Server Error in 0ms
855
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:28:45 -0300
856
+ Processing by Lena::LenaController#log as HTML
857
+ Completed 500 Internal Server Error in 0ms
858
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:29:06 -0300
859
+ Processing by Lena::LenaController#log as HTML
860
+ Completed 500 Internal Server Error in 0ms
861
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:29:25 -0300
862
+ Processing by Lena::LenaController#log as HTML
863
+ Completed 500 Internal Server Error in 0ms
864
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:29:50 -0300
865
+ Processing by Lena::LenaController#log as HTML
866
+ Completed 500 Internal Server Error in 0ms
867
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:30:34 -0300
868
+ Processing by Lena::LenaController#log as HTML
869
+ Completed 500 Internal Server Error in 0ms
870
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:31:17 -0300
871
+ Processing by Lena::LenaController#log as HTML
872
+ Completed 500 Internal Server Error in 0ms
873
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:34:25 -0300
874
+ Processing by Lena::LenaController#log as HTML
875
+ Completed 500 Internal Server Error in 0ms
876
+ Started GET "/lena/log" for 127.0.0.1 at 2013-11-28 08:35:22 -0300
877
+ Processing by Lena::LenaController#log as HTML
878
+ Completed 500 Internal Server Error in 0ms
879
+ Started GET "/lena/js" for 127.0.0.1 at 2013-11-28 08:52:10 -0300
880
+ Processing by Lena::LenaController#js as HTML
881
+ Completed 500 Internal Server Error in 0ms
882
+ Started GET "/lena/js" for 127.0.0.1 at 2013-11-28 08:52:47 -0300
883
+ Processing by Lena::LenaController#js as HTML
884
+ Completed 500 Internal Server Error in 0ms
885
+ Started GET "/lena/js" for 127.0.0.1 at 2013-11-28 08:52:56 -0300
886
+ Processing by Lena::LenaController#js as HTML
887
+ Completed 500 Internal Server Error in 0ms
888
+ Started GET "/lena/js" for 127.0.0.1 at 2013-11-28 08:53:04 -0300
889
+ Processing by Lena::LenaController#js as HTML
890
+ Completed 500 Internal Server Error in 0ms
891
+ Started GET "/lena/js" for 127.0.0.1 at 2013-11-28 08:53:14 -0300
892
+ Processing by Lena::LenaController#js as HTML
893
+ Completed 500 Internal Server Error in 0ms
894
+ Started GET "/lena/js" for 127.0.0.1 at 2013-11-28 08:53:33 -0300
895
+ Processing by Lena::LenaController#js as HTML
896
+ Completed 500 Internal Server Error in 0ms
897
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:53:34 -0300
898
+ Processing by ApplicationController#index as HTML
899
+ Rendered application/index.html within layouts/application (0.9ms)
900
+ Completed 200 OK in 11ms (Views: 10.6ms)
901
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:53:34 -0300
902
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:53:34 -0300
903
+ Processing by ApplicationController#throw_callstack as HTML
904
+ Rendered application/throw_callstack.html within layouts/application (0.4ms)
905
+ Completed 200 OK in 2ms (Views: 1.8ms)
906
+ Started GET "/undefined?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:53:34 -0300
907
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:53:34 -0300
908
+ Processing by ApplicationController#throw as HTML
909
+ Rendered application/throw.html within layouts/application (0.3ms)
910
+ Completed 200 OK in 2ms (Views: 1.5ms)
911
+ Started GET "/undefined?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:53:34 -0300
912
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:53:34 -0300
913
+ Processing by ApplicationController#log as HTML
914
+ Rendered application/log.html within layouts/application (0.3ms)
915
+ Completed 200 OK in 2ms (Views: 1.7ms)
916
+ Started GET "/undefined?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:53:34 -0300
917
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:54:02 -0300
918
+ Processing by ApplicationController#throw as HTML
919
+ Rendered application/throw.html within layouts/application (0.8ms)
920
+ Completed 200 OK in 290ms (Views: 289.3ms)
921
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:54:03 -0300
922
+ Started GET "/lena/js?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:54:03 -0300
923
+ Processing by Lena::LenaController#js as */*
924
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
925
+ Rendered text template (0.0ms)
926
+ Completed 200 OK in 1ms (Views: 1.1ms)
927
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:54:03 -0300
928
+ Processing by ApplicationController#log as HTML
929
+ Rendered application/log.html within layouts/application (0.4ms)
930
+ Completed 200 OK in 2ms (Views: 1.8ms)
931
+ Started GET "/lena/js?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:54:03 -0300
932
+ Processing by Lena::LenaController#js as */*
933
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
934
+ Rendered text template (0.0ms)
935
+ Completed 200 OK in 0ms (Views: 0.3ms)
936
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:54:03 -0300
937
+ Processing by ApplicationController#index as HTML
938
+ Rendered application/index.html within layouts/application (0.3ms)
939
+ Completed 200 OK in 2ms (Views: 1.5ms)
940
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:54:03 -0300
941
+ Processing by ApplicationController#throw_callstack as HTML
942
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
943
+ Completed 200 OK in 2ms (Views: 1.6ms)
944
+ Started GET "/lena/js?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:54:03 -0300
945
+ Processing by Lena::LenaController#js as */*
946
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
947
+ Rendered text template (0.0ms)
948
+ Completed 200 OK in 0ms (Views: 0.3ms)
949
+ Started GET "/lena/js" for 127.0.0.1 at 2013-11-28 08:54:03 -0300
950
+ Processing by Lena::LenaController#js as HTML
951
+ Completed 500 Internal Server Error in 0ms
952
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:54:18 -0300
953
+ Processing by ApplicationController#log as HTML
954
+ Rendered application/log.html within layouts/application (0.9ms)
955
+ Completed 200 OK in 13ms (Views: 12.6ms)
956
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:54:18 -0300
957
+ Started GET "/lena/js?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:54:18 -0300
958
+ Processing by Lena::LenaController#js as */*
959
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
960
+ Rendered text template (0.0ms)
961
+ Completed 200 OK in 1ms (Views: 1.0ms)
962
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:54:18 -0300
963
+ Processing by ApplicationController#throw_callstack as HTML
964
+ Rendered application/throw_callstack.html within layouts/application (0.4ms)
965
+ Completed 200 OK in 2ms (Views: 1.8ms)
966
+ Started GET "/lena/js?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:54:18 -0300
967
+ Processing by Lena::LenaController#js as */*
968
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
969
+ Rendered text template (0.0ms)
970
+ Completed 200 OK in 1ms (Views: 0.3ms)
971
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:54:18 -0300
972
+ Processing by ApplicationController#throw as HTML
973
+ Rendered application/throw.html within layouts/application (0.4ms)
974
+ Completed 200 OK in 2ms (Views: 1.8ms)
975
+ Started GET "/lena/js?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:54:18 -0300
976
+ Processing by Lena::LenaController#js as */*
977
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
978
+ Rendered text template (0.0ms)
979
+ Completed 200 OK in 1ms (Views: 0.5ms)
980
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:54:18 -0300
981
+ Processing by ApplicationController#index as HTML
982
+ Rendered application/index.html within layouts/application (0.4ms)
983
+ Completed 200 OK in 2ms (Views: 1.8ms)
984
+ Started GET "/lena/js" for 127.0.0.1 at 2013-11-28 08:54:18 -0300
985
+ Processing by Lena::LenaController#js as HTML
986
+ Completed 500 Internal Server Error in 0ms
987
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:56:51 -0300
988
+ Processing by ApplicationController#index as HTML
989
+ Rendered application/index.html within layouts/application (0.8ms)
990
+ Completed 200 OK in 12ms (Views: 11.5ms)
991
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:56:51 -0300
992
+ Started GET "/lena/js" for 127.0.0.1 at 2013-11-28 08:57:07 -0300
993
+ Processing by Lena::LenaController#js as HTML
994
+ Completed 500 Internal Server Error in 0ms
995
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:57:08 -0300
996
+ Processing by ApplicationController#throw_callstack as HTML
997
+ Rendered application/throw_callstack.html within layouts/application (0.9ms)
998
+ Completed 200 OK in 10ms (Views: 9.8ms)
999
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:57:08 -0300
1000
+ Started GET "/lena/js?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:57:08 -0300
1001
+ Processing by Lena::LenaController#js as */*
1002
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
1003
+ Rendered text template (0.0ms)
1004
+ Completed 200 OK in 1ms (Views: 1.0ms)
1005
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:57:08 -0300
1006
+ Processing by ApplicationController#throw as HTML
1007
+ Rendered application/throw.html within layouts/application (0.3ms)
1008
+ Completed 200 OK in 2ms (Views: 1.5ms)
1009
+ Started GET "/lena/js?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:57:08 -0300
1010
+ Processing by Lena::LenaController#js as */*
1011
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
1012
+ Rendered text template (0.0ms)
1013
+ Completed 200 OK in 0ms (Views: 0.4ms)
1014
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:57:08 -0300
1015
+ Processing by ApplicationController#log as HTML
1016
+ Rendered application/log.html within layouts/application (0.3ms)
1017
+ Completed 200 OK in 2ms (Views: 1.5ms)
1018
+ Started GET "/lena/js?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:57:09 -0300
1019
+ Processing by Lena::LenaController#js as */*
1020
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
1021
+ Rendered text template (0.0ms)
1022
+ Completed 200 OK in 0ms (Views: 0.3ms)
1023
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:57:09 -0300
1024
+ Processing by ApplicationController#index as HTML
1025
+ Rendered application/index.html within layouts/application (0.3ms)
1026
+ Completed 200 OK in 2ms (Views: 1.5ms)
1027
+ Started GET "/lena/js" for 127.0.0.1 at 2013-11-28 08:59:23 -0300
1028
+ Processing by Lena::LenaController#js as HTML
1029
+ Completed 500 Internal Server Error in 0ms
1030
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 08:59:24 -0300
1031
+ Processing by ApplicationController#throw_callstack as HTML
1032
+ Rendered application/throw_callstack.html within layouts/application (1.0ms)
1033
+ Completed 200 OK in 12ms (Views: 11.6ms)
1034
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 08:59:24 -0300
1035
+ Started GET "/lena/js?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:59:24 -0300
1036
+ Processing by Lena::LenaController#js as */*
1037
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
1038
+ Rendered text template (0.0ms)
1039
+ Completed 200 OK in 1ms (Views: 1.1ms)
1040
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 08:59:24 -0300
1041
+ Processing by ApplicationController#log as HTML
1042
+ Rendered application/log.html within layouts/application (0.3ms)
1043
+ Completed 200 OK in 2ms (Views: 1.5ms)
1044
+ Started GET "/lena/js?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 08:59:24 -0300
1045
+ Processing by Lena::LenaController#js as */*
1046
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
1047
+ Rendered text template (0.0ms)
1048
+ Completed 200 OK in 0ms (Views: 0.3ms)
1049
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 08:59:24 -0300
1050
+ Processing by ApplicationController#throw as HTML
1051
+ Rendered application/throw.html within layouts/application (0.3ms)
1052
+ Completed 200 OK in 2ms (Views: 1.5ms)
1053
+ Started GET "/lena/js?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 08:59:24 -0300
1054
+ Processing by Lena::LenaController#js as */*
1055
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
1056
+ Rendered text template (0.0ms)
1057
+ Completed 200 OK in 1ms (Views: 0.5ms)
1058
+ Started GET "/" for 127.0.0.1 at 2013-11-28 08:59:24 -0300
1059
+ Processing by ApplicationController#index as HTML
1060
+ Rendered application/index.html within layouts/application (0.3ms)
1061
+ Completed 200 OK in 2ms (Views: 1.6ms)
1062
+ Started GET "/lena/report" for 127.0.0.1 at 2013-11-28 15:08:35 -0300
1063
+ Processing by Lena::LenaController#report as HTML
1064
+ Completed 500 Internal Server Error in 0ms
1065
+ Started GET "/" for 127.0.0.1 at 2013-11-28 15:08:36 -0300
1066
+ Processing by ApplicationController#index as HTML
1067
+ Rendered application/index.html within layouts/application (1.4ms)
1068
+ Completed 200 OK in 313ms (Views: 312.2ms)
1069
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 15:08:36 -0300
1070
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 15:08:36 -0300
1071
+ Processing by ApplicationController#throw_callstack as HTML
1072
+ Rendered application/throw_callstack.html within layouts/application (0.5ms)
1073
+ Completed 200 OK in 2ms (Views: 2.1ms)
1074
+ Started GET "/lena/report?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:08:36 -0300
1075
+ Processing by Lena::LenaController#report as */*
1076
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
1077
+ Rendered text template (0.1ms)
1078
+ Completed 200 OK in 11ms (Views: 11.3ms)
1079
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 15:08:37 -0300
1080
+ Processing by ApplicationController#throw as HTML
1081
+ Rendered application/throw.html within layouts/application (0.3ms)
1082
+ Completed 200 OK in 2ms (Views: 1.6ms)
1083
+ Started GET "/lena/report?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:08:37 -0300
1084
+ Processing by Lena::LenaController#report as */*
1085
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
1086
+ Rendered text template (0.0ms)
1087
+ Completed 200 OK in 0ms (Views: 0.3ms)
1088
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 15:08:37 -0300
1089
+ Processing by ApplicationController#log as HTML
1090
+ Rendered application/log.html within layouts/application (0.3ms)
1091
+ Completed 200 OK in 2ms (Views: 1.7ms)
1092
+ Started GET "/lena/report?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 15:08:37 -0300
1093
+ Processing by Lena::LenaController#report as */*
1094
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
1095
+ Rendered text template (0.0ms)
1096
+ Completed 200 OK in 1ms (Views: 0.6ms)
1097
+ Started GET "/lena/report" for 127.0.0.1 at 2013-11-28 15:11:07 -0300
1098
+ Processing by Lena::LenaController#report as HTML
1099
+ Completed 500 Internal Server Error in 0ms
1100
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 15:11:08 -0300
1101
+ Processing by ApplicationController#throw_callstack as HTML
1102
+ Rendered application/throw_callstack.html within layouts/application (1.0ms)
1103
+ Completed 200 OK in 11ms (Views: 10.5ms)
1104
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 15:11:08 -0300
1105
+ Started GET "/lena/report?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:11:08 -0300
1106
+ Processing by Lena::LenaController#report as */*
1107
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
1108
+ Rendered text template (0.0ms)
1109
+ Completed 200 OK in 1ms (Views: 1.3ms)
1110
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 15:11:08 -0300
1111
+ Processing by ApplicationController#throw as HTML
1112
+ Rendered application/throw.html within layouts/application (0.4ms)
1113
+ Completed 200 OK in 2ms (Views: 1.7ms)
1114
+ Started GET "/lena/report?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:11:08 -0300
1115
+ Processing by Lena::LenaController#report as */*
1116
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
1117
+ Rendered text template (0.0ms)
1118
+ Completed 200 OK in 0ms (Views: 0.3ms)
1119
+ Started GET "/" for 127.0.0.1 at 2013-11-28 15:11:08 -0300
1120
+ Processing by ApplicationController#index as HTML
1121
+ Rendered application/index.html within layouts/application (0.3ms)
1122
+ Completed 200 OK in 2ms (Views: 1.7ms)
1123
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 15:11:08 -0300
1124
+ Processing by ApplicationController#log as HTML
1125
+ Rendered application/log.html within layouts/application (0.4ms)
1126
+ Completed 200 OK in 2ms (Views: 1.9ms)
1127
+ Started GET "/lena/report?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 15:11:08 -0300
1128
+ Processing by Lena::LenaController#report as */*
1129
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
1130
+ Rendered text template (0.0ms)
1131
+ Completed 200 OK in 0ms (Views: 0.4ms)
1132
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 15:17:57 -0300
1133
+ Processing by ApplicationController#throw_callstack as HTML
1134
+ Rendered application/throw_callstack.html within layouts/application (0.8ms)
1135
+ Completed 200 OK in 203ms (Views: 203.0ms)
1136
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 15:17:57 -0300
1137
+ Started GET "/lena/report?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:17:57 -0300
1138
+ Processing by Lena::LenaController#report as */*
1139
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
1140
+ Rendered text template (0.0ms)
1141
+ Completed 200 OK in 1ms (Views: 1.2ms)
1142
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 15:17:57 -0300
1143
+ Processing by ApplicationController#log as HTML
1144
+ Rendered application/log.html within layouts/application (0.5ms)
1145
+ Completed 200 OK in 2ms (Views: 1.9ms)
1146
+ Started GET "/lena/report?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 15:17:57 -0300
1147
+ Processing by Lena::LenaController#report as */*
1148
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
1149
+ Rendered text template (0.0ms)
1150
+ Completed 200 OK in 0ms (Views: 0.3ms)
1151
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 15:17:57 -0300
1152
+ Processing by ApplicationController#throw as HTML
1153
+ Rendered application/throw.html within layouts/application (0.4ms)
1154
+ Completed 200 OK in 2ms (Views: 1.7ms)
1155
+ Started GET "/lena/report?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:17:57 -0300
1156
+ Processing by Lena::LenaController#report as */*
1157
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
1158
+ Rendered text template (0.0ms)
1159
+ Completed 200 OK in 1ms (Views: 0.4ms)
1160
+ Started GET "/" for 127.0.0.1 at 2013-11-28 15:17:57 -0300
1161
+ Processing by ApplicationController#index as HTML
1162
+ Rendered application/index.html within layouts/application (0.3ms)
1163
+ Completed 200 OK in 2ms (Views: 1.8ms)
1164
+ Started GET "/lena/report" for 127.0.0.1 at 2013-11-28 15:17:57 -0300
1165
+ Processing by Lena::LenaController#report as HTML
1166
+ Completed 500 Internal Server Error in 0ms
1167
+ Started GET "/lena/report" for 127.0.0.1 at 2013-11-28 15:19:24 -0300
1168
+ Processing by Lena::LenaController#report as HTML
1169
+ Completed 500 Internal Server Error in 0ms
1170
+ Started GET "/" for 127.0.0.1 at 2013-11-28 15:19:25 -0300
1171
+ Processing by ApplicationController#index as HTML
1172
+ Rendered application/index.html within layouts/application (0.9ms)
1173
+ Completed 200 OK in 206ms (Views: 205.6ms)
1174
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 15:19:25 -0300
1175
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 15:19:25 -0300
1176
+ Processing by ApplicationController#throw as HTML
1177
+ Rendered application/throw.html within layouts/application (0.7ms)
1178
+ Completed 200 OK in 3ms (Views: 2.4ms)
1179
+ Started GET "/lena/report?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:19:25 -0300
1180
+ Processing by Lena::LenaController#report as */*
1181
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
1182
+ Rendered text template (0.0ms)
1183
+ Completed 200 OK in 1ms (Views: 1.1ms)
1184
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 15:19:25 -0300
1185
+ Processing by ApplicationController#log as HTML
1186
+ Rendered application/log.html within layouts/application (0.4ms)
1187
+ Completed 200 OK in 2ms (Views: 2.2ms)
1188
+ Started GET "/lena/report?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 15:19:25 -0300
1189
+ Processing by Lena::LenaController#report as */*
1190
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
1191
+ Rendered text template (0.0ms)
1192
+ Completed 200 OK in 1ms (Views: 0.4ms)
1193
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 15:19:26 -0300
1194
+ Processing by ApplicationController#throw_callstack as HTML
1195
+ Rendered application/throw_callstack.html within layouts/application (0.4ms)
1196
+ Completed 200 OK in 2ms (Views: 1.9ms)
1197
+ Started GET "/lena/report?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:19:26 -0300
1198
+ Processing by Lena::LenaController#report as */*
1199
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
1200
+ Rendered text template (0.0ms)
1201
+ Completed 200 OK in 1ms (Views: 0.4ms)
1202
+ Started GET "/lena/report" for 127.0.0.1 at 2013-11-28 15:19:41 -0300
1203
+ Processing by Lena::LenaController#report as HTML
1204
+ Completed 500 Internal Server Error in 0ms
1205
+ Started GET "/" for 127.0.0.1 at 2013-11-28 15:19:41 -0300
1206
+ Processing by ApplicationController#index as HTML
1207
+ Rendered application/index.html within layouts/application (1.1ms)
1208
+ Completed 200 OK in 11ms (Views: 10.7ms)
1209
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 15:19:41 -0300
1210
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 15:19:41 -0300
1211
+ Processing by ApplicationController#throw as HTML
1212
+ Rendered application/throw.html within layouts/application (0.3ms)
1213
+ Completed 200 OK in 2ms (Views: 1.4ms)
1214
+ Started GET "/lena/report?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:19:41 -0300
1215
+ Processing by Lena::LenaController#report as */*
1216
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
1217
+ Rendered text template (0.0ms)
1218
+ Completed 200 OK in 1ms (Views: 1.0ms)
1219
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 15:19:41 -0300
1220
+ Processing by ApplicationController#log as HTML
1221
+ Rendered application/log.html within layouts/application (0.3ms)
1222
+ Completed 200 OK in 2ms (Views: 1.6ms)
1223
+ Started GET "/lena/report?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 15:19:42 -0300
1224
+ Processing by Lena::LenaController#report as */*
1225
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
1226
+ Rendered text template (0.0ms)
1227
+ Completed 200 OK in 0ms (Views: 0.3ms)
1228
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 15:19:42 -0300
1229
+ Processing by ApplicationController#throw_callstack as HTML
1230
+ Rendered application/throw_callstack.html within layouts/application (0.4ms)
1231
+ Completed 200 OK in 2ms (Views: 2.0ms)
1232
+ Started GET "/lena/report?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:19:42 -0300
1233
+ Processing by Lena::LenaController#report as */*
1234
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
1235
+ Rendered text template (0.0ms)
1236
+ Completed 200 OK in 0ms (Views: 0.3ms)
1237
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1238
+ Processing by ApplicationController#throw_callstack as HTML
1239
+ Rendered application/throw_callstack.html within layouts/application (0.8ms)
1240
+ Completed 200 OK in 199ms (Views: 198.7ms)
1241
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1242
+ Started GET "/lena/report?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1243
+ Processing by Lena::LenaController#report as */*
1244
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
1245
+ Rendered text template (0.0ms)
1246
+ Completed 200 OK in 1ms (Views: 1.1ms)
1247
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1248
+ Processing by ApplicationController#log as HTML
1249
+ Rendered application/log.html within layouts/application (0.4ms)
1250
+ Completed 200 OK in 2ms (Views: 1.7ms)
1251
+ Started GET "/lena/report?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1252
+ Processing by Lena::LenaController#report as */*
1253
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
1254
+ Rendered text template (0.0ms)
1255
+ Completed 200 OK in 0ms (Views: 0.3ms)
1256
+ Started GET "/" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1257
+ Processing by ApplicationController#index as HTML
1258
+ Rendered application/index.html within layouts/application (0.3ms)
1259
+ Completed 200 OK in 2ms (Views: 1.5ms)
1260
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1261
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1262
+ Processing by ApplicationController#throw as HTML
1263
+ Rendered application/throw.html within layouts/application (0.5ms)
1264
+ Completed 200 OK in 2ms (Views: 1.9ms)
1265
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1266
+ Started GET "/lena/report?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1267
+ Processing by Lena::LenaController#report as */*
1268
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
1269
+ Rendered text template (0.0ms)
1270
+ Completed 200 OK in 1ms (Views: 0.4ms)
1271
+ Started GET "/lena/report" for 127.0.0.1 at 2013-11-28 15:24:47 -0300
1272
+ Processing by Lena::LenaController#report as HTML
1273
+ Completed 500 Internal Server Error in 0ms
1274
+ Started GET "/lena/report" for 127.0.0.1 at 2013-11-28 15:25:35 -0300
1275
+ Processing by Lena::LenaController#report as HTML
1276
+ Completed 500 Internal Server Error in 0ms
1277
+ Started GET "/throw" for 127.0.0.1 at 2013-11-28 15:25:35 -0300
1278
+ Processing by ApplicationController#throw as HTML
1279
+ Rendered application/throw.html within layouts/application (0.8ms)
1280
+ Completed 200 OK in 203ms (Views: 202.2ms)
1281
+ Started GET "/assets/application.js" for 127.0.0.1 at 2013-11-28 15:25:36 -0300
1282
+ Started GET "/lena/report?message=Error%3A%20Simple%20error%20throw%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:25:36 -0300
1283
+ Processing by Lena::LenaController#report as */*
1284
+ Parameters: {"message"=>"Error: Simple error throw\nResource: undefined:0"}
1285
+ Rendered text template (0.0ms)
1286
+ Completed 200 OK in 1ms (Views: 1.3ms)
1287
+ Started GET "/log" for 127.0.0.1 at 2013-11-28 15:25:36 -0300
1288
+ Processing by ApplicationController#log as HTML
1289
+ Rendered application/log.html within layouts/application (0.4ms)
1290
+ Completed 200 OK in 2ms (Views: 1.9ms)
1291
+ Started GET "/lena/report?message=Simple%20error%20log&stacktrace=unsupported" for 127.0.0.1 at 2013-11-28 15:25:36 -0300
1292
+ Processing by Lena::LenaController#report as */*
1293
+ Parameters: {"message"=>"Simple error log", "stacktrace"=>"unsupported"}
1294
+ Rendered text template (0.0ms)
1295
+ Completed 200 OK in 1ms (Views: 0.4ms)
1296
+ Started GET "/" for 127.0.0.1 at 2013-11-28 15:25:36 -0300
1297
+ Processing by ApplicationController#index as HTML
1298
+ Rendered application/index.html within layouts/application (0.3ms)
1299
+ Completed 200 OK in 2ms (Views: 1.6ms)
1300
+ Started GET "/throw_callstack" for 127.0.0.1 at 2013-11-28 15:25:36 -0300
1301
+ Processing by ApplicationController#throw_callstack as HTML
1302
+ Rendered application/throw_callstack.html within layouts/application (0.3ms)
1303
+ Completed 200 OK in 2ms (Views: 1.5ms)
1304
+ Started GET "/lena/report?message=ReferenceError%3A%20Can't%20find%20variable%3A%20undefinedFunctionCall%0AResource%3A%20undefined%3A0" for 127.0.0.1 at 2013-11-28 15:25:36 -0300
1305
+ Processing by Lena::LenaController#report as */*
1306
+ Parameters: {"message"=>"ReferenceError: Can't find variable: undefinedFunctionCall\nResource: undefined:0"}
1307
+ Rendered text template (0.0ms)
1308
+ Completed 200 OK in 0ms (Views: 0.3ms)