audit_rails 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- M2RmMDljYzFkMDg4ZjNmZDkxMDEzNDQzMzQ2MTU4YmUyOGE1ZGU3YQ==
5
- data.tar.gz: !binary |-
6
- YmM2YjI2YTkyZWI4ODUzYTJkNjBlMzAzNDc0ZDI2NzM3NDdjYTMwNA==
7
- !binary "U0hBNTEy":
8
- metadata.gz: !binary |-
9
- ZGQ2ODQwZjYyOTYzMDNjYWVjMjVkNDcyYmMzNzY5Y2FmNjEwMzJhOTVjZDVj
10
- NTBlMTU5NjE4ZWI3YzAwOTExNGE0ZTNlMzZiMTQ1MjFjN2FlNWIwOGNhNDVl
11
- Y2IzYTI3YWU5YjFmNzk1ZDFlZTQwY2NkZDMxOTY3ZGJmMDE3OGM=
12
- data.tar.gz: !binary |-
13
- NTE4OTFkOWYwNjE4NTk5ZDViNWRhYWQwNTBiZmFkODQ5NjVhZjYzMDhmY2Rm
14
- MTFhNGI5NjkxMjU1ODFjNzVmY2JkZjI5MTRhOWUwOTU3ZTZlNDU2ODA5MDhm
15
- MDgyZjA1ODFiNWRlM2U2MjZkMGYwZmE2MzgzZWRkZDRiZmU5YjQ=
2
+ SHA1:
3
+ metadata.gz: 0a97c27d37d85e1fb0984fceb8fe06f2cc9c78db
4
+ data.tar.gz: 159e582018b13d27ee414c3d6a8a2c2cadf2d698
5
+ SHA512:
6
+ metadata.gz: 252fb777fdc451c51c647b51293ad14eb5eaf65aa1a7cf1af8803337a370eef8ff306485f807ea89c922b8052c92d2809381b03887921804b6bab962e5a36105
7
+ data.tar.gz: 7e3a0edae41229a96244e7c53c92d31547fa6bf347eba84d2b6db85d3640cc78ed82a7de4e125889c865b2944592a6dd2cd322a7b1ea64f44cd08a1a866e4df5
@@ -1,4 +1,4 @@
1
- Copyright 2012 YOURNAME
1
+ Copyright 2012 Gourav Tiwari
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -17,7 +17,7 @@ Now also has analytics(charts) for User counts
17
17
  [![Build Status](https://travis-ci.org/gouravtiwari/audit_rails.png?branch=master)](https://travis-ci.org/gouravtiwari/audit_rails)
18
18
 
19
19
  ### Pre-requisites:
20
- For rails 3.x.x and ruby>1.9.2:
20
+ For rails 4.0 & 3.2.6 + and ruby>1.9.2:
21
21
 
22
22
  gem install audit_rails
23
23
 
@@ -47,6 +47,7 @@ Inherit from AuditRails::Audit:
47
47
 
48
48
  # MyApp/app/models/audit.rb
49
49
  class Audit < AuditRails::Audit
50
+ # attr_accessible is only needed for Rails 3.2.6+ not needed for Rails 4+
50
51
  attr_accessible :action, :controller, :description, :user_name,
51
52
  :book_id
52
53
  # add associations as usual:
@@ -1,6 +1,12 @@
1
1
  module AuditRails
2
2
  class Audit < ActiveRecord::Base
3
- attr_accessible :action, :controller, :description, :user_name
3
+ def self.needs_attr_accessible?
4
+ Rails::VERSION::MAJOR == 3
5
+ end
6
+
7
+ if needs_attr_accessible?
8
+ attr_accessible :action, :controller, :description, :user_name
9
+ end
4
10
 
5
11
  def self.no_audit_entry_for_today?(action_name, user_name)
6
12
  audits = where(action: action_name, user_name: user_name,
@@ -1,3 +1,3 @@
1
1
  module AuditRails
2
- VERSION = "1.1.4"
2
+ VERSION = "1.1.5"
3
3
  end
@@ -22,7 +22,7 @@ describe AuditRails::AuditsController do
22
22
 
23
23
  context "GET index" do
24
24
  it "lists audits on page" do
25
- audits = (1..3).map {|t| AuditRails::Audit.create(user_name: 'Fake User',
25
+ audits = (1..3).map {|t| FactoryGirl.create(:audit, user_name: 'Fake User',
26
26
  description: "User logged on at #{t.days.ago}",
27
27
  action: 'login',
28
28
  controller: 'sessions')}
@@ -34,7 +34,7 @@ describe AuditRails::AuditsController do
34
34
 
35
35
 
36
36
  it "lists audits in excel" do
37
- audits = (1..3).map {|t| AuditRails::Audit.create(user_name: 'Fake User',
37
+ audits = (1..3).map {|t| FactoryGirl.create(:audit, user_name: 'Fake User',
38
38
  description: "User logged on at #{t.days.ago}",
39
39
  action: 'login',
40
40
  controller: 'sessions')}
Binary file
@@ -563,3 +563,184 @@ Connecting to database specified by database.yml
563
563
   (1.6ms) DROP TABLE "audit_rails_audits"
564
564
   (0.9ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
565
565
   (0.1ms) SELECT version FROM "schema_migrations"
566
+ Connecting to database specified by database.yml
567
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
568
+  (0.7ms) select sqlite_version(*)
569
+  (1.4ms) DROP TABLE "audit_rails_audits"
570
+  (0.9ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
571
+  (0.1ms) SELECT version FROM "schema_migrations"
572
+ Connecting to database specified by database.yml
573
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
574
+  (0.3ms) select sqlite_version(*)
575
+  (1.0ms) DROP TABLE "audit_rails_audits"
576
+  (0.9ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
577
+  (0.1ms) SELECT version FROM "schema_migrations"
578
+ Connecting to database specified by database.yml
579
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
580
+  (0.3ms) select sqlite_version(*)
581
+  (2.6ms) DROP TABLE "audit_rails_audits"
582
+  (0.8ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
583
+  (0.1ms) SELECT version FROM "schema_migrations"
584
+ Connecting to database specified by database.yml
585
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
586
+  (0.7ms) select sqlite_version(*)
587
+  (1.9ms) DROP TABLE "audit_rails_audits"
588
+  (0.9ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
589
+  (0.3ms) SELECT version FROM "schema_migrations"
590
+ Connecting to database specified by database.yml
591
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
592
+  (0.2ms) select sqlite_version(*)
593
+  (3.1ms) DROP TABLE "audit_rails_audits"
594
+  (1.3ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
595
+  (0.1ms) SELECT version FROM "schema_migrations"
596
+ Connecting to database specified by database.yml
597
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
598
+  (0.3ms) select sqlite_version(*)
599
+  (2.9ms) DROP TABLE "audit_rails_audits"
600
+  (0.9ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
601
+  (0.1ms) SELECT version FROM "schema_migrations"
602
+ Connecting to database specified by database.yml
603
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
604
+  (0.3ms) select sqlite_version(*)
605
+  (1.1ms) DROP TABLE "audit_rails_audits"
606
+  (0.8ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
607
+  (0.1ms) SELECT version FROM "schema_migrations"
608
+ Connecting to database specified by database.yml
609
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
610
+  (0.2ms) select sqlite_version(*)
611
+  (3.0ms) DROP TABLE "audit_rails_audits"
612
+  (1.5ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
613
+  (0.1ms) SELECT version FROM "schema_migrations"
614
+ Connecting to database specified by database.yml
615
+ Connecting to database specified by database.yml
616
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
617
+  (0.2ms) select sqlite_version(*)
618
+  (101.0ms) DROP TABLE "audit_rails_audits"
619
+  (2.7ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
620
+  (0.1ms) SELECT version FROM "schema_migrations"
621
+ Connecting to database specified by database.yml
622
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
623
+  (0.2ms) select sqlite_version(*)
624
+  (2.4ms) DROP TABLE "audit_rails_audits"
625
+  (1.0ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
626
+  (0.1ms) SELECT version FROM "schema_migrations"
627
+ Connecting to database specified by database.yml
628
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
629
+  (0.4ms) select sqlite_version(*)
630
+  (3.0ms) DROP TABLE "audit_rails_audits"
631
+  (0.9ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
632
+  (0.1ms) SELECT version FROM "schema_migrations"
633
+ Connecting to database specified by database.yml
634
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
635
+  (0.2ms) select sqlite_version(*)
636
+  (2.0ms) DROP TABLE "audit_rails_audits"
637
+  (0.9ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
638
+  (0.1ms) SELECT version FROM "schema_migrations"
639
+ Connecting to database specified by database.yml
640
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
641
+  (0.3ms) select sqlite_version(*)
642
+  (2.9ms) DROP TABLE "audit_rails_audits"
643
+  (0.9ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
644
+  (0.1ms) SELECT version FROM "schema_migrations"
645
+ Connecting to database specified by database.yml
646
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
647
+  (0.2ms) select sqlite_version(*)
648
+  (3.5ms) DROP TABLE "audit_rails_audits"
649
+  (0.8ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
650
+  (0.1ms) SELECT version FROM "schema_migrations"
651
+ Connecting to database specified by database.yml
652
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
653
+  (0.3ms) select sqlite_version(*)
654
+  (3.1ms) DROP TABLE "audit_rails_audits"
655
+  (1.4ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
656
+  (0.1ms) SELECT version FROM "schema_migrations"
657
+ Connecting to database specified by database.yml
658
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
659
+  (0.2ms) select sqlite_version(*)
660
+  (2.9ms) DROP TABLE "audit_rails_audits"
661
+  (1.0ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
662
+  (0.1ms) SELECT version FROM "schema_migrations"
663
+ Connecting to database specified by database.yml
664
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
665
+  (0.3ms) select sqlite_version(*)
666
+  (3.0ms) DROP TABLE "audit_rails_audits"
667
+  (1.0ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
668
+  (0.1ms) SELECT version FROM "schema_migrations"
669
+ Connecting to database specified by database.yml
670
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
671
+  (0.4ms) select sqlite_version(*)
672
+  (1.4ms) DROP TABLE "audit_rails_audits"
673
+  (1.0ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
674
+  (0.3ms) SELECT version FROM "schema_migrations"
675
+ Connecting to database specified by database.yml
676
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
677
+  (0.4ms) select sqlite_version(*)
678
+  (1.3ms) DROP TABLE "audit_rails_audits"
679
+  (0.8ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
680
+  (0.1ms) SELECT version FROM "schema_migrations"
681
+ Connecting to database specified by database.yml
682
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
683
+  (0.2ms) select sqlite_version(*)
684
+  (2.8ms) DROP TABLE "audit_rails_audits"
685
+  (1.1ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
686
+  (0.1ms) SELECT version FROM "schema_migrations"
687
+ Connecting to database specified by database.yml
688
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
689
+  (0.3ms) select sqlite_version(*)
690
+  (3.0ms) DROP TABLE "audit_rails_audits"
691
+  (0.9ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
692
+  (0.1ms) SELECT version FROM "schema_migrations"
693
+ Connecting to database specified by database.yml
694
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
695
+  (0.2ms) select sqlite_version(*)
696
+  (3.2ms) DROP TABLE "audit_rails_audits"
697
+  (1.3ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
698
+  (0.1ms) SELECT version FROM "schema_migrations"
699
+ Connecting to database specified by database.yml
700
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
701
+  (0.3ms) select sqlite_version(*)
702
+  (3.4ms) DROP TABLE "audit_rails_audits"
703
+  (1.0ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
704
+  (0.1ms) SELECT version FROM "schema_migrations"
705
+ Connecting to database specified by database.yml
706
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
707
+  (0.3ms) select sqlite_version(*)
708
+  (2.9ms) DROP TABLE "audit_rails_audits"
709
+  (1.0ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
710
+  (0.1ms) SELECT version FROM "schema_migrations"
711
+ Connecting to database specified by database.yml
712
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
713
+  (0.3ms) select sqlite_version(*)
714
+  (2.3ms) DROP TABLE "audit_rails_audits"
715
+  (1.0ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
716
+  (0.1ms) SELECT version FROM "schema_migrations"
717
+ Connecting to database specified by database.yml
718
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
719
+  (0.3ms) select sqlite_version(*)
720
+  (101.6ms) DROP TABLE "audit_rails_audits"
721
+  (3.0ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
722
+  (0.1ms) SELECT version FROM "schema_migrations"
723
+ Connecting to database specified by database.yml
724
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
725
+  (0.3ms) select sqlite_version(*)
726
+  (0.8ms) DROP TABLE "audit_rails_audits"
727
+  (0.8ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
728
+  (0.1ms) SELECT version FROM "schema_migrations"
729
+ Connecting to database specified by database.yml
730
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
731
+  (0.2ms) select sqlite_version(*)
732
+  (99.1ms) DROP TABLE "audit_rails_audits"
733
+  (2.8ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
734
+  (0.1ms) SELECT version FROM "schema_migrations"
735
+ Connecting to database specified by database.yml
736
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
737
+  (0.3ms) select sqlite_version(*)
738
+  (100.6ms) DROP TABLE "audit_rails_audits"
739
+  (3.2ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
740
+  (0.1ms) SELECT version FROM "schema_migrations"
741
+ Connecting to database specified by database.yml
742
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
743
+  (0.2ms) select sqlite_version(*)
744
+  (2.6ms) DROP TABLE "audit_rails_audits"
745
+  (0.8ms) CREATE TABLE "audit_rails_audits" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action" varchar(255), "controller" varchar(255), "description" varchar(255), "user_name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
746
+  (0.1ms) SELECT version FROM "schema_migrations"
@@ -5431,3 +5431,1536 @@ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.6ms)
5431
5431
   (0.0ms) RELEASE SAVEPOINT active_record_1
5432
5432
   (0.1ms) SELECT COUNT(*) AS count_all, controller,action AS controller_action FROM "audit_rails_audits" GROUP BY controller,action
5433
5433
   (0.4ms) rollback transaction
5434
+ Connecting to database specified by database.yml
5435
+  (0.3ms) begin transaction
5436
+ Processing by AnonymousController#login as HTML
5437
+ Parameters: {"id"=>"1"}
5438
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5439
+ Completed 500 Internal Server Error in 35ms
5440
+  (0.1ms) rollback transaction
5441
+  (0.0ms) begin transaction
5442
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5443
+  (0.1ms) rollback transaction
5444
+  (0.0ms) begin transaction
5445
+  (0.0ms) rollback transaction
5446
+  (0.0ms) begin transaction
5447
+  (0.0ms) rollback transaction
5448
+  (0.0ms) begin transaction
5449
+  (0.0ms) rollback transaction
5450
+  (0.0ms) begin transaction
5451
+  (0.1ms) rollback transaction
5452
+  (0.0ms) begin transaction
5453
+  (0.1ms) rollback transaction
5454
+  (0.1ms) begin transaction
5455
+  (0.0ms) rollback transaction
5456
+  (0.0ms) begin transaction
5457
+ Processing by AuditRails::AuditsController#analytics as HTML
5458
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
5459
+  (0.1ms) rollback transaction
5460
+  (0.0ms) begin transaction
5461
+ Processing by AuditRails::AuditsController#create as HTML
5462
+ Completed 500 Internal Server Error in 0ms
5463
+  (0.0ms) rollback transaction
5464
+  (0.1ms) begin transaction
5465
+  (0.2ms) rollback transaction
5466
+  (0.1ms) begin transaction
5467
+  (0.0ms) rollback transaction
5468
+ Connecting to database specified by database.yml
5469
+  (0.3ms) begin transaction
5470
+ Processing by AnonymousController#login as HTML
5471
+ Parameters: {"id"=>"1"}
5472
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5473
+  (0.1ms) SAVEPOINT active_record_1
5474
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", "User logged in"], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5476
+ Rendered text template (0.0ms)
5477
+ Completed 200 OK in 52ms (Views: 5.2ms | ActiveRecord: 1.8ms)
5478
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5479
+  (0.6ms) rollback transaction
5480
+  (0.1ms) begin transaction
5481
+ Processing by AuditRails::AuditsController#create as HTML
5482
+  (0.1ms) SAVEPOINT active_record_1
5483
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5484
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5485
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.5ms)
5486
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5487
+  (0.4ms) rollback transaction
5488
+  (0.1ms) begin transaction
5489
+  (0.0ms) SAVEPOINT active_record_1
5490
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", "User logged on at 2013-09-27 18:44:30 UTC"], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5492
+  (0.0ms) SAVEPOINT active_record_1
5493
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", "User logged on at 2013-09-26 18:44:30 UTC"], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5495
+  (0.0ms) SAVEPOINT active_record_1
5496
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", "User logged on at 2013-09-25 18:44:30 UTC"], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5498
+ Processing by AuditRails::AuditsController#index as HTML
5499
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
5500
+ Completed 200 OK in 7ms (Views: 4.5ms | ActiveRecord: 0.1ms)
5501
+  (0.4ms) rollback transaction
5502
+  (0.1ms) begin transaction
5503
+  (0.1ms) SAVEPOINT active_record_1
5504
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", "User logged on at 2013-09-27 18:44:30 UTC"], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5505
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5506
+  (0.0ms) SAVEPOINT active_record_1
5507
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", "User logged on at 2013-09-26 18:44:30 UTC"], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5509
+  (0.0ms) SAVEPOINT active_record_1
5510
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", "User logged on at 2013-09-25 18:44:30 UTC"], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5512
+ Processing by AuditRails::AuditsController#index as XLS
5513
+ AuditRails::Audit Load (0.2ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
5514
+ Sent data audits.xls (0.4ms)
5515
+ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.2ms)
5516
+  (0.5ms) rollback transaction
5517
+  (0.1ms) begin transaction
5518
+  (0.1ms) rollback transaction
5519
+  (0.0ms) begin transaction
5520
+  (0.1ms) rollback transaction
5521
+  (0.1ms) begin transaction
5522
+  (0.1ms) rollback transaction
5523
+  (0.0ms) begin transaction
5524
+ Processing by AuditRails::AuditsController#analytics as HTML
5525
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
5526
+  (0.1ms) rollback transaction
5527
+  (0.1ms) begin transaction
5528
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5529
+  (0.0ms) rollback transaction
5530
+  (0.1ms) begin transaction
5531
+  (0.0ms) SAVEPOINT active_record_1
5532
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "John Smith"]]
5533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5534
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5535
+  (0.3ms) rollback transaction
5536
+  (0.1ms) begin transaction
5537
+  (0.1ms) SAVEPOINT active_record_1
5538
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "John Smith"]]
5539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5540
+  (0.0ms) SAVEPOINT active_record_1
5541
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5543
+  (0.0ms) SAVEPOINT active_record_1
5544
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "John Smith"]]
5545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5546
+  (0.0ms) SAVEPOINT active_record_1
5547
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5548
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5549
+  (0.0ms) SAVEPOINT active_record_1
5550
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "John Smith"]]
5551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5552
+  (0.0ms) SAVEPOINT active_record_1
5553
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5555
+  (0.1ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
5556
+  (0.4ms) rollback transaction
5557
+  (0.1ms) begin transaction
5558
+  (0.0ms) SAVEPOINT active_record_1
5559
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "John Smith"]]
5560
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5561
+  (0.0ms) SAVEPOINT active_record_1
5562
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5564
+  (0.0ms) SAVEPOINT active_record_1
5565
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "John Smith"]]
5566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5567
+  (0.0ms) SAVEPOINT active_record_1
5568
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5569
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5570
+  (0.0ms) SAVEPOINT active_record_1
5571
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "John Smith"]]
5572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5573
+  (0.0ms) SAVEPOINT active_record_1
5574
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["description", nil], ["updated_at", Sat, 28 Sep 2013 18:44:30 UTC +00:00], ["user_name", "Fake User"]]
5575
+  (0.0ms) RELEASE SAVEPOINT active_record_1
5576
+  (0.1ms) SELECT COUNT(*) AS count_all, controller,action AS controller_action FROM "audit_rails_audits" GROUP BY controller,action
5577
+  (0.3ms) rollback transaction
5578
+ Connecting to database specified by database.yml
5579
+  (0.3ms) begin transaction
5580
+  (0.1ms) rollback transaction
5581
+  (0.0ms) begin transaction
5582
+  (0.0ms) rollback transaction
5583
+  (0.0ms) begin transaction
5584
+ Processing by AuditRails::AuditsController#analytics as HTML
5585
+ Completed 200 OK in 33ms (Views: 33.1ms | ActiveRecord: 0.0ms)
5586
+  (0.1ms) rollback transaction
5587
+  (0.0ms) begin transaction
5588
+  (0.1ms) rollback transaction
5589
+  (0.1ms) begin transaction
5590
+  (0.1ms) rollback transaction
5591
+  (0.1ms) begin transaction
5592
+  (0.1ms) rollback transaction
5593
+  (0.0ms) begin transaction
5594
+ Processing by AuditRails::AuditsController#create as HTML
5595
+ Completed 500 Internal Server Error in 1ms
5596
+  (0.1ms) rollback transaction
5597
+  (0.1ms) begin transaction
5598
+  (0.0ms) rollback transaction
5599
+  (0.1ms) begin transaction
5600
+  (0.0ms) rollback transaction
5601
+  (0.0ms) begin transaction
5602
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5603
+  (0.1ms) rollback transaction
5604
+  (0.0ms) begin transaction
5605
+  (0.0ms) rollback transaction
5606
+  (0.1ms) begin transaction
5607
+ Processing by AnonymousController#login as HTML
5608
+ Parameters: {"id"=>"1"}
5609
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5610
+ Completed 500 Internal Server Error in 2ms
5611
+  (0.1ms) rollback transaction
5612
+ Connecting to database specified by database.yml
5613
+  (0.3ms) begin transaction
5614
+ Processing by AnonymousController#login as HTML
5615
+ Parameters: {"id"=>"1"}
5616
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5617
+ Completed 500 Internal Server Error in 34ms
5618
+  (0.1ms) rollback transaction
5619
+  (0.0ms) begin transaction
5620
+  (0.0ms) rollback transaction
5621
+  (0.0ms) begin transaction
5622
+  (0.0ms) rollback transaction
5623
+  (0.0ms) begin transaction
5624
+  (0.0ms) rollback transaction
5625
+  (0.0ms) begin transaction
5626
+  (0.1ms) rollback transaction
5627
+  (0.0ms) begin transaction
5628
+  (0.0ms) rollback transaction
5629
+  (0.0ms) begin transaction
5630
+ Processing by AuditRails::AuditsController#analytics as HTML
5631
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
5632
+  (0.1ms) rollback transaction
5633
+  (0.0ms) begin transaction
5634
+ Processing by AuditRails::AuditsController#create as HTML
5635
+ Completed 500 Internal Server Error in 0ms
5636
+  (0.0ms) rollback transaction
5637
+  (0.0ms) begin transaction
5638
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5639
+  (0.1ms) rollback transaction
5640
+  (0.0ms) begin transaction
5641
+  (0.0ms) rollback transaction
5642
+  (0.0ms) begin transaction
5643
+  (0.0ms) rollback transaction
5644
+  (0.0ms) begin transaction
5645
+  (0.0ms) rollback transaction
5646
+ Connecting to database specified by database.yml
5647
+  (0.3ms) begin transaction
5648
+  (0.0ms) rollback transaction
5649
+  (0.1ms) begin transaction
5650
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5651
+  (0.1ms) rollback transaction
5652
+  (0.1ms) begin transaction
5653
+  (0.0ms) rollback transaction
5654
+  (0.0ms) begin transaction
5655
+  (0.0ms) rollback transaction
5656
+  (0.0ms) begin transaction
5657
+ Processing by AnonymousController#login as HTML
5658
+ Parameters: {"id"=>"1"}
5659
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5660
+ Completed 500 Internal Server Error in 2ms
5661
+  (0.1ms) rollback transaction
5662
+  (0.0ms) begin transaction
5663
+ Processing by AuditRails::AuditsController#analytics as HTML
5664
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
5665
+  (0.1ms) rollback transaction
5666
+  (0.0ms) begin transaction
5667
+  (0.0ms) rollback transaction
5668
+  (0.0ms) begin transaction
5669
+  (0.0ms) rollback transaction
5670
+  (0.0ms) begin transaction
5671
+ Processing by AuditRails::AuditsController#create as HTML
5672
+ Completed 500 Internal Server Error in 0ms
5673
+  (0.0ms) rollback transaction
5674
+  (0.0ms) begin transaction
5675
+  (0.1ms) rollback transaction
5676
+  (0.0ms) begin transaction
5677
+  (0.0ms) rollback transaction
5678
+  (0.1ms) begin transaction
5679
+  (0.0ms) rollback transaction
5680
+ Connecting to database specified by database.yml
5681
+  (0.3ms) begin transaction
5682
+  (0.0ms) rollback transaction
5683
+  (0.0ms) begin transaction
5684
+  (0.0ms) rollback transaction
5685
+  (0.0ms) begin transaction
5686
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5687
+  (0.1ms) rollback transaction
5688
+  (0.1ms) begin transaction
5689
+  (0.0ms) rollback transaction
5690
+  (0.1ms) begin transaction
5691
+ Processing by AuditRails::AuditsController#create as HTML
5692
+ Completed 500 Internal Server Error in 0ms
5693
+  (0.1ms) rollback transaction
5694
+  (0.1ms) begin transaction
5695
+  (0.0ms) rollback transaction
5696
+  (0.0ms) begin transaction
5697
+  (0.0ms) rollback transaction
5698
+  (0.0ms) begin transaction
5699
+ Processing by AuditRails::AuditsController#analytics as HTML
5700
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
5701
+  (0.1ms) rollback transaction
5702
+  (0.0ms) begin transaction
5703
+  (0.1ms) rollback transaction
5704
+  (0.0ms) begin transaction
5705
+  (0.0ms) rollback transaction
5706
+  (0.0ms) begin transaction
5707
+  (0.0ms) rollback transaction
5708
+  (0.0ms) begin transaction
5709
+ Processing by AnonymousController#login as HTML
5710
+ Parameters: {"id"=>"1"}
5711
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5712
+ Completed 500 Internal Server Error in 2ms
5713
+  (0.1ms) rollback transaction
5714
+ Connecting to database specified by database.yml
5715
+  (0.3ms) begin transaction
5716
+ Processing by AnonymousController#login as HTML
5717
+ Parameters: {"id"=>"1"}
5718
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5719
+ Completed 500 Internal Server Error in 32ms
5720
+  (0.1ms) rollback transaction
5721
+  (0.0ms) begin transaction
5722
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5723
+  (0.1ms) rollback transaction
5724
+  (0.1ms) begin transaction
5725
+  (0.0ms) rollback transaction
5726
+  (0.0ms) begin transaction
5727
+  (0.0ms) rollback transaction
5728
+  (0.0ms) begin transaction
5729
+  (0.0ms) rollback transaction
5730
+  (0.0ms) begin transaction
5731
+  (0.1ms) rollback transaction
5732
+  (0.0ms) begin transaction
5733
+  (0.1ms) rollback transaction
5734
+  (0.0ms) begin transaction
5735
+  (0.0ms) rollback transaction
5736
+  (0.0ms) begin transaction
5737
+ Processing by AuditRails::AuditsController#analytics as HTML
5738
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
5739
+  (0.1ms) rollback transaction
5740
+  (0.0ms) begin transaction
5741
+  (0.0ms) rollback transaction
5742
+  (0.0ms) begin transaction
5743
+  (0.0ms) rollback transaction
5744
+  (0.0ms) begin transaction
5745
+ Processing by AuditRails::AuditsController#create as HTML
5746
+ Completed 500 Internal Server Error in 0ms
5747
+  (0.1ms) rollback transaction
5748
+ Connecting to database specified by database.yml
5749
+  (0.3ms) begin transaction
5750
+  (0.0ms) rollback transaction
5751
+  (0.1ms) begin transaction
5752
+  (0.0ms) rollback transaction
5753
+  (0.0ms) begin transaction
5754
+  (0.1ms) rollback transaction
5755
+  (0.0ms) begin transaction
5756
+  (0.0ms) rollback transaction
5757
+  (0.0ms) begin transaction
5758
+  (0.1ms) rollback transaction
5759
+  (0.0ms) begin transaction
5760
+ Processing by AuditRails::AuditsController#analytics as HTML
5761
+ Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
5762
+  (0.1ms) rollback transaction
5763
+  (0.0ms) begin transaction
5764
+ Processing by AuditRails::AuditsController#create as HTML
5765
+ Completed 500 Internal Server Error in 0ms
5766
+  (0.0ms) rollback transaction
5767
+  (0.0ms) begin transaction
5768
+ Processing by AnonymousController#login as HTML
5769
+ Parameters: {"id"=>"1"}
5770
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5771
+ Completed 500 Internal Server Error in 5ms
5772
+  (0.1ms) rollback transaction
5773
+  (0.0ms) begin transaction
5774
+  (0.0ms) rollback transaction
5775
+  (0.1ms) begin transaction
5776
+  (0.0ms) rollback transaction
5777
+  (0.0ms) begin transaction
5778
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5779
+  (0.1ms) rollback transaction
5780
+  (0.0ms) begin transaction
5781
+  (0.0ms) rollback transaction
5782
+ Connecting to database specified by database.yml
5783
+  (0.3ms) begin transaction
5784
+ Processing by AnonymousController#login as HTML
5785
+ Parameters: {"id"=>"1"}
5786
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5787
+ Completed 500 Internal Server Error in 10ms
5788
+  (0.1ms) rollback transaction
5789
+  (0.0ms) begin transaction
5790
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5791
+  (0.1ms) rollback transaction
5792
+  (0.1ms) begin transaction
5793
+  (0.0ms) rollback transaction
5794
+  (0.0ms) begin transaction
5795
+  (0.0ms) rollback transaction
5796
+  (0.1ms) begin transaction
5797
+  (0.0ms) rollback transaction
5798
+  (0.1ms) begin transaction
5799
+  (0.1ms) rollback transaction
5800
+  (0.0ms) begin transaction
5801
+  (0.1ms) rollback transaction
5802
+  (0.0ms) begin transaction
5803
+  (0.0ms) rollback transaction
5804
+  (0.0ms) begin transaction
5805
+ Processing by AuditRails::AuditsController#create as HTML
5806
+ Completed 500 Internal Server Error in 0ms
5807
+  (0.0ms) rollback transaction
5808
+  (0.0ms) begin transaction
5809
+  (0.0ms) rollback transaction
5810
+  (0.0ms) begin transaction
5811
+  (0.0ms) rollback transaction
5812
+  (0.0ms) begin transaction
5813
+ Processing by AuditRails::AuditsController#analytics as HTML
5814
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
5815
+  (0.1ms) rollback transaction
5816
+ Connecting to database specified by database.yml
5817
+  (0.3ms) begin transaction
5818
+ Processing by AnonymousController#login as HTML
5819
+ Parameters: {"id"=>"1"}
5820
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5821
+ Completed 500 Internal Server Error in 9ms
5822
+  (0.1ms) rollback transaction
5823
+  (0.1ms) begin transaction
5824
+  (0.0ms) rollback transaction
5825
+  (0.1ms) begin transaction
5826
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5827
+  (0.1ms) rollback transaction
5828
+  (0.0ms) begin transaction
5829
+  (0.0ms) rollback transaction
5830
+  (0.0ms) begin transaction
5831
+  (0.0ms) rollback transaction
5832
+  (0.0ms) begin transaction
5833
+  (0.0ms) rollback transaction
5834
+  (0.0ms) begin transaction
5835
+  (0.1ms) rollback transaction
5836
+  (0.1ms) begin transaction
5837
+ Processing by AuditRails::AuditsController#analytics as HTML
5838
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
5839
+  (0.1ms) rollback transaction
5840
+  (0.0ms) begin transaction
5841
+ Processing by AuditRails::AuditsController#create as HTML
5842
+ Completed 500 Internal Server Error in 1ms
5843
+  (0.1ms) rollback transaction
5844
+  (0.0ms) begin transaction
5845
+  (0.1ms) rollback transaction
5846
+  (0.0ms) begin transaction
5847
+  (0.1ms) rollback transaction
5848
+  (0.0ms) begin transaction
5849
+  (0.0ms) rollback transaction
5850
+ Connecting to database specified by database.yml
5851
+ Connecting to database specified by database.yml
5852
+  (0.3ms) begin transaction
5853
+ Processing by AnonymousController#login as HTML
5854
+ Parameters: {"id"=>"1"}
5855
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5856
+ Completed 500 Internal Server Error in 8ms
5857
+  (0.1ms) rollback transaction
5858
+  (0.0ms) begin transaction
5859
+  (0.0ms) rollback transaction
5860
+  (0.0ms) begin transaction
5861
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5862
+  (0.1ms) rollback transaction
5863
+  (0.0ms) begin transaction
5864
+  (0.0ms) rollback transaction
5865
+  (0.0ms) begin transaction
5866
+  (0.0ms) rollback transaction
5867
+  (0.1ms) begin transaction
5868
+ Processing by AuditRails::AuditsController#analytics as HTML
5869
+ Completed 200 OK in 30ms (Views: 29.9ms | ActiveRecord: 0.0ms)
5870
+  (0.1ms) rollback transaction
5871
+  (0.0ms) begin transaction
5872
+  (0.0ms) rollback transaction
5873
+  (0.0ms) begin transaction
5874
+  (0.0ms) rollback transaction
5875
+  (0.0ms) begin transaction
5876
+ Processing by AuditRails::AuditsController#create as HTML
5877
+ Completed 500 Internal Server Error in 1ms
5878
+  (0.1ms) rollback transaction
5879
+  (0.1ms) begin transaction
5880
+  (0.1ms) rollback transaction
5881
+  (0.0ms) begin transaction
5882
+  (0.0ms) rollback transaction
5883
+  (0.0ms) begin transaction
5884
+  (0.0ms) rollback transaction
5885
+ Connecting to database specified by database.yml
5886
+  (0.3ms) begin transaction
5887
+ Processing by AnonymousController#login as HTML
5888
+ Parameters: {"id"=>"1"}
5889
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5890
+ Completed 500 Internal Server Error in 8ms
5891
+  (0.1ms) rollback transaction
5892
+  (0.0ms) begin transaction
5893
+  (0.0ms) rollback transaction
5894
+  (0.0ms) begin transaction
5895
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5896
+  (0.1ms) rollback transaction
5897
+  (0.0ms) begin transaction
5898
+  (0.0ms) rollback transaction
5899
+  (0.0ms) begin transaction
5900
+  (0.0ms) rollback transaction
5901
+  (0.0ms) begin transaction
5902
+  (0.0ms) rollback transaction
5903
+  (0.0ms) begin transaction
5904
+  (0.0ms) rollback transaction
5905
+  (0.0ms) begin transaction
5906
+ Processing by AuditRails::AuditsController#analytics as HTML
5907
+ Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.0ms)
5908
+  (0.1ms) rollback transaction
5909
+  (0.1ms) begin transaction
5910
+ Processing by AuditRails::AuditsController#create as HTML
5911
+ Completed 500 Internal Server Error in 0ms
5912
+  (0.1ms) rollback transaction
5913
+  (0.0ms) begin transaction
5914
+  (0.1ms) rollback transaction
5915
+  (0.0ms) begin transaction
5916
+  (0.0ms) rollback transaction
5917
+  (0.0ms) begin transaction
5918
+  (0.0ms) rollback transaction
5919
+ Connecting to database specified by database.yml
5920
+  (0.3ms) begin transaction
5921
+ Processing by AnonymousController#login as HTML
5922
+ Parameters: {"id"=>"1"}
5923
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5924
+ Completed 500 Internal Server Error in 8ms
5925
+  (0.1ms) rollback transaction
5926
+  (0.1ms) begin transaction
5927
+ Processing by AuditRails::AuditsController#analytics as HTML
5928
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
5929
+  (0.1ms) rollback transaction
5930
+  (0.1ms) begin transaction
5931
+ Processing by AuditRails::AuditsController#create as HTML
5932
+ Completed 500 Internal Server Error in 0ms
5933
+  (0.1ms) rollback transaction
5934
+  (0.0ms) begin transaction
5935
+  (0.0ms) rollback transaction
5936
+  (0.0ms) begin transaction
5937
+  (0.1ms) rollback transaction
5938
+  (0.1ms) begin transaction
5939
+  (0.1ms) rollback transaction
5940
+  (0.0ms) begin transaction
5941
+  (0.0ms) rollback transaction
5942
+  (0.0ms) begin transaction
5943
+  (0.0ms) rollback transaction
5944
+  (0.0ms) begin transaction
5945
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5946
+  (0.1ms) rollback transaction
5947
+  (0.0ms) begin transaction
5948
+  (0.0ms) rollback transaction
5949
+  (0.0ms) begin transaction
5950
+  (0.0ms) rollback transaction
5951
+  (0.1ms) begin transaction
5952
+  (0.0ms) rollback transaction
5953
+ Connecting to database specified by database.yml
5954
+  (0.3ms) begin transaction
5955
+  (0.0ms) rollback transaction
5956
+  (0.1ms) begin transaction
5957
+  (0.0ms) rollback transaction
5958
+  (0.0ms) begin transaction
5959
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5960
+  (0.1ms) rollback transaction
5961
+  (0.2ms) begin transaction
5962
+  (0.0ms) rollback transaction
5963
+  (0.1ms) begin transaction
5964
+ Processing by AuditRails::AuditsController#create as HTML
5965
+ Completed 500 Internal Server Error in 0ms
5966
+  (0.1ms) rollback transaction
5967
+  (0.0ms) begin transaction
5968
+  (0.1ms) rollback transaction
5969
+  (0.0ms) begin transaction
5970
+  (0.1ms) rollback transaction
5971
+  (0.0ms) begin transaction
5972
+  (0.0ms) rollback transaction
5973
+  (0.0ms) begin transaction
5974
+  (0.0ms) rollback transaction
5975
+  (0.0ms) begin transaction
5976
+  (0.0ms) rollback transaction
5977
+  (0.0ms) begin transaction
5978
+ Processing by AuditRails::AuditsController#analytics as HTML
5979
+ Completed 200 OK in 40ms (Views: 39.2ms | ActiveRecord: 0.0ms)
5980
+  (0.1ms) rollback transaction
5981
+  (0.1ms) begin transaction
5982
+ Processing by AnonymousController#login as HTML
5983
+ Parameters: {"id"=>"1"}
5984
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5985
+ Completed 500 Internal Server Error in 2ms
5986
+  (0.1ms) rollback transaction
5987
+ Connecting to database specified by database.yml
5988
+  (0.3ms) begin transaction
5989
+ Processing by AnonymousController#login as HTML
5990
+ Parameters: {"id"=>"1"}
5991
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
5992
+ Completed 500 Internal Server Error in 8ms
5993
+  (0.1ms) rollback transaction
5994
+  (0.1ms) begin transaction
5995
+ Processing by AuditRails::AuditsController#analytics as HTML
5996
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
5997
+  (0.1ms) rollback transaction
5998
+  (0.1ms) begin transaction
5999
+ Processing by AuditRails::AuditsController#create as HTML
6000
+ Completed 500 Internal Server Error in 25ms
6001
+  (0.1ms) rollback transaction
6002
+  (0.0ms) begin transaction
6003
+  (0.0ms) rollback transaction
6004
+  (0.0ms) begin transaction
6005
+  (0.0ms) rollback transaction
6006
+  (0.0ms) begin transaction
6007
+  (0.1ms) rollback transaction
6008
+  (0.1ms) begin transaction
6009
+  (0.1ms) rollback transaction
6010
+  (0.1ms) begin transaction
6011
+  (0.0ms) rollback transaction
6012
+  (0.0ms) begin transaction
6013
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6014
+  (0.1ms) rollback transaction
6015
+  (0.0ms) begin transaction
6016
+  (0.0ms) rollback transaction
6017
+  (0.0ms) begin transaction
6018
+  (0.0ms) rollback transaction
6019
+  (0.0ms) begin transaction
6020
+  (0.0ms) rollback transaction
6021
+ Connecting to database specified by database.yml
6022
+  (0.3ms) begin transaction
6023
+ Processing by AnonymousController#login as HTML
6024
+ Parameters: {"id"=>"1"}
6025
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6026
+ Completed 500 Internal Server Error in 8ms
6027
+  (0.1ms) rollback transaction
6028
+  (0.0ms) begin transaction
6029
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6030
+  (0.1ms) rollback transaction
6031
+  (0.0ms) begin transaction
6032
+  (0.0ms) rollback transaction
6033
+  (0.0ms) begin transaction
6034
+  (0.0ms) rollback transaction
6035
+  (0.0ms) begin transaction
6036
+  (0.0ms) rollback transaction
6037
+  (0.0ms) begin transaction
6038
+  (0.1ms) rollback transaction
6039
+  (0.1ms) begin transaction
6040
+  (0.0ms) rollback transaction
6041
+  (0.0ms) begin transaction
6042
+  (0.0ms) rollback transaction
6043
+  (0.1ms) begin transaction
6044
+ Processing by AuditRails::AuditsController#create as HTML
6045
+ Completed 500 Internal Server Error in 0ms
6046
+  (0.0ms) rollback transaction
6047
+  (0.0ms) begin transaction
6048
+  (0.1ms) SAVEPOINT active_record_1
6049
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 05:45:20 UTC +00:00], ["description", "User logged on at 2013-09-28 05:45:20 UTC"], ["updated_at", Sun, 29 Sep 2013 05:45:20 UTC +00:00], ["user_name", "Fake User"]]
6050
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6051
+  (0.0ms) SAVEPOINT active_record_1
6052
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 05:45:20 UTC +00:00], ["description", "User logged on at 2013-09-27 05:45:20 UTC"], ["updated_at", Sun, 29 Sep 2013 05:45:20 UTC +00:00], ["user_name", "Fake User"]]
6053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6054
+  (0.0ms) SAVEPOINT active_record_1
6055
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 05:45:20 UTC +00:00], ["description", "User logged on at 2013-09-26 05:45:20 UTC"], ["updated_at", Sun, 29 Sep 2013 05:45:20 UTC +00:00], ["user_name", "Fake User"]]
6056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6057
+ Processing by AuditRails::AuditsController#index as HTML
6058
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" 
6059
+ Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.1ms)
6060
+  (1.8ms) rollback transaction
6061
+  (0.1ms) begin transaction
6062
+  (0.0ms) rollback transaction
6063
+  (0.0ms) begin transaction
6064
+ Processing by AuditRails::AuditsController#analytics as HTML
6065
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
6066
+  (0.1ms) rollback transaction
6067
+ Connecting to database specified by database.yml
6068
+  (0.3ms) begin transaction
6069
+ Processing by AnonymousController#login as HTML
6070
+ Parameters: {"id"=>"1"}
6071
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6072
+ Completed 500 Internal Server Error in 8ms
6073
+  (0.1ms) rollback transaction
6074
+  (0.1ms) begin transaction
6075
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6076
+  (0.1ms) rollback transaction
6077
+  (0.1ms) begin transaction
6078
+  (0.0ms) rollback transaction
6079
+  (0.0ms) begin transaction
6080
+  (0.0ms) rollback transaction
6081
+  (0.0ms) begin transaction
6082
+  (0.0ms) rollback transaction
6083
+  (0.0ms) begin transaction
6084
+  (0.1ms) rollback transaction
6085
+  (0.1ms) begin transaction
6086
+  (0.0ms) rollback transaction
6087
+  (0.1ms) begin transaction
6088
+  (0.0ms) rollback transaction
6089
+  (0.0ms) begin transaction
6090
+ Processing by AuditRails::AuditsController#create as HTML
6091
+ Completed 500 Internal Server Error in 0ms
6092
+  (0.1ms) rollback transaction
6093
+  (0.0ms) begin transaction
6094
+  (0.1ms) SAVEPOINT active_record_1
6095
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["description", "User logged on at 2013-09-28 05:46:55 UTC"], ["updated_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["user_name", "Fake User"]]
6096
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6097
+  (0.0ms) SAVEPOINT active_record_1
6098
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["description", "User logged on at 2013-09-27 05:46:55 UTC"], ["updated_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["user_name", "Fake User"]]
6099
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6100
+  (0.0ms) SAVEPOINT active_record_1
6101
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["description", "User logged on at 2013-09-26 05:46:55 UTC"], ["updated_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["user_name", "Fake User"]]
6102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6103
+ Processing by AuditRails::AuditsController#index as HTML
6104
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" 
6105
+ Completed 200 OK in 40ms (Views: 38.1ms | ActiveRecord: 0.1ms)
6106
+  (2.6ms) rollback transaction
6107
+  (0.1ms) begin transaction
6108
+  (0.1ms) SAVEPOINT active_record_1
6109
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["description", "User logged on at 2013-09-28 05:46:55 UTC"], ["updated_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["user_name", "Fake User"]]
6110
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6111
+  (0.0ms) SAVEPOINT active_record_1
6112
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["description", "User logged on at 2013-09-27 05:46:55 UTC"], ["updated_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["user_name", "Fake User"]]
6113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6114
+  (0.0ms) SAVEPOINT active_record_1
6115
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["description", "User logged on at 2013-09-26 05:46:55 UTC"], ["updated_at", Sun, 29 Sep 2013 05:46:55 UTC +00:00], ["user_name", "Fake User"]]
6116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6117
+ Processing by AuditRails::AuditsController#index as XLS
6118
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" 
6119
+ Sent data audits.xls (1.7ms)
6120
+ Completed 200 OK in 9ms (Views: 1.6ms | ActiveRecord: 0.1ms)
6121
+  (0.4ms) rollback transaction
6122
+  (0.1ms) begin transaction
6123
+ Processing by AuditRails::AuditsController#analytics as HTML
6124
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
6125
+  (0.1ms) rollback transaction
6126
+ Connecting to database specified by database.yml
6127
+  (0.4ms) begin transaction
6128
+ Processing by AnonymousController#login as HTML
6129
+ Parameters: {"id"=>"1"}
6130
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6131
+ Completed 500 Internal Server Error in 16ms
6132
+  (0.1ms) rollback transaction
6133
+  (0.1ms) begin transaction
6134
+  (0.1ms) rollback transaction
6135
+  (0.0ms) begin transaction
6136
+  (0.1ms) rollback transaction
6137
+  (0.1ms) begin transaction
6138
+  (0.1ms) rollback transaction
6139
+  (0.1ms) begin transaction
6140
+ Processing by AuditRails::AuditsController#create as HTML
6141
+ Completed 500 Internal Server Error in 0ms
6142
+  (0.1ms) rollback transaction
6143
+  (0.0ms) begin transaction
6144
+  (0.1ms) SAVEPOINT active_record_1
6145
+ SQL (0.6ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["description", "User logged on at 2013-09-28 10:42:28 UTC"], ["updated_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["user_name", "Fake User"]]
6146
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6147
+  (0.0ms) SAVEPOINT active_record_1
6148
+ SQL (0.6ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["description", "User logged on at 2013-09-27 10:42:28 UTC"], ["updated_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["user_name", "Fake User"]]
6149
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6150
+  (0.1ms) SAVEPOINT active_record_1
6151
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["description", "User logged on at 2013-09-26 10:42:28 UTC"], ["updated_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["user_name", "Fake User"]]
6152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6153
+ Processing by AuditRails::AuditsController#index as HTML
6154
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6155
+ Completed 200 OK in 13ms (Views: 10.9ms | ActiveRecord: 0.1ms)
6156
+  (0.4ms) rollback transaction
6157
+  (0.1ms) begin transaction
6158
+  (0.1ms) SAVEPOINT active_record_1
6159
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["description", "User logged on at 2013-09-28 10:42:28 UTC"], ["updated_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["user_name", "Fake User"]]
6160
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6161
+  (0.1ms) SAVEPOINT active_record_1
6162
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["description", "User logged on at 2013-09-27 10:42:28 UTC"], ["updated_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["user_name", "Fake User"]]
6163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6164
+  (0.1ms) SAVEPOINT active_record_1
6165
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["description", "User logged on at 2013-09-26 10:42:28 UTC"], ["updated_at", Sun, 29 Sep 2013 10:42:28 UTC +00:00], ["user_name", "Fake User"]]
6166
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6167
+ Processing by AuditRails::AuditsController#index as XLS
6168
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6169
+ Sent data audits.xls (1.5ms)
6170
+ Completed 200 OK in 12ms (Views: 1.3ms | ActiveRecord: 0.1ms)
6171
+  (0.3ms) rollback transaction
6172
+  (0.1ms) begin transaction
6173
+ Processing by AuditRails::AuditsController#analytics as HTML
6174
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
6175
+  (0.1ms) rollback transaction
6176
+  (0.1ms) begin transaction
6177
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6178
+  (0.1ms) rollback transaction
6179
+  (0.1ms) begin transaction
6180
+  (0.0ms) rollback transaction
6181
+  (0.0ms) begin transaction
6182
+  (0.0ms) rollback transaction
6183
+  (0.0ms) begin transaction
6184
+  (0.0ms) rollback transaction
6185
+ Connecting to database specified by database.yml
6186
+  (0.3ms) begin transaction
6187
+  (0.0ms) SAVEPOINT active_record_1
6188
+ SQL (2.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["description", "User logged on at 2013-09-28 10:45:56 UTC"], ["updated_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["user_name", "Fake User"]]
6189
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6190
+  (0.0ms) SAVEPOINT active_record_1
6191
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["description", "User logged on at 2013-09-27 10:45:56 UTC"], ["updated_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["user_name", "Fake User"]]
6192
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6193
+  (0.0ms) SAVEPOINT active_record_1
6194
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["description", "User logged on at 2013-09-26 10:45:56 UTC"], ["updated_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["user_name", "Fake User"]]
6195
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6196
+ Processing by AuditRails::AuditsController#index as HTML
6197
+ AuditRails::Audit Load (0.2ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" 
6198
+ Rendered /Users/gouravtiwari/audit_rails/app/views/audit_rails/audits/index.html.erb within layouts/audit_rails/application (1.0ms)
6199
+ Completed 200 OK in 9ms (Views: 7.1ms | ActiveRecord: 0.2ms)
6200
+  (1.9ms) rollback transaction
6201
+  (0.1ms) begin transaction
6202
+  (0.0ms) SAVEPOINT active_record_1
6203
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["description", "User logged on at 2013-09-28 10:45:56 UTC"], ["updated_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["user_name", "Fake User"]]
6204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6205
+  (0.0ms) SAVEPOINT active_record_1
6206
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["description", "User logged on at 2013-09-27 10:45:56 UTC"], ["updated_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["user_name", "Fake User"]]
6207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6208
+  (0.1ms) SAVEPOINT active_record_1
6209
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["description", "User logged on at 2013-09-26 10:45:56 UTC"], ["updated_at", Sun, 29 Sep 2013 10:45:56 UTC +00:00], ["user_name", "Fake User"]]
6210
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6211
+ Processing by AuditRails::AuditsController#index as XLS
6212
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" 
6213
+ Sent data audits.xls (1.1ms)
6214
+ Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.1ms)
6215
+  (0.5ms) rollback transaction
6216
+  (0.1ms) begin transaction
6217
+ Processing by AuditRails::AuditsController#create as HTML
6218
+ Completed 500 Internal Server Error in 0ms
6219
+  (0.1ms) rollback transaction
6220
+  (0.0ms) begin transaction
6221
+  (0.0ms) rollback transaction
6222
+  (0.0ms) begin transaction
6223
+  (0.0ms) rollback transaction
6224
+  (0.0ms) begin transaction
6225
+  (0.0ms) rollback transaction
6226
+  (0.0ms) begin transaction
6227
+ Processing by AuditRails::AuditsController#analytics as HTML
6228
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
6229
+  (0.1ms) rollback transaction
6230
+  (0.0ms) begin transaction
6231
+  (0.0ms) rollback transaction
6232
+  (0.0ms) begin transaction
6233
+  (0.0ms) rollback transaction
6234
+  (0.0ms) begin transaction
6235
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6236
+  (0.0ms) rollback transaction
6237
+  (0.1ms) begin transaction
6238
+  (0.0ms) rollback transaction
6239
+  (0.0ms) begin transaction
6240
+ Processing by AnonymousController#login as HTML
6241
+ Parameters: {"id"=>"1"}
6242
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6243
+ Completed 500 Internal Server Error in 2ms
6244
+  (0.1ms) rollback transaction
6245
+ Connecting to database specified by database.yml
6246
+  (0.3ms) begin transaction
6247
+  (0.0ms) rollback transaction
6248
+  (0.1ms) begin transaction
6249
+  (0.0ms) rollback transaction
6250
+  (0.0ms) begin transaction
6251
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6252
+  (0.1ms) rollback transaction
6253
+  (0.1ms) begin transaction
6254
+  (0.0ms) rollback transaction
6255
+  (0.1ms) begin transaction
6256
+ Processing by AuditRails::AuditsController#create as HTML
6257
+ Completed 500 Internal Server Error in 0ms
6258
+  (0.1ms) rollback transaction
6259
+  (0.1ms) begin transaction
6260
+  (0.1ms) SAVEPOINT active_record_1
6261
+ SQL (0.6ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["description", "User logged on at 2013-09-28 10:58:57 UTC"], ["updated_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["user_name", "Fake User"]]
6262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6263
+  (0.0ms) SAVEPOINT active_record_1
6264
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["description", "User logged on at 2013-09-27 10:58:57 UTC"], ["updated_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["user_name", "Fake User"]]
6265
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6266
+  (0.0ms) SAVEPOINT active_record_1
6267
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["description", "User logged on at 2013-09-26 10:58:57 UTC"], ["updated_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["user_name", "Fake User"]]
6268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6269
+ Processing by AuditRails::AuditsController#index as HTML
6270
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6271
+ Completed 200 OK in 36ms (Views: 34.0ms | ActiveRecord: 0.1ms)
6272
+  (1.9ms) rollback transaction
6273
+  (0.1ms) begin transaction
6274
+  (0.0ms) SAVEPOINT active_record_1
6275
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["description", "User logged on at 2013-09-28 10:58:57 UTC"], ["updated_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["user_name", "Fake User"]]
6276
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6277
+  (0.0ms) SAVEPOINT active_record_1
6278
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["description", "User logged on at 2013-09-27 10:58:57 UTC"], ["updated_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["user_name", "Fake User"]]
6279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6280
+  (0.0ms) SAVEPOINT active_record_1
6281
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["description", "User logged on at 2013-09-26 10:58:57 UTC"], ["updated_at", Sun, 29 Sep 2013 10:58:57 UTC +00:00], ["user_name", "Fake User"]]
6282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6283
+ Processing by AuditRails::AuditsController#index as XLS
6284
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6285
+ Sent data audits.xls (1.1ms)
6286
+ Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.1ms)
6287
+  (0.6ms) rollback transaction
6288
+  (0.1ms) begin transaction
6289
+  (0.1ms) rollback transaction
6290
+  (0.0ms) begin transaction
6291
+  (0.0ms) rollback transaction
6292
+  (0.0ms) begin transaction
6293
+  (0.0ms) rollback transaction
6294
+  (0.0ms) begin transaction
6295
+ Processing by AuditRails::AuditsController#analytics as HTML
6296
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
6297
+  (0.1ms) rollback transaction
6298
+  (0.1ms) begin transaction
6299
+ Processing by AnonymousController#login as HTML
6300
+ Parameters: {"id"=>"1"}
6301
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6302
+ Completed 500 Internal Server Error in 2ms
6303
+  (0.1ms) rollback transaction
6304
+ Connecting to database specified by database.yml
6305
+  (0.3ms) begin transaction
6306
+ Processing by AnonymousController#login as HTML
6307
+ Parameters: {"id"=>"1"}
6308
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6309
+  (0.1ms) SAVEPOINT active_record_1
6310
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", "User logged in"], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6311
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6312
+ Rendered text template (0.0ms)
6313
+ Completed 200 OK in 58ms (Views: 29.9ms | ActiveRecord: 1.8ms)
6314
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6315
+  (2.0ms) rollback transaction
6316
+  (0.1ms) begin transaction
6317
+  (0.0ms) rollback transaction
6318
+  (0.0ms) begin transaction
6319
+  (0.0ms) rollback transaction
6320
+  (0.0ms) begin transaction
6321
+  (0.1ms) rollback transaction
6322
+  (0.1ms) begin transaction
6323
+ Processing by AuditRails::AuditsController#create as HTML
6324
+  (0.0ms) SAVEPOINT active_record_1
6325
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6326
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6327
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.5ms)
6328
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6329
+  (0.3ms) rollback transaction
6330
+  (0.0ms) begin transaction
6331
+  (0.0ms) SAVEPOINT active_record_1
6332
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", "User logged on at 2013-09-28 11:01:10 UTC"], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6333
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6334
+  (0.1ms) SAVEPOINT active_record_1
6335
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", "User logged on at 2013-09-27 11:01:10 UTC"], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6336
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6337
+  (0.0ms) SAVEPOINT active_record_1
6338
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", "User logged on at 2013-09-26 11:01:10 UTC"], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6339
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6340
+ Processing by AuditRails::AuditsController#index as HTML
6341
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6342
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.1ms)
6343
+  (0.4ms) rollback transaction
6344
+  (0.1ms) begin transaction
6345
+  (0.0ms) SAVEPOINT active_record_1
6346
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", "User logged on at 2013-09-28 11:01:10 UTC"], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6348
+  (0.0ms) SAVEPOINT active_record_1
6349
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", "User logged on at 2013-09-27 11:01:10 UTC"], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6351
+  (0.0ms) SAVEPOINT active_record_1
6352
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", "User logged on at 2013-09-26 11:01:10 UTC"], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6354
+ Processing by AuditRails::AuditsController#index as XLS
6355
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6356
+ Sent data audits.xls (0.4ms)
6357
+ Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.1ms)
6358
+  (0.5ms) rollback transaction
6359
+  (0.1ms) begin transaction
6360
+ Processing by AuditRails::AuditsController#analytics as HTML
6361
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
6362
+  (0.1ms) rollback transaction
6363
+  (0.0ms) begin transaction
6364
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6365
+  (0.1ms) rollback transaction
6366
+  (0.0ms) begin transaction
6367
+  (0.0ms) SAVEPOINT active_record_1
6368
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "John Smith"]]
6369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6370
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6371
+  (0.3ms) rollback transaction
6372
+  (0.1ms) begin transaction
6373
+  (0.0ms) SAVEPOINT active_record_1
6374
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "John Smith"]]
6375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6376
+  (0.0ms) SAVEPOINT active_record_1
6377
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6378
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6379
+  (0.0ms) SAVEPOINT active_record_1
6380
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "John Smith"]]
6381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6382
+  (0.0ms) SAVEPOINT active_record_1
6383
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6385
+  (0.0ms) SAVEPOINT active_record_1
6386
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "John Smith"]]
6387
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6388
+  (0.0ms) SAVEPOINT active_record_1
6389
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6390
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6391
+  (0.2ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
6392
+  (0.4ms) rollback transaction
6393
+  (0.1ms) begin transaction
6394
+  (0.0ms) SAVEPOINT active_record_1
6395
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "John Smith"]]
6396
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6397
+  (0.0ms) SAVEPOINT active_record_1
6398
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6400
+  (0.0ms) SAVEPOINT active_record_1
6401
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "John Smith"]]
6402
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6403
+  (0.0ms) SAVEPOINT active_record_1
6404
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6406
+  (0.0ms) SAVEPOINT active_record_1
6407
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "John Smith"]]
6408
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6409
+  (0.0ms) SAVEPOINT active_record_1
6410
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:01:10 UTC +00:00], ["user_name", "Fake User"]]
6411
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6412
+  (0.1ms) SELECT COUNT(*) AS count_all, controller,action AS controller_action FROM "audit_rails_audits" GROUP BY controller,action
6413
+  (0.4ms) rollback transaction
6414
+ Connecting to database specified by database.yml
6415
+ Connecting to database specified by database.yml
6416
+ Connecting to database specified by database.yml
6417
+  (0.3ms) begin transaction
6418
+ Processing by AnonymousController#login as HTML
6419
+ Parameters: {"id"=>"1"}
6420
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6421
+  (0.1ms) SAVEPOINT active_record_1
6422
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", "User logged in"], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6423
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6424
+ Rendered text template (0.0ms)
6425
+ Completed 200 OK in 45ms (Views: 28.4ms | ActiveRecord: 1.6ms)
6426
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6427
+  (2.0ms) rollback transaction
6428
+  (0.1ms) begin transaction
6429
+ Processing by AuditRails::AuditsController#analytics as HTML
6430
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
6431
+  (0.1ms) rollback transaction
6432
+  (0.1ms) begin transaction
6433
+  (0.0ms) SAVEPOINT active_record_1
6434
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", "User logged on at 2013-09-28 11:35:55 UTC"], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6435
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6436
+  (0.0ms) SAVEPOINT active_record_1
6437
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", "User logged on at 2013-09-27 11:35:55 UTC"], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6439
+  (0.0ms) SAVEPOINT active_record_1
6440
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", "User logged on at 2013-09-26 11:35:55 UTC"], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6442
+ Processing by AuditRails::AuditsController#index as XLS
6443
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6444
+ Sent data audits.xls (0.4ms)
6445
+ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.1ms)
6446
+  (0.6ms) rollback transaction
6447
+  (0.1ms) begin transaction
6448
+  (0.1ms) SAVEPOINT active_record_1
6449
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", "User logged on at 2013-09-28 11:35:55 UTC"], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6450
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6451
+  (0.1ms) SAVEPOINT active_record_1
6452
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", "User logged on at 2013-09-27 11:35:55 UTC"], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6454
+  (0.0ms) SAVEPOINT active_record_1
6455
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", "User logged on at 2013-09-26 11:35:55 UTC"], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6457
+ Processing by AuditRails::AuditsController#index as HTML
6458
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6459
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms)
6460
+  (0.4ms) rollback transaction
6461
+  (0.1ms) begin transaction
6462
+ Processing by AuditRails::AuditsController#create as HTML
6463
+  (0.1ms) SAVEPOINT active_record_1
6464
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6465
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6466
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.6ms)
6467
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6468
+  (0.5ms) rollback transaction
6469
+  (0.1ms) begin transaction
6470
+  (0.1ms) rollback transaction
6471
+  (0.0ms) begin transaction
6472
+  (0.0ms) rollback transaction
6473
+  (0.0ms) begin transaction
6474
+  (0.0ms) rollback transaction
6475
+  (0.0ms) begin transaction
6476
+  (0.0ms) SAVEPOINT active_record_1
6477
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "John Smith"]]
6478
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6479
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6480
+  (0.3ms) rollback transaction
6481
+  (0.0ms) begin transaction
6482
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6483
+  (0.0ms) rollback transaction
6484
+  (0.0ms) begin transaction
6485
+  (0.0ms) SAVEPOINT active_record_1
6486
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "John Smith"]]
6487
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6488
+  (0.0ms) SAVEPOINT active_record_1
6489
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6490
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6491
+  (0.0ms) SAVEPOINT active_record_1
6492
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "John Smith"]]
6493
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6494
+  (0.0ms) SAVEPOINT active_record_1
6495
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6496
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6497
+  (0.0ms) SAVEPOINT active_record_1
6498
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "John Smith"]]
6499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6500
+  (0.0ms) SAVEPOINT active_record_1
6501
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6502
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6503
+  (0.1ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
6504
+  (0.3ms) rollback transaction
6505
+  (0.0ms) begin transaction
6506
+  (0.0ms) SAVEPOINT active_record_1
6507
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "John Smith"]]
6508
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6509
+  (0.0ms) SAVEPOINT active_record_1
6510
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6512
+  (0.0ms) SAVEPOINT active_record_1
6513
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "John Smith"]]
6514
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6515
+  (0.0ms) SAVEPOINT active_record_1
6516
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6518
+  (0.0ms) SAVEPOINT active_record_1
6519
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "John Smith"]]
6520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6521
+  (0.0ms) SAVEPOINT active_record_1
6522
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:35:55 UTC +00:00], ["user_name", "Fake User"]]
6523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6524
+  (0.1ms) SELECT COUNT(*) AS count_all, controller,action AS controller_action FROM "audit_rails_audits" GROUP BY controller,action
6525
+  (0.4ms) rollback transaction
6526
+ Connecting to database specified by database.yml
6527
+  (0.3ms) begin transaction
6528
+  (0.1ms) SAVEPOINT active_record_1
6529
+ SQL (3.6ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "John Smith"]]
6530
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6531
+  (0.0ms) SAVEPOINT active_record_1
6532
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "Fake User"]]
6533
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6534
+  (0.0ms) SAVEPOINT active_record_1
6535
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "John Smith"]]
6536
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6537
+  (0.0ms) SAVEPOINT active_record_1
6538
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "Fake User"]]
6539
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6540
+  (0.0ms) SAVEPOINT active_record_1
6541
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "John Smith"]]
6542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6543
+  (0.0ms) SAVEPOINT active_record_1
6544
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "Fake User"]]
6545
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6546
+  (0.1ms) SELECT COUNT(*) AS count_all, controller,action AS controller_action FROM "audit_rails_audits" GROUP BY controller,action
6547
+  (1.9ms) rollback transaction
6548
+  (0.1ms) begin transaction
6549
+  (0.0ms) SAVEPOINT active_record_1
6550
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "John Smith"]]
6551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6552
+  (0.0ms) SAVEPOINT active_record_1
6553
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "Fake User"]]
6554
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6555
+  (0.0ms) SAVEPOINT active_record_1
6556
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "John Smith"]]
6557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6558
+  (0.0ms) SAVEPOINT active_record_1
6559
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "Fake User"]]
6560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6561
+  (0.0ms) SAVEPOINT active_record_1
6562
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "John Smith"]]
6563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6564
+  (0.0ms) SAVEPOINT active_record_1
6565
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:40 UTC +00:00], ["user_name", "Fake User"]]
6566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6567
+  (0.1ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
6568
+  (0.4ms) rollback transaction
6569
+  (0.1ms) begin transaction
6570
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6571
+  (0.1ms) rollback transaction
6572
+  (0.0ms) begin transaction
6573
+  (0.0ms) SAVEPOINT active_record_1
6574
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["user_name", "John Smith"]]
6575
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6576
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6577
+  (0.3ms) rollback transaction
6578
+  (0.1ms) begin transaction
6579
+ Processing by AuditRails::AuditsController#create as HTML
6580
+  (0.1ms) SAVEPOINT active_record_1
6581
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["user_name", "Fake User"]]
6582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6583
+ Rendered text template (0.0ms)
6584
+ Completed 200 OK in 38ms (Views: 35.4ms | ActiveRecord: 0.5ms)
6585
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6586
+  (0.3ms) rollback transaction
6587
+  (0.1ms) begin transaction
6588
+  (0.0ms) rollback transaction
6589
+  (0.0ms) begin transaction
6590
+  (0.0ms) rollback transaction
6591
+  (0.0ms) begin transaction
6592
+  (0.0ms) rollback transaction
6593
+  (0.1ms) begin transaction
6594
+  (0.1ms) SAVEPOINT active_record_1
6595
+ SQL (0.6ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["description", "User logged on at 2013-09-28 11:37:41 UTC"], ["updated_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["user_name", "Fake User"]]
6596
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6597
+  (0.0ms) SAVEPOINT active_record_1
6598
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["description", "User logged on at 2013-09-27 11:37:41 UTC"], ["updated_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["user_name", "Fake User"]]
6599
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6600
+  (0.0ms) SAVEPOINT active_record_1
6601
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["description", "User logged on at 2013-09-26 11:37:41 UTC"], ["updated_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["user_name", "Fake User"]]
6602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6603
+ Processing by AuditRails::AuditsController#index as HTML
6604
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6605
+ Completed 200 OK in 4ms (Views: 3.0ms | ActiveRecord: 0.1ms)
6606
+  (0.4ms) rollback transaction
6607
+  (0.1ms) begin transaction
6608
+  (0.1ms) SAVEPOINT active_record_1
6609
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["description", "User logged on at 2013-09-28 11:37:41 UTC"], ["updated_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["user_name", "Fake User"]]
6610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6611
+  (0.0ms) SAVEPOINT active_record_1
6612
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["description", "User logged on at 2013-09-27 11:37:41 UTC"], ["updated_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["user_name", "Fake User"]]
6613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6614
+  (0.0ms) SAVEPOINT active_record_1
6615
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["description", "User logged on at 2013-09-26 11:37:41 UTC"], ["updated_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["user_name", "Fake User"]]
6616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6617
+ Processing by AuditRails::AuditsController#index as XLS
6618
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6619
+ Sent data audits.xls (0.4ms)
6620
+ Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.1ms)
6621
+  (0.5ms) rollback transaction
6622
+  (0.1ms) begin transaction
6623
+ Processing by AuditRails::AuditsController#analytics as HTML
6624
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
6625
+  (0.1ms) rollback transaction
6626
+  (0.0ms) begin transaction
6627
+ Processing by AnonymousController#login as HTML
6628
+ Parameters: {"id"=>"1"}
6629
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6630
+  (0.0ms) SAVEPOINT active_record_1
6631
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["description", "User logged in"], ["updated_at", Sun, 29 Sep 2013 11:37:41 UTC +00:00], ["user_name", "Fake User"]]
6632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6633
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.6ms)
6634
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6635
+  (0.6ms) rollback transaction
6636
+ Connecting to database specified by database.yml
6637
+ Connecting to database specified by database.yml
6638
+ Connecting to database specified by database.yml
6639
+  (0.3ms) begin transaction
6640
+ Processing by AnonymousController#login as HTML
6641
+ Parameters: {"id"=>"1"}
6642
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6643
+  (0.1ms) SAVEPOINT active_record_1
6644
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", "User logged in"], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "Fake User"]]
6645
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6646
+ Rendered text template (0.0ms)
6647
+ Completed 200 OK in 45ms (Views: 28.2ms | ActiveRecord: 1.6ms)
6648
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6649
+  (2.5ms) rollback transaction
6650
+  (0.1ms) begin transaction
6651
+  (0.0ms) SAVEPOINT active_record_1
6652
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "John Smith"]]
6653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6654
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6655
+  (0.3ms) rollback transaction
6656
+  (0.1ms) begin transaction
6657
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6658
+  (0.0ms) rollback transaction
6659
+  (0.0ms) begin transaction
6660
+  (0.0ms) SAVEPOINT active_record_1
6661
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "John Smith"]]
6662
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6663
+  (0.0ms) SAVEPOINT active_record_1
6664
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "Fake User"]]
6665
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6666
+  (0.0ms) SAVEPOINT active_record_1
6667
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "John Smith"]]
6668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6669
+  (0.0ms) SAVEPOINT active_record_1
6670
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "Fake User"]]
6671
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6672
+  (0.0ms) SAVEPOINT active_record_1
6673
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "John Smith"]]
6674
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6675
+  (0.0ms) SAVEPOINT active_record_1
6676
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "Fake User"]]
6677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6678
+  (0.1ms) SELECT COUNT(*) AS count_all, controller,action AS controller_action FROM "audit_rails_audits" GROUP BY controller,action
6679
+  (0.3ms) rollback transaction
6680
+  (0.0ms) begin transaction
6681
+  (0.0ms) SAVEPOINT active_record_1
6682
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "John Smith"]]
6683
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6684
+  (0.0ms) SAVEPOINT active_record_1
6685
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "Fake User"]]
6686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6687
+  (0.0ms) SAVEPOINT active_record_1
6688
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "John Smith"]]
6689
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6690
+  (0.0ms) SAVEPOINT active_record_1
6691
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "Fake User"]]
6692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6693
+  (0.0ms) SAVEPOINT active_record_1
6694
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "John Smith"]]
6695
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6696
+  (0.0ms) SAVEPOINT active_record_1
6697
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "Fake User"]]
6698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6699
+  (0.1ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
6700
+  (0.4ms) rollback transaction
6701
+  (0.1ms) begin transaction
6702
+ Processing by AuditRails::AuditsController#analytics as HTML
6703
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
6704
+  (0.1ms) rollback transaction
6705
+  (0.0ms) begin transaction
6706
+ Processing by AuditRails::AuditsController#create as HTML
6707
+  (0.1ms) SAVEPOINT active_record_1
6708
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:18:55 UTC +00:00], ["user_name", "Fake User"]]
6709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6710
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.6ms)
6711
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6712
+  (0.3ms) rollback transaction
6713
+  (0.1ms) begin transaction
6714
+  (0.1ms) rollback transaction
6715
+  (0.0ms) begin transaction
6716
+  (0.0ms) rollback transaction
6717
+  (0.0ms) begin transaction
6718
+  (0.0ms) rollback transaction
6719
+  (0.0ms) begin transaction
6720
+  (0.1ms) SAVEPOINT active_record_1
6721
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["description", "User logged on at 2013-09-28 12:18:56 UTC"], ["updated_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["user_name", "Fake User"]]
6722
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6723
+  (0.0ms) SAVEPOINT active_record_1
6724
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["description", "User logged on at 2013-09-27 12:18:56 UTC"], ["updated_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["user_name", "Fake User"]]
6725
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6726
+  (0.0ms) SAVEPOINT active_record_1
6727
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["description", "User logged on at 2013-09-26 12:18:56 UTC"], ["updated_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["user_name", "Fake User"]]
6728
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6729
+ Processing by AuditRails::AuditsController#index as XLS
6730
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" 
6731
+ Sent data audits.xls (0.5ms)
6732
+ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.1ms)
6733
+  (0.5ms) rollback transaction
6734
+  (0.1ms) begin transaction
6735
+  (0.1ms) SAVEPOINT active_record_1
6736
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["description", "User logged on at 2013-09-28 12:18:56 UTC"], ["updated_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["user_name", "Fake User"]]
6737
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6738
+  (0.0ms) SAVEPOINT active_record_1
6739
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["description", "User logged on at 2013-09-27 12:18:56 UTC"], ["updated_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["user_name", "Fake User"]]
6740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6741
+  (0.0ms) SAVEPOINT active_record_1
6742
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["description", "User logged on at 2013-09-26 12:18:56 UTC"], ["updated_at", Sun, 29 Sep 2013 12:18:56 UTC +00:00], ["user_name", "Fake User"]]
6743
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6744
+ Processing by AuditRails::AuditsController#index as HTML
6745
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" 
6746
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms)
6747
+  (0.4ms) rollback transaction
6748
+ Connecting to database specified by database.yml
6749
+  (0.3ms) begin transaction
6750
+  (0.0ms) SAVEPOINT active_record_1
6751
+ SQL (3.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "John Smith"]]
6752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6753
+  (0.0ms) SAVEPOINT active_record_1
6754
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6755
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6756
+  (0.0ms) SAVEPOINT active_record_1
6757
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "John Smith"]]
6758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6759
+  (0.0ms) SAVEPOINT active_record_1
6760
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6761
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6762
+  (0.0ms) SAVEPOINT active_record_1
6763
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "John Smith"]]
6764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6765
+  (0.0ms) SAVEPOINT active_record_1
6766
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6767
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6768
+  (0.1ms) SELECT COUNT(*) AS count_all, controller,action AS controller_action FROM "audit_rails_audits" GROUP BY controller,action
6769
+  (2.5ms) rollback transaction
6770
+  (0.1ms) begin transaction
6771
+  (0.0ms) SAVEPOINT active_record_1
6772
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "John Smith"]]
6773
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6774
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6775
+  (0.3ms) rollback transaction
6776
+  (0.1ms) begin transaction
6777
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6778
+  (0.0ms) rollback transaction
6779
+  (0.0ms) begin transaction
6780
+  (0.0ms) SAVEPOINT active_record_1
6781
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "John Smith"]]
6782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6783
+  (0.0ms) SAVEPOINT active_record_1
6784
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6786
+  (0.0ms) SAVEPOINT active_record_1
6787
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "John Smith"]]
6788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6789
+  (0.0ms) SAVEPOINT active_record_1
6790
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6791
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6792
+  (0.0ms) SAVEPOINT active_record_1
6793
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "John Smith"]]
6794
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6795
+  (0.0ms) SAVEPOINT active_record_1
6796
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6797
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6798
+  (0.1ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
6799
+  (0.4ms) rollback transaction
6800
+  (0.1ms) begin transaction
6801
+ Processing by AnonymousController#login as HTML
6802
+ Parameters: {"id"=>"1"}
6803
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6804
+  (0.0ms) SAVEPOINT active_record_1
6805
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", "User logged in"], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6807
+ Rendered text template (0.0ms)
6808
+ Completed 200 OK in 32ms (Views: 4.7ms | ActiveRecord: 0.6ms)
6809
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6810
+  (0.5ms) rollback transaction
6811
+  (0.1ms) begin transaction
6812
+ Processing by AuditRails::AuditsController#create as HTML
6813
+  (0.1ms) SAVEPOINT active_record_1
6814
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6815
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6816
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.5ms)
6817
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6818
+  (0.3ms) rollback transaction
6819
+  (0.1ms) begin transaction
6820
+  (0.0ms) rollback transaction
6821
+  (0.1ms) begin transaction
6822
+  (0.0ms) rollback transaction
6823
+  (0.1ms) begin transaction
6824
+  (0.0ms) rollback transaction
6825
+  (0.0ms) begin transaction
6826
+ Processing by AuditRails::AuditsController#analytics as HTML
6827
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
6828
+  (0.1ms) rollback transaction
6829
+  (0.0ms) begin transaction
6830
+  (0.1ms) SAVEPOINT active_record_1
6831
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", "User logged on at 2013-09-28 12:19:29 UTC"], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6833
+  (0.0ms) SAVEPOINT active_record_1
6834
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", "User logged on at 2013-09-27 12:19:29 UTC"], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6836
+  (0.0ms) SAVEPOINT active_record_1
6837
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", "User logged on at 2013-09-26 12:19:29 UTC"], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6839
+ Processing by AuditRails::AuditsController#index as XLS
6840
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" 
6841
+ Sent data audits.xls (0.5ms)
6842
+ Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.1ms)
6843
+  (0.4ms) rollback transaction
6844
+  (0.0ms) begin transaction
6845
+  (0.0ms) SAVEPOINT active_record_1
6846
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", "User logged on at 2013-09-28 12:19:29 UTC"], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6848
+  (0.0ms) SAVEPOINT active_record_1
6849
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", "User logged on at 2013-09-27 12:19:29 UTC"], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6850
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6851
+  (0.0ms) SAVEPOINT active_record_1
6852
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["description", "User logged on at 2013-09-26 12:19:29 UTC"], ["updated_at", Sun, 29 Sep 2013 12:19:29 UTC +00:00], ["user_name", "Fake User"]]
6853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6854
+ Processing by AuditRails::AuditsController#index as HTML
6855
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits" 
6856
+ Completed 200 OK in 4ms (Views: 2.8ms | ActiveRecord: 0.1ms)
6857
+  (0.4ms) rollback transaction
6858
+ Connecting to database specified by database.yml
6859
+  (0.3ms) begin transaction
6860
+  (0.1ms) SAVEPOINT active_record_1
6861
+ SQL (3.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "John Smith"]]
6862
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6863
+  (0.0ms) SAVEPOINT active_record_1
6864
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "Fake User"]]
6865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6866
+  (0.0ms) SAVEPOINT active_record_1
6867
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "John Smith"]]
6868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6869
+  (0.0ms) SAVEPOINT active_record_1
6870
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "Fake User"]]
6871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6872
+  (0.0ms) SAVEPOINT active_record_1
6873
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "John Smith"]]
6874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6875
+  (0.0ms) SAVEPOINT active_record_1
6876
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "Fake User"]]
6877
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6878
+  (0.1ms) SELECT COUNT(*) AS count_all, controller,action AS controller_action FROM "audit_rails_audits" GROUP BY controller,action
6879
+  (1.5ms) rollback transaction
6880
+  (0.1ms) begin transaction
6881
+  (0.0ms) SAVEPOINT active_record_1
6882
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "John Smith"]]
6883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6884
+  (0.0ms) SAVEPOINT active_record_1
6885
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "Fake User"]]
6886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6887
+  (0.0ms) SAVEPOINT active_record_1
6888
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "John Smith"]]
6889
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6890
+  (0.0ms) SAVEPOINT active_record_1
6891
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "Fake User"]]
6892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6893
+  (0.0ms) SAVEPOINT active_record_1
6894
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "John Smith"]]
6895
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6896
+  (0.0ms) SAVEPOINT active_record_1
6897
+ SQL (0.1ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "Visit"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:04 UTC +00:00], ["user_name", "Fake User"]]
6898
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6899
+  (0.1ms) SELECT COUNT(*) AS count_all, user_name AS user_name FROM "audit_rails_audits" GROUP BY user_name
6900
+  (0.3ms) rollback transaction
6901
+  (0.1ms) begin transaction
6902
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6903
+  (0.1ms) rollback transaction
6904
+  (0.1ms) begin transaction
6905
+  (0.0ms) SAVEPOINT active_record_1
6906
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", nil], ["created_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["user_name", "John Smith"]]
6907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6908
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'John Smith' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6909
+  (0.4ms) rollback transaction
6910
+  (0.1ms) begin transaction
6911
+  (0.1ms) rollback transaction
6912
+  (0.0ms) begin transaction
6913
+  (0.0ms) rollback transaction
6914
+  (0.0ms) begin transaction
6915
+  (0.1ms) rollback transaction
6916
+  (0.0ms) begin transaction
6917
+  (0.1ms) SAVEPOINT active_record_1
6918
+ SQL (0.5ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["description", "User logged on at 2013-09-28 12:36:05 UTC"], ["updated_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["user_name", "Fake User"]]
6919
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6920
+  (0.1ms) SAVEPOINT active_record_1
6921
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["description", "User logged on at 2013-09-27 12:36:05 UTC"], ["updated_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["user_name", "Fake User"]]
6922
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6923
+  (0.0ms) SAVEPOINT active_record_1
6924
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["description", "User logged on at 2013-09-26 12:36:05 UTC"], ["updated_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["user_name", "Fake User"]]
6925
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6926
+ Processing by AuditRails::AuditsController#index as HTML
6927
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6928
+ Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.1ms)
6929
+  (2.0ms) rollback transaction
6930
+  (0.1ms) begin transaction
6931
+  (0.0ms) SAVEPOINT active_record_1
6932
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["description", "User logged on at 2013-09-28 12:36:05 UTC"], ["updated_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["user_name", "Fake User"]]
6933
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6934
+  (0.0ms) SAVEPOINT active_record_1
6935
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["description", "User logged on at 2013-09-27 12:36:05 UTC"], ["updated_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["user_name", "Fake User"]]
6936
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6937
+  (0.0ms) SAVEPOINT active_record_1
6938
+ SQL (0.2ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "sessions"], ["created_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["description", "User logged on at 2013-09-26 12:36:05 UTC"], ["updated_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["user_name", "Fake User"]]
6939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6940
+ Processing by AuditRails::AuditsController#index as XLS
6941
+ AuditRails::Audit Load (0.1ms) SELECT "audit_rails_audits".* FROM "audit_rails_audits"
6942
+ Sent data audits.xls (1.2ms)
6943
+ Completed 200 OK in 8ms (Views: 1.1ms | ActiveRecord: 0.1ms)
6944
+  (0.5ms) rollback transaction
6945
+  (0.1ms) begin transaction
6946
+ Processing by AuditRails::AuditsController#create as HTML
6947
+  (0.1ms) SAVEPOINT active_record_1
6948
+ SQL (0.4ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "visit-site"], ["controller", "xyz"], ["created_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["description", nil], ["updated_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["user_name", "Fake User"]]
6949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6950
+ Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.5ms)
6951
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'visit-site' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6952
+  (0.3ms) rollback transaction
6953
+  (0.1ms) begin transaction
6954
+ Processing by AuditRails::AuditsController#analytics as HTML
6955
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
6956
+  (0.1ms) rollback transaction
6957
+  (0.1ms) begin transaction
6958
+ Processing by AnonymousController#login as HTML
6959
+ Parameters: {"id"=>"1"}
6960
+  (0.2ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6961
+  (0.0ms) SAVEPOINT active_record_1
6962
+ SQL (0.3ms) INSERT INTO "audit_rails_audits" ("action", "controller", "created_at", "description", "updated_at", "user_name") VALUES (?, ?, ?, ?, ?, ?) [["action", "login"], ["controller", "anonymous"], ["created_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["description", "User logged in"], ["updated_at", Sun, 29 Sep 2013 12:36:05 UTC +00:00], ["user_name", "Fake User"]]
6963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
6964
+ Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.5ms)
6965
+  (0.1ms) SELECT COUNT(*) FROM "audit_rails_audits" WHERE "audit_rails_audits"."action" = 'login' AND "audit_rails_audits"."user_name" = 'Fake User' AND ("audit_rails_audits"."created_at" BETWEEN '2013-09-29 00:00:00.000000' AND '2013-09-29 23:59:59.999999')
6966
+  (0.4ms) rollback transaction