Skip to content

Instantly share code, notes, and snippets.

@ruevaughn
Created April 3, 2012 18:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruevaughn/2294406 to your computer and use it in GitHub Desktop.
Save ruevaughn/2294406 to your computer and use it in GitHub Desktop.
The application.log file of my rails app
Started POST "/tickets/1/comments" for 127.0.0.1 at 2012-04-03 12:16:25 -0600
Processing by CommentsController#create as HTML
Parameters: {"utf8"=>"✓", "comment"=>{"text"=>"Is it out yet?"}, "tags"=>"", "commit"=>"Create Comment", "ticket_id"=>"1"}
State Load (0.0ms) SELECT "states".* FROM "states" 
User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 LIMIT 1
Ticket Load (0.0ms) SELECT "tickets".* FROM "tickets" WHERE "tickets"."id" = ? LIMIT 1 [["id", "1"]]
Project Load (0.0ms) SELECT "projects".* FROM "projects" WHERE "projects"."id" = 1 LIMIT 1
Permission Load (0.0ms) SELECT "permissions".* FROM "permissions" WHERE "permissions"."user_id" = 2
 (0.0ms) SAVEPOINT active_record_1
Ticket Load (0.0ms) SELECT "tickets".* FROM "tickets" WHERE "tickets"."id" = 1 LIMIT 1
State Load (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" IS NULL LIMIT 1
SQL (0.0ms) INSERT INTO "comments" ("created_at", "previous_state_id", "state_id", "text", "ticket_id", "updated_at", "user_id") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", Tue, 03 Apr 2012 18:16:25 UTC +00:00], ["previous_state_id", nil], ["state_id", nil], ["text", "Is it out yet?"], ["ticket_id", 1], ["updated_at", Tue, 03 Apr 2012 18:16:25 UTC +00:00], ["user_id", 2]]
State Load (0.0ms) SELECT "states".* FROM "states" WHERE "states"."id" IS NULL LIMIT 1
User Load (0.0ms) SELECT "users".* FROM "users" INNER JOIN "ticket_watchers" ON "users"."id" = "ticket_watchers"."user_id" WHERE "ticket_watchers"."ticket_id" = 1
Project Load (0.0ms) SELECT "projects".* FROM "projects" WHERE "projects"."id" = 1 LIMIT 1
Rendered notifier/comment_updated.text.erb (0.0ms)
Sent mail to alice@ticketee.com (0ms)
Date: Tue, 03 Apr 2012 12:16:25 -0600
From: ticketee@gmail.com
To: alice@ticketee.com
Message-ID: <4f7b3e7994fe3_10e41262ab458971@SCC-IMAGE.mail>
Subject: [ticketee] TextMate 2 - Release date
Mime-Version: 1.0
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
Hello!
bob@ticketee.com (User) has just updated the
Release date ticket for
TextMate 2. They wrote:
Is it out yet?
You can view this ticket on line by going to:
http://localhost:3000/projects/1/tickets/1
Rendered notifier/comment_updated.text.erb (0.0ms)
Sent mail to alice@ticketee.com (0ms)
Date: Tue, 03 Apr 2012 12:16:25 -0600
From: ticketee@gmail.com
To: alice@ticketee.com
Message-ID: <4f7b3e79976f3_10e41262ab4590ad@SCC-IMAGE.mail>
Subject: [ticketee] TextMate 2 - Release date
Mime-Version: 1.0
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
Hello!
bob@ticketee.com (User) has just updated the
Release date ticket for
TextMate 2. They wrote:
Is it out yet?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment