error-locator 0.0.3 → 0.0.4
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.
- data/MIT-LICENSE +1 -1
- data/README.rdoc +14 -1
- data/lib/error-locator.rb +4 -2
- data/lib/error-locator/templates/rescues/diagnostics.erb +1 -2
- data/lib/error-locator/version.rb +1 -1
- data/test/dummy/app/controllers/home_controller.rb +1 -0
- data/test/dummy/config/application.rb +4 -1
- data/test/dummy/config/environments/development.rb +1 -1
- data/test/dummy/log/development.log +838 -0
- data/test/dummy/tmp/cache/assets/C57/2E0/sprockets%2F26936c172e28d44af4061985d336a448 +9467 -0
- data/test/dummy/tmp/cache/assets/CFF/F70/sprockets%2Fa259f2292c44a14d838df3b02f05b01f +9446 -0
- metadata +6 -8
- data/test/dummy/config/database.yml +0 -25
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
data/MIT-LICENSE
CHANGED
data/README.rdoc
CHANGED
@@ -1,3 +1,16 @@
|
|
1
1
|
= ErrorLocator
|
2
2
|
|
3
|
-
|
3
|
+
Open erroneous code in your favorite editor by clicking exception call stack in browser. Gem for Ruby on Rails.
|
4
|
+
|
5
|
+
Usage:
|
6
|
+
1. setup $EDITOR variable. For example:
|
7
|
+
#.bash_login
|
8
|
+
export EDITOR=geany
|
9
|
+
2. Add "gem 'error-locator', :group => :development" to your Gemfile
|
10
|
+
3. Add "post '/error-locator' => ErrorLocator if Rails.env.development?" to your routes
|
11
|
+
4. bundle install
|
12
|
+
5. rails s
|
13
|
+
6. Open browser, when found error click on the line with error.
|
14
|
+
Currently supported: Application and Full Traces.
|
15
|
+
Currently supported editors: Sublime Text 2, Geany.
|
16
|
+
Editor must open file with line number: 'dir/filename.rb:75'
|
data/lib/error-locator.rb
CHANGED
@@ -3,8 +3,10 @@ module ErrorLocator
|
|
3
3
|
req = Rack::Request.new(env)
|
4
4
|
line = req.params['line']
|
5
5
|
filename = line[/[^:]+[:]\d+/]
|
6
|
-
|
7
|
-
|
6
|
+
if !filename.blank?
|
7
|
+
f = File.expand_path(filename)
|
8
|
+
`$EDITOR "#{f}"` if File.exists?(f)
|
9
|
+
end
|
8
10
|
[200, {}, [] ]
|
9
11
|
end
|
10
12
|
end
|
@@ -4,7 +4,6 @@
|
|
4
4
|
in <%=h @request.parameters['controller'].camelize %>Controller<% if @request.parameters['action'] %>#<%=h @request.parameters['action'] %><% end %>
|
5
5
|
<% end %>
|
6
6
|
</h1>
|
7
|
-
<pre><%=h @exception.message %></pre>
|
8
|
-
|
7
|
+
<pre><code><%=h @exception.message %></pre></code>
|
9
8
|
<%= render :template => "rescues/_trace" %>
|
10
9
|
<%= render :template => "rescues/_request_and_response" %>
|
@@ -14,7 +14,7 @@ Dummy::Application.configure do
|
|
14
14
|
config.action_controller.perform_caching = false
|
15
15
|
|
16
16
|
# Don't care if the mailer can't send
|
17
|
-
config.action_mailer.raise_delivery_errors = false
|
17
|
+
#config.action_mailer.raise_delivery_errors = false
|
18
18
|
|
19
19
|
# Print deprecation notices to the Rails logger
|
20
20
|
config.active_support.deprecation = :log
|
@@ -1374,3 +1374,841 @@ Served asset /jquery.js - 304 Not Modified (0ms)
|
|
1374
1374
|
|
1375
1375
|
|
1376
1376
|
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 17:10:07 +0200
|
1377
|
+
|
1378
|
+
|
1379
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:11:25 +0200
|
1380
|
+
|
1381
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1382
|
+
|
1383
|
+
|
1384
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.7ms)
|
1385
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (2.5ms)
|
1386
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.5ms)
|
1387
|
+
|
1388
|
+
|
1389
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:11:25 +0200
|
1390
|
+
|
1391
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1392
|
+
|
1393
|
+
|
1394
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.0ms)
|
1395
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.8ms)
|
1396
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.2ms)
|
1397
|
+
|
1398
|
+
|
1399
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:12:42 +0200
|
1400
|
+
|
1401
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1402
|
+
|
1403
|
+
|
1404
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.0ms)
|
1405
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (30.4ms)
|
1406
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (38.0ms)
|
1407
|
+
|
1408
|
+
|
1409
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:12:42 +0200
|
1410
|
+
|
1411
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1412
|
+
|
1413
|
+
|
1414
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.7ms)
|
1415
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1416
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.3ms)
|
1417
|
+
|
1418
|
+
|
1419
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:12:47 +0200
|
1420
|
+
|
1421
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1422
|
+
|
1423
|
+
|
1424
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.8ms)
|
1425
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1426
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
|
1427
|
+
|
1428
|
+
|
1429
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:12:47 +0200
|
1430
|
+
|
1431
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1432
|
+
|
1433
|
+
|
1434
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.7ms)
|
1435
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1436
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.6ms)
|
1437
|
+
|
1438
|
+
|
1439
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:12:48 +0200
|
1440
|
+
|
1441
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1442
|
+
|
1443
|
+
|
1444
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.8ms)
|
1445
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.7ms)
|
1446
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
|
1447
|
+
|
1448
|
+
|
1449
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:12:48 +0200
|
1450
|
+
|
1451
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1452
|
+
|
1453
|
+
|
1454
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1455
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1456
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.6ms)
|
1457
|
+
|
1458
|
+
|
1459
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:12:48 +0200
|
1460
|
+
|
1461
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1462
|
+
|
1463
|
+
|
1464
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.9ms)
|
1465
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1466
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
1467
|
+
|
1468
|
+
|
1469
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:12:48 +0200
|
1470
|
+
|
1471
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1472
|
+
|
1473
|
+
|
1474
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.0ms)
|
1475
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.8ms)
|
1476
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
|
1477
|
+
|
1478
|
+
|
1479
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:12:56 +0200
|
1480
|
+
|
1481
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1482
|
+
|
1483
|
+
|
1484
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.9ms)
|
1485
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1486
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1487
|
+
|
1488
|
+
|
1489
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:12:56 +0200
|
1490
|
+
|
1491
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1492
|
+
|
1493
|
+
|
1494
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.9ms)
|
1495
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.8ms)
|
1496
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
|
1497
|
+
|
1498
|
+
|
1499
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:13:54 +0200
|
1500
|
+
|
1501
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1502
|
+
|
1503
|
+
|
1504
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.6ms)
|
1505
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (2.1ms)
|
1506
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
|
1507
|
+
|
1508
|
+
|
1509
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:13:55 +0200
|
1510
|
+
|
1511
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1512
|
+
|
1513
|
+
|
1514
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.7ms)
|
1515
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1516
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1517
|
+
|
1518
|
+
|
1519
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:13:57 +0200
|
1520
|
+
|
1521
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1522
|
+
|
1523
|
+
|
1524
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.6ms)
|
1525
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1526
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (6.7ms)
|
1527
|
+
|
1528
|
+
|
1529
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:13:57 +0200
|
1530
|
+
|
1531
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1532
|
+
|
1533
|
+
|
1534
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.8ms)
|
1535
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1536
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.0ms)
|
1537
|
+
|
1538
|
+
|
1539
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:13:58 +0200
|
1540
|
+
|
1541
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1542
|
+
|
1543
|
+
|
1544
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (31.7ms)
|
1545
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1546
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (36.3ms)
|
1547
|
+
|
1548
|
+
|
1549
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:13:58 +0200
|
1550
|
+
|
1551
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1552
|
+
|
1553
|
+
|
1554
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.7ms)
|
1555
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1556
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
1557
|
+
|
1558
|
+
|
1559
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:13:59 +0200
|
1560
|
+
|
1561
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1562
|
+
|
1563
|
+
|
1564
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.8ms)
|
1565
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1566
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.4ms)
|
1567
|
+
|
1568
|
+
|
1569
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:13:59 +0200
|
1570
|
+
|
1571
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1572
|
+
|
1573
|
+
|
1574
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.7ms)
|
1575
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1576
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.1ms)
|
1577
|
+
|
1578
|
+
|
1579
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:13:59 +0200
|
1580
|
+
|
1581
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1582
|
+
|
1583
|
+
|
1584
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.9ms)
|
1585
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1586
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
|
1587
|
+
|
1588
|
+
|
1589
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:13:59 +0200
|
1590
|
+
|
1591
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1592
|
+
|
1593
|
+
|
1594
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (31.3ms)
|
1595
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1596
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (36.6ms)
|
1597
|
+
|
1598
|
+
|
1599
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:13:59 +0200
|
1600
|
+
|
1601
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1602
|
+
|
1603
|
+
|
1604
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.9ms)
|
1605
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1606
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
|
1607
|
+
|
1608
|
+
|
1609
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:13:59 +0200
|
1610
|
+
|
1611
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1612
|
+
|
1613
|
+
|
1614
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.8ms)
|
1615
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1616
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
|
1617
|
+
|
1618
|
+
|
1619
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:14:00 +0200
|
1620
|
+
|
1621
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1622
|
+
|
1623
|
+
|
1624
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.9ms)
|
1625
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1626
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
|
1627
|
+
|
1628
|
+
|
1629
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:14:00 +0200
|
1630
|
+
|
1631
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1632
|
+
|
1633
|
+
|
1634
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.0ms)
|
1635
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (2.7ms)
|
1636
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
|
1637
|
+
|
1638
|
+
|
1639
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:15:35 +0200
|
1640
|
+
|
1641
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1642
|
+
|
1643
|
+
|
1644
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.6ms)
|
1645
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (34.3ms)
|
1646
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (41.2ms)
|
1647
|
+
|
1648
|
+
|
1649
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:15:35 +0200
|
1650
|
+
|
1651
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
1652
|
+
|
1653
|
+
|
1654
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.7ms)
|
1655
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1656
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.0ms)
|
1657
|
+
|
1658
|
+
|
1659
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:18:16 +0200
|
1660
|
+
Processing by HomeController#index as HTML
|
1661
|
+
Completed 500 Internal Server Error in 1ms
|
1662
|
+
|
1663
|
+
RuntimeError (sample error):
|
1664
|
+
app/controllers/home_controller.rb:5:in `index'
|
1665
|
+
|
1666
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
1667
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1668
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.5ms)
|
1669
|
+
|
1670
|
+
|
1671
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:18:16 +0200
|
1672
|
+
Compiled jquery.js (40ms) (pid 6946)
|
1673
|
+
Served asset /jquery.js - 200 OK (51ms)
|
1674
|
+
|
1675
|
+
|
1676
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:18:42 +0200
|
1677
|
+
Processing by HomeController#index as HTML
|
1678
|
+
Completed 500 Internal Server Error in 1ms
|
1679
|
+
|
1680
|
+
RuntimeError (sample error):
|
1681
|
+
app/controllers/home_controller.rb:5:in `index'
|
1682
|
+
|
1683
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
1684
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1685
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.6ms)
|
1686
|
+
|
1687
|
+
|
1688
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:18:43 +0200
|
1689
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
1690
|
+
|
1691
|
+
|
1692
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:18:44 +0200
|
1693
|
+
Processing by HomeController#index as HTML
|
1694
|
+
Completed 500 Internal Server Error in 1ms
|
1695
|
+
|
1696
|
+
RuntimeError (sample error):
|
1697
|
+
app/controllers/home_controller.rb:5:in `index'
|
1698
|
+
|
1699
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.7ms)
|
1700
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1701
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
|
1702
|
+
|
1703
|
+
|
1704
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:18:44 +0200
|
1705
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1706
|
+
|
1707
|
+
|
1708
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:18:44 +0200
|
1709
|
+
Processing by HomeController#index as HTML
|
1710
|
+
Completed 500 Internal Server Error in 1ms
|
1711
|
+
|
1712
|
+
RuntimeError (sample error):
|
1713
|
+
app/controllers/home_controller.rb:5:in `index'
|
1714
|
+
|
1715
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.8ms)
|
1716
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1717
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.1ms)
|
1718
|
+
|
1719
|
+
|
1720
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:18:44 +0200
|
1721
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1722
|
+
|
1723
|
+
|
1724
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:18:45 +0200
|
1725
|
+
Processing by HomeController#index as HTML
|
1726
|
+
Completed 500 Internal Server Error in 1ms
|
1727
|
+
|
1728
|
+
RuntimeError (sample error):
|
1729
|
+
app/controllers/home_controller.rb:5:in `index'
|
1730
|
+
|
1731
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1732
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
1733
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.4ms)
|
1734
|
+
|
1735
|
+
|
1736
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:18:45 +0200
|
1737
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1738
|
+
|
1739
|
+
|
1740
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 21:18:47 +0200
|
1741
|
+
|
1742
|
+
|
1743
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:20:26 +0200
|
1744
|
+
Processing by HomeController#index as HTML
|
1745
|
+
Completed 500 Internal Server Error in 1ms
|
1746
|
+
|
1747
|
+
RuntimeError (sample error):
|
1748
|
+
app/controllers/home_controller.rb:5:in `index'
|
1749
|
+
|
1750
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1751
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1752
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
|
1753
|
+
|
1754
|
+
|
1755
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:20:26 +0200
|
1756
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1757
|
+
|
1758
|
+
|
1759
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:21:26 +0200
|
1760
|
+
Processing by HomeController#index as HTML
|
1761
|
+
Completed 500 Internal Server Error in 1ms
|
1762
|
+
|
1763
|
+
RuntimeError (sample error):
|
1764
|
+
app/controllers/home_controller.rb:5:in `index'
|
1765
|
+
|
1766
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.2ms)
|
1767
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
1768
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.6ms)
|
1769
|
+
|
1770
|
+
|
1771
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:21:26 +0200
|
1772
|
+
|
1773
|
+
ActionController::RoutingError (No route matches [GET] "/assets/jquery.js"):
|
1774
|
+
|
1775
|
+
|
1776
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
|
1777
|
+
|
1778
|
+
|
1779
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:21:28 +0200
|
1780
|
+
Processing by HomeController#index as HTML
|
1781
|
+
Completed 500 Internal Server Error in 1ms
|
1782
|
+
|
1783
|
+
RuntimeError (sample error):
|
1784
|
+
app/controllers/home_controller.rb:5:in `index'
|
1785
|
+
|
1786
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1787
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
1788
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
|
1789
|
+
|
1790
|
+
|
1791
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:21:28 +0200
|
1792
|
+
|
1793
|
+
ActionController::RoutingError (No route matches [GET] "/assets/jquery.js"):
|
1794
|
+
|
1795
|
+
|
1796
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
1797
|
+
|
1798
|
+
|
1799
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:21:34 +0200
|
1800
|
+
Processing by HomeController#index as HTML
|
1801
|
+
Completed 500 Internal Server Error in 1ms
|
1802
|
+
|
1803
|
+
RuntimeError (sample error):
|
1804
|
+
app/controllers/home_controller.rb:5:in `index'
|
1805
|
+
|
1806
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (32.9ms)
|
1807
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1808
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (37.1ms)
|
1809
|
+
|
1810
|
+
|
1811
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:21:34 +0200
|
1812
|
+
|
1813
|
+
ActionController::RoutingError (No route matches [GET] "/assets/jquery.js"):
|
1814
|
+
|
1815
|
+
|
1816
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
1817
|
+
|
1818
|
+
|
1819
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:21:35 +0200
|
1820
|
+
Processing by HomeController#index as HTML
|
1821
|
+
Completed 500 Internal Server Error in 1ms
|
1822
|
+
|
1823
|
+
RuntimeError (sample error):
|
1824
|
+
app/controllers/home_controller.rb:5:in `index'
|
1825
|
+
|
1826
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.3ms)
|
1827
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1828
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
1829
|
+
|
1830
|
+
|
1831
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:21:35 +0200
|
1832
|
+
|
1833
|
+
ActionController::RoutingError (No route matches [GET] "/assets/jquery.js"):
|
1834
|
+
|
1835
|
+
|
1836
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
1837
|
+
|
1838
|
+
|
1839
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:21:35 +0200
|
1840
|
+
Processing by HomeController#index as HTML
|
1841
|
+
Completed 500 Internal Server Error in 1ms
|
1842
|
+
|
1843
|
+
RuntimeError (sample error):
|
1844
|
+
app/controllers/home_controller.rb:5:in `index'
|
1845
|
+
|
1846
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.2ms)
|
1847
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
1848
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.0ms)
|
1849
|
+
|
1850
|
+
|
1851
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:21:35 +0200
|
1852
|
+
|
1853
|
+
ActionController::RoutingError (No route matches [GET] "/assets/jquery.js"):
|
1854
|
+
|
1855
|
+
|
1856
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
1857
|
+
|
1858
|
+
|
1859
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:21:36 +0200
|
1860
|
+
Processing by HomeController#index as HTML
|
1861
|
+
Completed 500 Internal Server Error in 1ms
|
1862
|
+
|
1863
|
+
RuntimeError (sample error):
|
1864
|
+
app/controllers/home_controller.rb:5:in `index'
|
1865
|
+
|
1866
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.8ms)
|
1867
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1868
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.2ms)
|
1869
|
+
|
1870
|
+
|
1871
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:21:36 +0200
|
1872
|
+
|
1873
|
+
ActionController::RoutingError (No route matches [GET] "/assets/jquery.js"):
|
1874
|
+
|
1875
|
+
|
1876
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
1877
|
+
|
1878
|
+
|
1879
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:21:36 +0200
|
1880
|
+
Processing by HomeController#index as HTML
|
1881
|
+
Completed 500 Internal Server Error in 1ms
|
1882
|
+
|
1883
|
+
RuntimeError (sample error):
|
1884
|
+
app/controllers/home_controller.rb:5:in `index'
|
1885
|
+
|
1886
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.6ms)
|
1887
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1888
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.0ms)
|
1889
|
+
|
1890
|
+
|
1891
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:21:36 +0200
|
1892
|
+
|
1893
|
+
ActionController::RoutingError (No route matches [GET] "/assets/jquery.js"):
|
1894
|
+
|
1895
|
+
|
1896
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
1897
|
+
|
1898
|
+
|
1899
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:21:47 +0200
|
1900
|
+
Processing by HomeController#index as HTML
|
1901
|
+
Completed 500 Internal Server Error in 1ms
|
1902
|
+
|
1903
|
+
RuntimeError (sample error):
|
1904
|
+
app/controllers/home_controller.rb:5:in `index'
|
1905
|
+
|
1906
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1907
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1908
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.7ms)
|
1909
|
+
|
1910
|
+
|
1911
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:21:48 +0200
|
1912
|
+
|
1913
|
+
ActionController::RoutingError (No route matches [GET] "/assets/jquery.js"):
|
1914
|
+
|
1915
|
+
|
1916
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
|
1917
|
+
|
1918
|
+
|
1919
|
+
Started GET "/" for 127.0.0.1 at 2012-11-23 21:21:53 +0200
|
1920
|
+
Processing by HomeController#index as HTML
|
1921
|
+
Completed 500 Internal Server Error in 1ms
|
1922
|
+
|
1923
|
+
RuntimeError (sample error):
|
1924
|
+
app/controllers/home_controller.rb:5:in `index'
|
1925
|
+
|
1926
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1927
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1928
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (9.4ms)
|
1929
|
+
|
1930
|
+
|
1931
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-23 21:21:53 +0200
|
1932
|
+
Served asset /jquery.js - 200 OK (5ms)
|
1933
|
+
|
1934
|
+
|
1935
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-23 21:21:54 +0200
|
1936
|
+
|
1937
|
+
|
1938
|
+
Started GET "/" for 127.0.0.1 at 2012-11-28 13:42:55 +0200
|
1939
|
+
Processing by HomeController#index as HTML
|
1940
|
+
Completed 500 Internal Server Error in 2ms
|
1941
|
+
|
1942
|
+
RuntimeError (sample error):
|
1943
|
+
app/controllers/home_controller.rb:5:in `index'
|
1944
|
+
|
1945
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (8.2ms)
|
1946
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
1947
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (28.2ms)
|
1948
|
+
|
1949
|
+
|
1950
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-28 13:42:56 +0200
|
1951
|
+
Served asset /jquery.js - 200 OK (56ms)
|
1952
|
+
|
1953
|
+
|
1954
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:43:17 +0200
|
1955
|
+
|
1956
|
+
|
1957
|
+
Started GET "/" for 127.0.0.1 at 2012-11-28 13:45:25 +0200
|
1958
|
+
Processing by HomeController#index as HTML
|
1959
|
+
Completed 500 Internal Server Error in 1ms
|
1960
|
+
|
1961
|
+
RuntimeError (sample error):
|
1962
|
+
app/controllers/home_controller.rb:5:in `index'
|
1963
|
+
|
1964
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1965
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1966
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.2ms)
|
1967
|
+
|
1968
|
+
|
1969
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-28 13:45:25 +0200
|
1970
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1971
|
+
|
1972
|
+
|
1973
|
+
Started GET "/" for 127.0.0.1 at 2012-11-28 13:46:09 +0200
|
1974
|
+
Processing by HomeController#index as HTML
|
1975
|
+
Completed 500 Internal Server Error in 1ms
|
1976
|
+
|
1977
|
+
RuntimeError (sample error):
|
1978
|
+
app/controllers/home_controller.rb:5:in `index'
|
1979
|
+
|
1980
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
1981
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
1982
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.9ms)
|
1983
|
+
|
1984
|
+
|
1985
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-28 13:46:09 +0200
|
1986
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1987
|
+
|
1988
|
+
|
1989
|
+
Started GET "/" for 127.0.0.1 at 2012-11-28 13:47:20 +0200
|
1990
|
+
Processing by HomeController#index as HTML
|
1991
|
+
Completed 500 Internal Server Error in 1ms
|
1992
|
+
|
1993
|
+
RuntimeError (sample error):
|
1994
|
+
app/controllers/home_controller.rb:5:in `index'
|
1995
|
+
|
1996
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.3ms)
|
1997
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
1998
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
|
1999
|
+
|
2000
|
+
|
2001
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-28 13:47:20 +0200
|
2002
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2003
|
+
|
2004
|
+
|
2005
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:47:21 +0200
|
2006
|
+
|
2007
|
+
TypeError (can't convert nil into String):
|
2008
|
+
|
2009
|
+
|
2010
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.7ms)
|
2011
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.6ms)
|
2012
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
|
2013
|
+
|
2014
|
+
|
2015
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:47:26 +0200
|
2016
|
+
|
2017
|
+
TypeError (can't convert nil into String):
|
2018
|
+
|
2019
|
+
|
2020
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.9ms)
|
2021
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
2022
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
|
2023
|
+
|
2024
|
+
|
2025
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:47:39 +0200
|
2026
|
+
|
2027
|
+
|
2028
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:47:54 +0200
|
2029
|
+
|
2030
|
+
|
2031
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:47:59 +0200
|
2032
|
+
|
2033
|
+
TypeError (can't convert nil into String):
|
2034
|
+
|
2035
|
+
|
2036
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.0ms)
|
2037
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
2038
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
2039
|
+
|
2040
|
+
|
2041
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:48:00 +0200
|
2042
|
+
|
2043
|
+
TypeError (can't convert nil into String):
|
2044
|
+
|
2045
|
+
|
2046
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.8ms)
|
2047
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
2048
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
|
2049
|
+
|
2050
|
+
|
2051
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:48:09 +0200
|
2052
|
+
|
2053
|
+
TypeError (can't convert nil into String):
|
2054
|
+
|
2055
|
+
|
2056
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.9ms)
|
2057
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
2058
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.2ms)
|
2059
|
+
|
2060
|
+
|
2061
|
+
Started GET "/" for 127.0.0.1 at 2012-11-28 13:48:47 +0200
|
2062
|
+
Processing by HomeController#index as HTML
|
2063
|
+
Completed 500 Internal Server Error in 2ms
|
2064
|
+
|
2065
|
+
NameError (undefined local variable or method `eerr' for #<HomeController:0x000000022be038>):
|
2066
|
+
app/controllers/home_controller.rb:6:in `index'
|
2067
|
+
|
2068
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.5ms)
|
2069
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
2070
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
|
2071
|
+
|
2072
|
+
|
2073
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-28 13:48:47 +0200
|
2074
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2075
|
+
|
2076
|
+
|
2077
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:48:54 +0200
|
2078
|
+
|
2079
|
+
|
2080
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:49:00 +0200
|
2081
|
+
|
2082
|
+
|
2083
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:49:13 +0200
|
2084
|
+
|
2085
|
+
|
2086
|
+
Started GET "/" for 127.0.0.1 at 2012-11-28 13:50:14 +0200
|
2087
|
+
Processing by HomeController#index as HTML
|
2088
|
+
Completed 500 Internal Server Error in 1ms
|
2089
|
+
|
2090
|
+
RuntimeError (sample error):
|
2091
|
+
app/controllers/home_controller.rb:5:in `index'
|
2092
|
+
|
2093
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.9ms)
|
2094
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.5ms)
|
2095
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.2ms)
|
2096
|
+
|
2097
|
+
|
2098
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-28 13:50:14 +0200
|
2099
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2100
|
+
|
2101
|
+
|
2102
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:50:15 +0200
|
2103
|
+
|
2104
|
+
TypeError (can't convert nil into String):
|
2105
|
+
|
2106
|
+
|
2107
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.7ms)
|
2108
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
2109
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (6.5ms)
|
2110
|
+
|
2111
|
+
|
2112
|
+
Started GET "/" for 127.0.0.1 at 2012-11-28 13:53:08 +0200
|
2113
|
+
Processing by HomeController#index as HTML
|
2114
|
+
Completed 500 Internal Server Error in 1ms
|
2115
|
+
|
2116
|
+
RuntimeError (sample error):
|
2117
|
+
app/controllers/home_controller.rb:5:in `index'
|
2118
|
+
|
2119
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
2120
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
2121
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
2122
|
+
|
2123
|
+
|
2124
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-28 13:53:08 +0200
|
2125
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2126
|
+
|
2127
|
+
|
2128
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:53:12 +0200
|
2129
|
+
|
2130
|
+
TypeError (can't convert nil into String):
|
2131
|
+
|
2132
|
+
|
2133
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (2.7ms)
|
2134
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
2135
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (6.8ms)
|
2136
|
+
|
2137
|
+
|
2138
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:53:20 +0200
|
2139
|
+
|
2140
|
+
TypeError (can't convert nil into String):
|
2141
|
+
|
2142
|
+
|
2143
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.3ms)
|
2144
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.3ms)
|
2145
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.3ms)
|
2146
|
+
|
2147
|
+
|
2148
|
+
Started GET "/" for 127.0.0.1 at 2012-11-28 13:53:45 +0200
|
2149
|
+
Processing by HomeController#index as HTML
|
2150
|
+
Completed 500 Internal Server Error in 1ms
|
2151
|
+
|
2152
|
+
RuntimeError (sample error):
|
2153
|
+
app/controllers/home_controller.rb:5:in `index'
|
2154
|
+
|
2155
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
2156
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
2157
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (7.5ms)
|
2158
|
+
|
2159
|
+
|
2160
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-28 13:53:45 +0200
|
2161
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2162
|
+
|
2163
|
+
|
2164
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:53:47 +0200
|
2165
|
+
|
2166
|
+
|
2167
|
+
Started GET "/" for 127.0.0.1 at 2012-11-28 13:54:43 +0200
|
2168
|
+
Processing by HomeController#index as HTML
|
2169
|
+
Completed 500 Internal Server Error in 31ms
|
2170
|
+
|
2171
|
+
RuntimeError (sample error):
|
2172
|
+
app/controllers/home_controller.rb:5:in `index'
|
2173
|
+
|
2174
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.4ms)
|
2175
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
2176
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.8ms)
|
2177
|
+
|
2178
|
+
|
2179
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-28 13:54:43 +0200
|
2180
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
2181
|
+
|
2182
|
+
|
2183
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:54:44 +0200
|
2184
|
+
|
2185
|
+
|
2186
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:54:45 +0200
|
2187
|
+
|
2188
|
+
|
2189
|
+
Started GET "/" for 127.0.0.1 at 2012-11-28 13:55:09 +0200
|
2190
|
+
Processing by HomeController#index as HTML
|
2191
|
+
Completed 500 Internal Server Error in 30ms
|
2192
|
+
|
2193
|
+
RuntimeError (sample error):
|
2194
|
+
app/controllers/home_controller.rb:5:in `index'
|
2195
|
+
|
2196
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_trace.erb (3.3ms)
|
2197
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/_request_and_response.erb (1.4ms)
|
2198
|
+
Rendered /home/virtax/work/error-locator/lib/error-locator/templates/rescues/diagnostics.erb within rescues/layout (8.9ms)
|
2199
|
+
|
2200
|
+
|
2201
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-28 13:55:09 +0200
|
2202
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
2203
|
+
|
2204
|
+
|
2205
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:55:11 +0200
|
2206
|
+
|
2207
|
+
|
2208
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:55:18 +0200
|
2209
|
+
|
2210
|
+
|
2211
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:55:21 +0200
|
2212
|
+
|
2213
|
+
|
2214
|
+
Started POST "/error-locator" for 127.0.0.1 at 2012-11-28 13:55:23 +0200
|