<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>Classes/EditDogViewController.h</filename>
    </added>
    <added>
      <filename>Classes/EditDogViewController.m</filename>
    </added>
    <added>
      <filename>Classes/ViewDogController.h</filename>
    </added>
    <added>
      <filename>Classes/ViewDogController.m</filename>
    </added>
    <added>
      <filename>EditDogViewController.xib</filename>
    </added>
    <added>
      <filename>ViewDogController.xib</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -11,9 +11,9 @@
 @interface Dog : ActiveResource {
 	
 	NSString *name;
-
+  NSString *dogId;
 }
 
-@property (nonatomic, retain) NSString *name;
-
+@property (nonatomic , retain) NSString  *dogId;
+@property (nonatomic , retain) NSString *name;
 @end</diff>
      <filename>Classes/Dog.h</filename>
    </modified>
    <modified>
      <diff>@@ -11,7 +11,7 @@
 
 @implementation Dog
 
-@synthesize name;
+@synthesize name, dogId;
 
 static NSString *site = @&quot;http://localhost:3000/&quot;;
 
@@ -21,6 +21,7 @@ static NSString *site = @&quot;http://localhost:3000/&quot;;
 
 - (void) dealloc
 {
+  [dogId release];
 	[name release];
 	[super dealloc];
 }</diff>
      <filename>Classes/Dog.m</filename>
    </modified>
    <modified>
      <diff>@@ -9,6 +9,7 @@
 #import &quot;DogViewController.h&quot;
 #import &quot;Dog.h&quot;
 #import &quot;AddDogViewController.h&quot;
+#import &quot;ViewDogController.h&quot;
 
 @interface DogViewController (Private)
 
@@ -57,6 +58,16 @@
 	return cell;
 }
 
+- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
+  
+  ViewDogController * aViewDogController = [[ViewDogController alloc] initWithStyle:UITableViewStyleGrouped];
+  aViewDogController.dog = [dogs objectAtIndex:indexPath.row];
+  [self.navigationController pushViewController:aViewDogController animated:YES];
+  [aViewDogController release];
+  
+}
+
+
 
 
 </diff>
      <filename>Classes/DogViewController.m</filename>
    </modified>
    <modified>
      <diff>@@ -33,6 +33,7 @@
 
 // Instance-specific methods
 - (id)getId;
+- (NSString *)classIdName;
 - (BOOL)create;
 - (BOOL)createWithParameters:(NSDictionary *)parameters;
 - (BOOL)destroy;</diff>
      <filename>Classes/lib/ActiveResource+Base.h</filename>
    </modified>
    <modified>
      <diff>@@ -100,15 +100,21 @@ static NSString *_activeResourcePassword = nil;
 #pragma mark Instance-specific methods
 - (id)getId {
 	id result = nil;
-	SEL idMethodSelector = NSSelectorFromString([NSString stringWithFormat:@&quot;%@Id&quot;,
-												 [NSStringFromClass([self class]) stringByReplacingCharactersInRange:NSMakeRange(0, 1) 
-												  withString:[[NSStringFromClass([self class]) substringWithRange:NSMakeRange(0,1)] lowercaseString]]]);
+	SEL idMethodSelector = NSSelectorFromString([self classIdName]);
 	if ([self respondsToSelector:idMethodSelector]) {
 		result = [self performSelector:idMethodSelector];
 	}
 	return result;
 }
 
+- (NSString *)classIdName {
+  
+  return [NSString stringWithFormat:@&quot;%@Id&quot;,
+          [NSStringFromClass([self class]) stringByReplacingCharactersInRange:NSMakeRange(0, 1) 
+           withString:[[NSStringFromClass([self class]) substringWithRange:NSMakeRange(0,1)] lowercaseString]]];
+  
+}
+
 - (BOOL)createAtPath:(NSString *)path {
 	Response *res = [Connection post:[self toXMLElement] to:path withUser:[[self class]  getUser] andPassword:[[self class]  getPassword]];
 	if ([res isSuccess]) {
@@ -142,7 +148,7 @@ static NSString *_activeResourcePassword = nil;
 - (BOOL)update {
 	id myId = [self getId];
 	if (nil != myId) {
-		return [[Connection put:[self toXMLElement] 
+		return [[Connection put:[self toXMLElementExcluding:[NSArray arrayWithObject:[self classIdName]]] 
 					  to:[[self class] elementPath:myId] 
 					   withUser:[[self class]  getUser] andPassword:[[self class]  getPassword]] isSuccess];
 	}</diff>
      <filename>Classes/lib/ActiveResource+Base.m</filename>
    </modified>
    <modified>
      <diff>@@ -8,9 +8,9 @@
 
 @interface FromXMLElementDelegate : NSObject {
 	Class targetClass;
-    id parsedObject;
+  id parsedObject;
 	NSString *currentPropertyName;
-    NSMutableString *contentOfCurrentProperty;
+  NSMutableString *contentOfCurrentProperty;
 	NSMutableArray *unclosedProperties;
 	NSString *currentPropertyType;
 }
@@ -28,4 +28,10 @@
 - (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string;
 - (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName;
 
-@end
\ No newline at end of file
+@end
+
+@interface FromXMLElementDelegate ()
+
+- (NSString *)convertElementName:(NSString *)anElementName;
+
+@end</diff>
      <filename>Classes/lib/FromXMLElementDelegate.h</filename>
    </modified>
    <modified>
      <diff>@@ -64,9 +64,11 @@
 		
 		// If we recognize an element that corresponds to a known property of the current parent object, or if the
 		// current parent is an array then start collecting content for this child element
+    
+    
 		if (([self.parsedObject isKindOfClass:[NSArray class]]) ||
-			([[[self.parsedObject class] propertyNames] containsObject:[elementName camelize]])) {
-			self.currentPropertyName = [elementName camelize];
+        ([[[self.parsedObject class] propertyNames] containsObject:[[self convertElementName:elementName] camelize]])) {
+			self.currentPropertyName = [[self convertElementName:elementName] camelize];
 			self.contentOfCurrentProperty = [NSMutableString string];
 			self.currentPropertyType = [attributeDict objectForKey:@&quot;type&quot;];
 		} else {
@@ -103,6 +105,25 @@
 	}
 }
 
+// Converts the Id element to modelNameId
+- (NSString *) convertElementName:(NSString *)anElementName {
+ 
+  if([anElementName isEqualToString:@&quot;id&quot;]) {
+   
+    return [NSString stringWithFormat:@&quot;%@_%@&quot; , [NSStringFromClass([self.parsedObject class]) 
+                                                 stringByReplacingCharactersInRange:NSMakeRange(0, 1) 
+                                                 withString:[[NSStringFromClass([self.parsedObject class]) 
+                                                              substringWithRange:NSMakeRange(0,1)] 
+                                                              lowercaseString]], anElementName];
+  }
+  else {
+    
+    return anElementName;
+    
+  }
+
+}
+
 // We're done receiving the value of a particular element, so take the value we've collected and
 // set it on the current object
 - (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
@@ -112,7 +133,7 @@
 		 setValue:[self convertProperty:self.contentOfCurrentProperty toType:self.currentPropertyType]  
 		 forKey:self.currentPropertyName];
 	}
-	else if ([self.currentPropertyName isEqualToString:[elementName camelize]]) {
+	else if ([self.currentPropertyName isEqualToString:[self convertElementName:[elementName camelize]]]) {
 		//element is closed, pop it from the stack
 		[self.unclosedProperties removeLastObject];
 		//check for a parent object on the stack
@@ -122,7 +143,7 @@
 				[[[self.unclosedProperties lastObject] objectAtIndex:1] addObject:self.parsedObject];
 			}
 			else {
-				[[[self.unclosedProperties lastObject] objectAtIndex:1] setValue:self.parsedObject forKey:[elementName camelize]];
+				[[[self.unclosedProperties lastObject] objectAtIndex:1] setValue:self.parsedObject forKey:[self convertElementName:[elementName camelize]]];
 			}
 			self.parsedObject = [[self.unclosedProperties lastObject] objectAtIndex:1];
 		}</diff>
      <filename>Classes/lib/FromXMLElementDelegate.m</filename>
    </modified>
    <modified>
      <diff>@@ -67,6 +67,10 @@
 	return [self toXMLElementAs:[[self class] xmlElementName] excludingInArray:[NSArray array] withTranslations:[NSDictionary dictionary]];
 }
 
+- (NSString *)toXMLElementExcluding:(NSArray *)exclusions {
+	return [self toXMLElementAs:[[self class] xmlElementName] excludingInArray:exclusions withTranslations:[NSDictionary dictionary]];  
+}
+
 - (NSString *)toXMLElementAs:(NSString *)rootName {
 	return [self toXMLElementAs:rootName excludingInArray:[NSArray array] withTranslations:[NSDictionary dictionary]];
 }</diff>
      <filename>Classes/lib/NSObject+XMLSerializableSupport.m</filename>
    </modified>
    <modified>
      <diff>@@ -26,6 +26,15 @@
  */
 - (NSString *)toXMLElement;
 
+
+/**
+ * Gets the full representation of this object minus the elements in the exclusions array
+ *
+ *
+ *
+ */
+- (NSString *)toXMLElementExcluding:(NSArray *)exclusions;
+
 /**
  * Get the full XML representation of this object (minus the xml directive)
  * using the given element name:</diff>
      <filename>Classes/lib/XMLSerializable.h</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 	&lt;data&gt;
 		&lt;int key=&quot;IBDocument.SystemTarget&quot;&gt;512&lt;/int&gt;
 		&lt;string key=&quot;IBDocument.SystemVersion&quot;&gt;9E17&lt;/string&gt;
-		&lt;string key=&quot;IBDocument.InterfaceBuilderVersion&quot;&gt;670&lt;/string&gt;
+		&lt;string key=&quot;IBDocument.InterfaceBuilderVersion&quot;&gt;672&lt;/string&gt;
 		&lt;string key=&quot;IBDocument.AppKitVersion&quot;&gt;949.33&lt;/string&gt;
 		&lt;string key=&quot;IBDocument.HIToolboxVersion&quot;&gt;352.00&lt;/string&gt;
 		&lt;object class=&quot;NSMutableArray&quot; key=&quot;IBDocument.EditedObjectIDs&quot;&gt;
@@ -28,7 +28,7 @@
 				&lt;int key=&quot;NSvFlags&quot;&gt;1316&lt;/int&gt;
 				&lt;object class=&quot;NSPSMatrix&quot; key=&quot;NSFrameMatrix&quot;/&gt;
 				&lt;string key=&quot;NSFrameSize&quot;&gt;{320, 480}&lt;/string&gt;
-				&lt;object class=&quot;NSColor&quot; key=&quot;IBUIBackgroundColor&quot; id=&quot;920307094&quot;&gt;
+				&lt;object class=&quot;NSColor&quot; key=&quot;IBUIBackgroundColor&quot;&gt;
 					&lt;int key=&quot;NSColorSpace&quot;&gt;1&lt;/int&gt;
 					&lt;bytes key=&quot;NSRGB&quot;&gt;MSAxIDEAA&lt;/bytes&gt;
 				&lt;/object&gt;
@@ -54,7 +54,10 @@
 							&lt;int key=&quot;NSvFlags&quot;&gt;274&lt;/int&gt;
 							&lt;string key=&quot;NSFrame&quot;&gt;{{0, -2}, {320, 419}}&lt;/string&gt;
 							&lt;reference key=&quot;NSSuperview&quot;/&gt;
-							&lt;reference key=&quot;IBUIBackgroundColor&quot; ref=&quot;920307094&quot;/&gt;
+							&lt;object class=&quot;NSColor&quot; key=&quot;IBUIBackgroundColor&quot;&gt;
+								&lt;int key=&quot;NSColorSpace&quot;&gt;3&lt;/int&gt;
+								&lt;bytes key=&quot;NSWhite&quot;&gt;MQA&lt;/bytes&gt;
+							&lt;/object&gt;
 							&lt;bool key=&quot;IBUIOpaque&quot;&gt;NO&lt;/bool&gt;
 							&lt;bool key=&quot;IBUIClipsSubviews&quot;&gt;YES&lt;/bool&gt;
 							&lt;bool key=&quot;IBUIClearsContextBeforeDrawing&quot;&gt;NO&lt;/bool&gt;
@@ -243,7 +246,7 @@
 					&lt;bool key=&quot;EncodedWithXMLCoder&quot;&gt;YES&lt;/bool&gt;
 					&lt;string&gt;UIApplication&lt;/string&gt;
 					&lt;string&gt;UIResponder&lt;/string&gt;
-					&lt;string&gt;{{266, 527}, {320, 480}}&lt;/string&gt;
+					&lt;string&gt;{{403, 207}, {320, 480}}&lt;/string&gt;
 					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
 					&lt;string&gt;DogViewController&lt;/string&gt;
 					&lt;string&gt;com.apple.InterfaceBuilder.IBCocoaTouchPlugin&lt;/string&gt;
@@ -311,14 +314,14 @@
 					&lt;string key=&quot;className&quot;&gt;NSObject&lt;/string&gt;
 					&lt;object class=&quot;IBClassDescriptionSource&quot; key=&quot;sourceIdentifier&quot;&gt;
 						&lt;string key=&quot;majorKey&quot;&gt;IBProjectSource&lt;/string&gt;
-						&lt;string key=&quot;minorKey&quot;&gt;Classes/NSObject+PropertySupport.h&lt;/string&gt;
+						&lt;string key=&quot;minorKey&quot;&gt;Classes/lib/NSObject+PropertySupport.h&lt;/string&gt;
 					&lt;/object&gt;
 				&lt;/object&gt;
 				&lt;object class=&quot;IBPartialClassDescription&quot;&gt;
 					&lt;string key=&quot;className&quot;&gt;NSObject&lt;/string&gt;
 					&lt;object class=&quot;IBClassDescriptionSource&quot; key=&quot;sourceIdentifier&quot;&gt;
 						&lt;string key=&quot;majorKey&quot;&gt;IBProjectSource&lt;/string&gt;
-						&lt;string key=&quot;minorKey&quot;&gt;Classes/NSObject+XMLSerializableSupport.h&lt;/string&gt;
+						&lt;string key=&quot;minorKey&quot;&gt;Classes/lib/NSObject+XMLSerializableSupport.h&lt;/string&gt;
 					&lt;/object&gt;
 				&lt;/object&gt;
 				&lt;object class=&quot;IBPartialClassDescription&quot;&gt;</diff>
      <filename>MainWindow.xib</filename>
    </modified>
    <modified>
      <diff>@@ -11,6 +11,10 @@
 		1D60589B0D05DD56006BFB54 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
 		1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; };
 		1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; };
+		23829E0C0EA393700070F0BF /* EditDogViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 23829E0B0EA393700070F0BF /* EditDogViewController.m */; };
+		23829E0E0EA393DA0070F0BF /* EditDogViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 23829E0D0EA393DA0070F0BF /* EditDogViewController.xib */; };
+		23829F010EA39B3B0070F0BF /* ViewDogController.m in Sources */ = {isa = PBXBuildFile; fileRef = 23829F000EA39B3B0070F0BF /* ViewDogController.m */; };
+		23829F120EA39C430070F0BF /* ViewDogController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 23829F110EA39C430070F0BF /* ViewDogController.xib */; };
 		28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28AD733E0D9D9553002E5188 /* MainWindow.xib */; };
 		350420F40E5E15AA00493366 /* DogViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 350420F30E5E15AA00493366 /* DogViewController.m */; };
 		350421290E5E1A0F00493366 /* Dog.m in Sources */ = {isa = PBXBuildFile; fileRef = 350421280E5E1A0F00493366 /* Dog.m */; };
@@ -39,6 +43,12 @@
 		1D3623250D0F684500981E51 /* active_resourceAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = active_resourceAppDelegate.m; sourceTree = &quot;&lt;group&gt;&quot;; };
 		1D6058910D05DD3D006BFB54 /* active_resource.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = active_resource.app; sourceTree = BUILT_PRODUCTS_DIR; };
 		1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
+		23829E0A0EA393700070F0BF /* EditDogViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EditDogViewController.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+		23829E0B0EA393700070F0BF /* EditDogViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EditDogViewController.m; sourceTree = &quot;&lt;group&gt;&quot;; };
+		23829E0D0EA393DA0070F0BF /* EditDogViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = EditDogViewController.xib; sourceTree = &quot;&lt;group&gt;&quot;; };
+		23829EFF0EA39B3B0070F0BF /* ViewDogController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ViewDogController.h; sourceTree = &quot;&lt;group&gt;&quot;; };
+		23829F000EA39B3B0070F0BF /* ViewDogController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ViewDogController.m; sourceTree = &quot;&lt;group&gt;&quot;; };
+		23829F110EA39C430070F0BF /* ViewDogController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ViewDogController.xib; sourceTree = &quot;&lt;group&gt;&quot;; };
 		28AD733E0D9D9553002E5188 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MainWindow.xib; sourceTree = &quot;&lt;group&gt;&quot;; };
 		29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = &quot;&lt;group&gt;&quot;; };
 		32CA4F630368D1EE00C91783 /* active_resource_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = active_resource_Prefix.pch; sourceTree = &quot;&lt;group&gt;&quot;; };
@@ -143,6 +153,8 @@
 		29B97317FDCFA39411CA2CEA /* Resources */ = {
 			isa = PBXGroup;
 			children = (
+				23829F110EA39C430070F0BF /* ViewDogController.xib */,
+				23829E0D0EA393DA0070F0BF /* EditDogViewController.xib */,
 				28AD733E0D9D9553002E5188 /* MainWindow.xib */,
 				8D1107310486CEB800E47090 /* Info.plist */,
 				350421CA0E5E1E0900493366 /* AddDogView.xib */,
@@ -169,6 +181,10 @@
 				350421280E5E1A0F00493366 /* Dog.m */,
 				350421CD0E5E1EC500493366 /* AddDogViewController.h */,
 				350421CE0E5E1EC500493366 /* AddDogViewController.m */,
+				23829E0A0EA393700070F0BF /* EditDogViewController.h */,
+				23829E0B0EA393700070F0BF /* EditDogViewController.m */,
+				23829EFF0EA39B3B0070F0BF /* ViewDogController.h */,
+				23829F000EA39B3B0070F0BF /* ViewDogController.m */,
 			);
 			name = Example;
 			sourceTree = &quot;&lt;group&gt;&quot;;
@@ -311,6 +327,8 @@
 			files = (
 				28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */,
 				350421CB0E5E1E0900493366 /* AddDogView.xib in Resources */,
+				23829E0E0EA393DA0070F0BF /* EditDogViewController.xib in Resources */,
+				23829F120EA39C430070F0BF /* ViewDogController.xib in Resources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
@@ -340,6 +358,8 @@
 				357A91BE0E9A55EF0025D9AF /* NSString+GSub.m in Sources */,
 				357A91BF0E9A55EF0025D9AF /* NSString+InflectionSupport.m in Sources */,
 				357A91C00E9A55EF0025D9AF /* Response.m in Sources */,
+				23829E0C0EA393700070F0BF /* EditDogViewController.m in Sources */,
+				23829F010EA39B3B0070F0BF /* ViewDogController.m in Sources */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};</diff>
      <filename>active_resource.xcodeproj/project.pbxproj</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>sample_rails_app/db/development.sqlite3</filename>
    </modified>
    <modified>
      <diff>@@ -183,3 +183,1390 @@ BjoKQHVzZWR7BjsGRg==--0bb4c2dd2ab22453f8f60671708a6a4f9574bb31
   Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
   *[4;35;1mDog Load (0.000909)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
 Completed in 0.01312 (76 reqs/sec) | Rendering: 0.00682 (51%) | DB: 0.00091 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:22:02) [GET]
+  Session ID: 73b6387de70c56a3d7e0ae7aef8e526f
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000585)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Rendering template within layouts/dogs
+Rendering dogs/index
+Completed in 0.01782 (56 reqs/sec) | Rendering: 0.00635 (35%) | DB: 0.00059 (3%) | 200 OK [http://localhost/dogs]
+
+
+Processing DogsController#new (for 127.0.0.1 at 2008-10-13 10:22:04) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+Rendering template within layouts/dogs
+Rendering dogs/new
+Completed in 0.01467 (68 reqs/sec) | Rendering: 0.00819 (55%) | DB: 0.00000 (0%) | 200 OK [http://localhost/dogs/new]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-13 10:22:09) [POST]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA=--56140ff900a29458f2cdd17291f29babd46d616f
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create&quot;, &quot;authenticity_token&quot;=&gt;&quot;e94fa948a5a0a6b71ef42d32c82e3d8a7bb25b75&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;judge&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Create (0.020156)*[0m   *[0mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('judge', '2008-10-13 14:22:09', '2008-10-13 14:22:09')*[0m
+Redirected to http://localhost:3000/dogs/7
+Completed in 0.03327 (30 reqs/sec) | DB: 0.02016 (60%) | 302 Found [http://localhost/dogs]
+
+
+Processing DogsController#show (for 127.0.0.1 at 2008-10-13 10:22:09) [GET]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7BjoLbm90aWNlIiJEb2cgd2FzIHN1Y2Nlc3NmdWxseSBjcmVhdGVkLgY6
+CkB1c2VkewY7B0Y=--5c975614fc4d76fcf0b73fafd3daae6d75b46423
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000219)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+Rendering template within layouts/dogs
+Rendering dogs/show
+Completed in 0.01389 (72 reqs/sec) | Rendering: 0.00707 (50%) | DB: 0.00022 (1%) | 200 OK [http://localhost/dogs/7]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:22:11) [GET]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7BjoLbm90aWNlIiJEb2cgd2FzIHN1Y2Nlc3NmdWxseSBjcmVhdGVkLgY6
+CkB1c2VkewY7B1Q=--eaeec973a9c6f0101f2da8f4c6e6f0c534af31b6
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000492)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Rendering template within layouts/dogs
+Rendering dogs/index
+Completed in 0.00923 (108 reqs/sec) | Rendering: 0.00274 (29%) | DB: 0.00049 (5%) | 200 OK [http://localhost/dogs]
+
+
+Processing DogsController#new (for 127.0.0.1 at 2008-10-13 10:22:12) [GET]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA=--56140ff900a29458f2cdd17291f29babd46d616f
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+Rendering template within layouts/dogs
+Rendering dogs/new
+Completed in 0.00947 (105 reqs/sec) | Rendering: 0.00278 (29%) | DB: 0.00000 (0%) | 200 OK [http://localhost/dogs/new]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-13 10:22:16) [POST]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA=--56140ff900a29458f2cdd17291f29babd46d616f
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create&quot;, &quot;authenticity_token&quot;=&gt;&quot;e94fa948a5a0a6b71ef42d32c82e3d8a7bb25b75&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;reba&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Create (0.000374)*[0m   *[0;1mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('reba', '2008-10-13 14:22:16', '2008-10-13 14:22:16')*[0m
+Redirected to http://localhost:3000/dogs/8
+Completed in 0.01273 (78 reqs/sec) | DB: 0.00037 (2%) | 302 Found [http://localhost/dogs]
+
+
+Processing DogsController#show (for 127.0.0.1 at 2008-10-13 10:22:16) [GET]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7BjoLbm90aWNlIiJEb2cgd2FzIHN1Y2Nlc3NmdWxseSBjcmVhdGVkLgY6
+CkB1c2VkewY7B0Y=--5c975614fc4d76fcf0b73fafd3daae6d75b46423
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;8&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000220)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 8) *[0m
+Rendering template within layouts/dogs
+Rendering dogs/show
+Completed in 0.00890 (112 reqs/sec) | Rendering: 0.00163 (18%) | DB: 0.00022 (2%) | 200 OK [http://localhost/dogs/8]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:22:19) [GET]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7BjoLbm90aWNlIiJEb2cgd2FzIHN1Y2Nlc3NmdWxseSBjcmVhdGVkLgY6
+CkB1c2VkewY7B1Q=--eaeec973a9c6f0101f2da8f4c6e6f0c534af31b6
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000525)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Rendering template within layouts/dogs
+Rendering dogs/index
+Completed in 0.00928 (107 reqs/sec) | Rendering: 0.00288 (31%) | DB: 0.00052 (5%) | 200 OK [http://localhost/dogs]
+
+
+Processing DogsController#new (for 127.0.0.1 at 2008-10-13 10:22:21) [GET]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA=--56140ff900a29458f2cdd17291f29babd46d616f
+  Parameters: {&quot;action&quot;=&gt;&quot;new&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+Rendering template within layouts/dogs
+Rendering dogs/new
+Completed in 0.00874 (114 reqs/sec) | Rendering: 0.00243 (27%) | DB: 0.00000 (0%) | 200 OK [http://localhost/dogs/new]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-13 10:22:23) [POST]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA=--56140ff900a29458f2cdd17291f29babd46d616f
+  Parameters: {&quot;commit&quot;=&gt;&quot;Create&quot;, &quot;authenticity_token&quot;=&gt;&quot;e94fa948a5a0a6b71ef42d32c82e3d8a7bb25b75&quot;, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;poppin&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Create (0.000390)*[0m   *[0mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('poppin', '2008-10-13 14:22:23', '2008-10-13 14:22:23')*[0m
+Redirected to http://localhost:3000/dogs/9
+Completed in 0.01108 (90 reqs/sec) | DB: 0.00039 (3%) | 302 Found [http://localhost/dogs]
+
+
+Processing DogsController#show (for 127.0.0.1 at 2008-10-13 10:22:24) [GET]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7BjoLbm90aWNlIiJEb2cgd2FzIHN1Y2Nlc3NmdWxseSBjcmVhdGVkLgY6
+CkB1c2VkewY7B0Y=--5c975614fc4d76fcf0b73fafd3daae6d75b46423
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;9&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000213)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 9) *[0m
+Rendering template within layouts/dogs
+Rendering dogs/show
+Completed in 0.00865 (115 reqs/sec) | Rendering: 0.00163 (18%) | DB: 0.00021 (2%) | 200 OK [http://localhost/dogs/9]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:22:25) [GET]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7BjoLbm90aWNlIiJEb2cgd2FzIHN1Y2Nlc3NmdWxseSBjcmVhdGVkLgY6
+CkB1c2VkewY7B1Q=--eaeec973a9c6f0101f2da8f4c6e6f0c534af31b6
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000564)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Rendering template within layouts/dogs
+Rendering dogs/index
+Completed in 0.00928 (107 reqs/sec) | Rendering: 0.00299 (32%) | DB: 0.00056 (6%) | 200 OK [http://localhost/dogs]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:23:00) [GET]
+  Session ID: 340344efa2bb9fa215edb46e78549660
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000563)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.11075 (9 reqs/sec) | Rendering: 0.10459 (94%) | DB: 0.00056 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#create (for 127.0.0.1 at 2008-10-13 10:23:12) [POST]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;create&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;bear&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Create (0.000357)*[0m   *[0mINSERT INTO &quot;dogs&quot; (&quot;name&quot;, &quot;updated_at&quot;, &quot;created_at&quot;) VALUES('bear', '2008-10-13 14:23:12', '2008-10-13 14:23:12')*[0m
+Completed in 0.01351 (74 reqs/sec) | Rendering: 0.00198 (14%) | DB: 0.00036 (2%) | 201 Created [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:23:12) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IGNyZWF0ZWQu
+BjoKQHVzZWR7BjsGRg==--0bb4c2dd2ab22453f8f60671708a6a4f9574bb31
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000667)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01066 (93 reqs/sec) | Rendering: 0.00428 (40%) | DB: 0.00067 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:23:17) [GET]
+  Session ID: BAh7BzoMY3NyZl9pZCIlYWQ5YWFiNDY2MDYyNmMwZWMwOGYxYjViY2YwYjFi
+NTYiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA=--56140ff900a29458f2cdd17291f29babd46d616f
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000621)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Rendering template within layouts/dogs
+Rendering dogs/index
+Completed in 0.01024 (97 reqs/sec) | Rendering: 0.00377 (36%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:55:08) [GET]
+  Session ID: 75dc612dd873feb0961dc01140cc23d6
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000620)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01018 (98 reqs/sec) | Rendering: 0.00396 (38%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:55:12) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000681)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01025 (97 reqs/sec) | Rendering: 0.00394 (38%) | DB: 0.00068 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:55:29) [GET]
+  Session ID: f1a309610755d5e40f05bd6f33048109
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000623)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01025 (97 reqs/sec) | Rendering: 0.00401 (39%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:55:32) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000684)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01011 (98 reqs/sec) | Rendering: 0.00391 (38%) | DB: 0.00068 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:56:03) [GET]
+  Session ID: aaa8908154f8439c54a6d23519b83e79
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000618)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01010 (99 reqs/sec) | Rendering: 0.00392 (38%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:56:44) [GET]
+  Session ID: 9b5dbbc63f0a4cb792247aad2762d457
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000618)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01027 (97 reqs/sec) | Rendering: 0.00403 (39%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:57:21) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000630)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01072 (93 reqs/sec) | Rendering: 0.00431 (40%) | DB: 0.00063 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 10:59:21) [GET]
+  Session ID: 996be93346b4d651c44684ac1fe774ab
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000852)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01461 (68 reqs/sec) | Rendering: 0.00538 (36%) | DB: 0.00085 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:03:27) [GET]
+  Session ID: 4a961bb9082cc8d4d51f7fd00e941c99
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000683)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01274 (78 reqs/sec) | Rendering: 0.00416 (32%) | DB: 0.00068 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:11:46) [GET]
+  Session ID: 68a1fe28400d0e6ebcdfe4ad055e998c
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000619)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01086 (92 reqs/sec) | Rendering: 0.00448 (41%) | DB: 0.00062 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:11:52) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000641)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01021 (97 reqs/sec) | Rendering: 0.00397 (38%) | DB: 0.00064 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:22:16) [GET]
+  Session ID: 3b1fd709d5c02c8ef9dd574e00712922
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000799)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.03340 (29 reqs/sec) | Rendering: 0.00447 (13%) | DB: 0.00080 (2%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:22:20) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000616)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01025 (97 reqs/sec) | Rendering: 0.00404 (39%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:22:43) [GET]
+  Session ID: dc3888596a51d8174383b253b155bb25
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000655)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01092 (91 reqs/sec) | Rendering: 0.00417 (38%) | DB: 0.00066 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:22:48) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000635)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01079 (92 reqs/sec) | Rendering: 0.00428 (39%) | DB: 0.00063 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:23:28) [GET]
+  Session ID: 7c47761bccbe7dc165f4a819e4af6ea3
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000676)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01333 (75 reqs/sec) | Rendering: 0.00411 (30%) | DB: 0.00068 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:23:39) [GET]
+  Session ID: ef4dbccdf80f38e4050769d846066037
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000657)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01085 (92 reqs/sec) | Rendering: 0.00414 (38%) | DB: 0.00066 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:24:11) [GET]
+  Session ID: e66a1f17d7ad4c506d84329440b7e33d
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000897)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.03568 (28 reqs/sec) | Rendering: 0.01015 (28%) | DB: 0.00090 (2%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:24:40) [GET]
+  Session ID: 63d78ebb69aaee8ca9aa71e11f49c662
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000673)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01026 (97 reqs/sec) | Rendering: 0.00398 (38%) | DB: 0.00067 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:24:43) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000842)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01448 (69 reqs/sec) | Rendering: 0.00572 (39%) | DB: 0.00084 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:27:27) [GET]
+  Session ID: 97a74dd68660c6cda9527a531b2aecbf
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000684)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01097 (91 reqs/sec) | Rendering: 0.00416 (37%) | DB: 0.00068 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:27:32) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000658)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01047 (95 reqs/sec) | Rendering: 0.00405 (38%) | DB: 0.00066 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:29:15) [GET]
+  Session ID: 973a21a3abd22363d88e627ae88623c1
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000917)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 1.37608 (0 reqs/sec) | Rendering: 0.00519 (0%) | DB: 0.00092 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:29:19) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000623)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01027 (97 reqs/sec) | Rendering: 0.00394 (38%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:31:42) [GET]
+  Session ID: 90d180e27393a8339a137dd2bbcd11a9
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000877)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.03054 (32 reqs/sec) | Rendering: 0.02314 (75%) | DB: 0.00088 (2%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:31:46) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000627)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01038 (96 reqs/sec) | Rendering: 0.00397 (38%) | DB: 0.00063 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:32:23) [GET]
+  Session ID: 1483064c5cad4b4bc5d83ea4f9bd72b2
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000831)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01374 (72 reqs/sec) | Rendering: 0.00452 (32%) | DB: 0.00083 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:32:30) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000661)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01174 (85 reqs/sec) | Rendering: 0.00502 (42%) | DB: 0.00066 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:33:10) [GET]
+  Session ID: 4d8b625765e4d9b092600228d33b7a4d
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000624)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01026 (97 reqs/sec) | Rendering: 0.00405 (39%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:33:15) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000623)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01065 (93 reqs/sec) | Rendering: 0.00427 (40%) | DB: 0.00062 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:36:13) [GET]
+  Session ID: e3b2f98537fdfe70798af4100100d98e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000814)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.15325 (6 reqs/sec) | Rendering: 0.14367 (93%) | DB: 0.00081 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:36:15) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000651)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01063 (94 reqs/sec) | Rendering: 0.00401 (37%) | DB: 0.00065 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:37:43) [GET]
+  Session ID: 17e9738b985f064f4966b16659511b8d
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000662)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01148 (87 reqs/sec) | Rendering: 0.00455 (39%) | DB: 0.00066 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:37:46) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000643)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01071 (93 reqs/sec) | Rendering: 0.00426 (39%) | DB: 0.00064 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 11:42:04) [GET]
+  Session ID: 5d0a0c1d6c1c2474f70f2ddbe678566e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.112907)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 2.15739 (0 reqs/sec) | Rendering: 1.27257 (58%) | DB: 0.11291 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:09:44) [GET]
+  Session ID: c5378108be59850fd4d7fc5c8559c682
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.001050)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.14547 (6 reqs/sec) | Rendering: 0.13466 (92%) | DB: 0.00105 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:09:48) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000693)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01021 (97 reqs/sec) | Rendering: 0.00396 (38%) | DB: 0.00069 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:10:55) [GET]
+  Session ID: e6d085794d9823f3a61be45ce25caf02
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000673)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.04104 (24 reqs/sec) | Rendering: 0.01452 (35%) | DB: 0.00067 (1%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:11:00) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000646)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01073 (93 reqs/sec) | Rendering: 0.00430 (40%) | DB: 0.00065 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:11:39) [GET]
+  Session ID: 255b79c37508e0c9872b4820a9dcf0d0
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000726)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.02527 (39 reqs/sec) | Rendering: 0.00448 (17%) | DB: 0.00073 (2%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:11:43) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000661)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01096 (91 reqs/sec) | Rendering: 0.00438 (39%) | DB: 0.00066 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:13:52) [GET]
+  Session ID: 3de873e8d99607b53e7b2ab4ec97c772
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000679)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01227 (81 reqs/sec) | Rendering: 0.00425 (34%) | DB: 0.00068 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:14:39) [GET]
+  Session ID: a7c3c15657fd47c2b4936f2bc87558c2
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000672)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01032 (96 reqs/sec) | Rendering: 0.00398 (38%) | DB: 0.00067 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:16:44) [GET]
+  Session ID: dc2c251435e3d73bc65dca73a2a673af
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000630)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01031 (96 reqs/sec) | Rendering: 0.00407 (39%) | DB: 0.00063 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:16:48) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000619)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01032 (96 reqs/sec) | Rendering: 0.00402 (38%) | DB: 0.00062 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:17:44) [GET]
+  Session ID: 07b6617d2ec613b333da00ad06d6369f
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000641)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01020 (98 reqs/sec) | Rendering: 0.00398 (39%) | DB: 0.00064 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:17:48) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000620)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01016 (98 reqs/sec) | Rendering: 0.00393 (38%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:19:27) [GET]
+  Session ID: 540b3db7f175ce024472c18fc8b27721
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000621)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01010 (99 reqs/sec) | Rendering: 0.00391 (38%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:19:30) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000622)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01014 (98 reqs/sec) | Rendering: 0.00398 (39%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:19:48) [GET]
+  Session ID: 8a5787510e8a23f7f1beac244f7b5c4a
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000819)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01312 (76 reqs/sec) | Rendering: 0.00450 (34%) | DB: 0.00082 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:19:59) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000633)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01040 (96 reqs/sec) | Rendering: 0.00408 (39%) | DB: 0.00063 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:24:02) [GET]
+  Session ID: f8257088875ff6c1b18476c117e8dba0
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000624)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01041 (96 reqs/sec) | Rendering: 0.00401 (38%) | DB: 0.00062 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:24:05) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000624)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01030 (97 reqs/sec) | Rendering: 0.00408 (39%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:29:16) [GET]
+  Session ID: 543911c8c9aaf51a083d5411d03cc0c7
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000652)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01091 (91 reqs/sec) | Rendering: 0.00425 (38%) | DB: 0.00065 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:29:46) [GET]
+  Session ID: caf4f9555240bfbbda5a84b830f6639c
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000684)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01760 (56 reqs/sec) | Rendering: 0.00412 (23%) | DB: 0.00068 (3%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:30:41) [GET]
+  Session ID: 2d6e70123aebf2964c4dba59fa7d9423
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000770)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01103 (90 reqs/sec) | Rendering: 0.00434 (39%) | DB: 0.00077 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:31:43) [GET]
+  Session ID: 68a4c0bc5383db39bc726927b9ef064f
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000661)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01092 (91 reqs/sec) | Rendering: 0.00412 (37%) | DB: 0.00066 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:36:33) [GET]
+  Session ID: 5a25e81c34dfd918cba2c0d6a93cd7d2
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000629)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01035 (96 reqs/sec) | Rendering: 0.00406 (39%) | DB: 0.00063 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:42:34) [GET]
+  Session ID: 983df8ab3a27d2b52b96b55ba016dcdc
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000637)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01053 (94 reqs/sec) | Rendering: 0.00414 (39%) | DB: 0.00064 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:46:32) [GET]
+  Session ID: 2658489c091548fb4c441a7cf7d79909
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000694)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01029 (97 reqs/sec) | Rendering: 0.00401 (38%) | DB: 0.00069 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:47:16) [GET]
+  Session ID: b226148d1df6feaa17b5221a35a6ef7f
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000645)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01045 (95 reqs/sec) | Rendering: 0.00407 (38%) | DB: 0.00064 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:48:03) [GET]
+  Session ID: 2edd777f73f4153fbd934cfa4f2087ff
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000645)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01052 (95 reqs/sec) | Rendering: 0.00417 (39%) | DB: 0.00064 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:48:33) [GET]
+  Session ID: dd815072c92168bc833a8d96381cc8ad
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000642)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01146 (87 reqs/sec) | Rendering: 0.00510 (44%) | DB: 0.00064 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:51:44) [GET]
+  Session ID: a453615d1aa2495a99ea7129c6854f9c
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000628)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01017 (98 reqs/sec) | Rendering: 0.00396 (38%) | DB: 0.00063 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:53:23) [GET]
+  Session ID: 463ee9ba9bd3a6d10ef12ccdfbc84d7e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000633)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01105 (90 reqs/sec) | Rendering: 0.00480 (43%) | DB: 0.00063 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:55:58) [GET]
+  Session ID: 2efa7abfd15e278fa71749567ac62d24
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000655)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01312 (76 reqs/sec) | Rendering: 0.00423 (32%) | DB: 0.00066 (4%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:56:06) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000641)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01055 (94 reqs/sec) | Rendering: 0.00422 (39%) | DB: 0.00064 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:56:31) [GET]
+  Session ID: 0efb724c265c7179c4633404e34ae9ff
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000682)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01426 (70 reqs/sec) | Rendering: 0.00418 (29%) | DB: 0.00068 (4%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:57:09) [GET]
+  Session ID: 47ccb30a4d016054ad176f4781d24b55
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000657)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01019 (98 reqs/sec) | Rendering: 0.00396 (38%) | DB: 0.00066 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:57:51) [GET]
+  Session ID: 65173ac789534c18e793cdcc27d8bc83
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000709)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01075 (93 reqs/sec) | Rendering: 0.00409 (38%) | DB: 0.00071 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:58:25) [GET]
+  Session ID: 040e1417d0c18b5e22520710a097158e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000631)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01068 (93 reqs/sec) | Rendering: 0.00404 (37%) | DB: 0.00063 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:59:17) [GET]
+  Session ID: 74e2c0568a8024d119b32fa9b00c100a
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000653)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01070 (93 reqs/sec) | Rendering: 0.00417 (38%) | DB: 0.00065 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 14:59:42) [GET]
+  Session ID: 0203e98bb0e6a21fd53fb9b9c3452784
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000630)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01206 (82 reqs/sec) | Rendering: 0.00408 (33%) | DB: 0.00063 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 15:00:50) [GET]
+  Session ID: 19960ff2cb488336a2db67bff41775d3
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000621)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01011 (98 reqs/sec) | Rendering: 0.00392 (38%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 15:01:07) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000655)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.12596 (7 reqs/sec) | Rendering: 0.00409 (3%) | DB: 0.00066 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 15:01:14) [GET]
+  Session ID: 6ade9a021f9bb045e0a56a9161b08768
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000622)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01026 (97 reqs/sec) | Rendering: 0.00399 (38%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 15:02:02) [GET]
+  Session ID: 7e2b988108f0a82a903614b1cac5ff9b
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000653)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01034 (96 reqs/sec) | Rendering: 0.00407 (39%) | DB: 0.00065 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 15:03:36) [GET]
+  Session ID: d8aafce7f4a86f925d8f2ae203287390
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.025258)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Rendering template within layouts/dogs
+Rendering dogs/index
+Completed in 1.06926 (0 reqs/sec) | Rendering: 0.10134 (9%) | DB: 0.02526 (2%) | 200 OK [http://localhost/dogs]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 15:04:31) [GET]
+  Session ID: 9b76887eebbdf01e9adb8dadc6208e03
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000944)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.31041 (3 reqs/sec) | Rendering: 0.27245 (87%) | DB: 0.00094 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 15:16:29) [GET]
+  Session ID: 8412d9d076cd88ca9ecb445b4cf3eb75
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.001075)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.02637 (37 reqs/sec) | Rendering: 0.00718 (27%) | DB: 0.00108 (4%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:05:50) [GET]
+  Session ID: 1946ab0928e41d1baf9da65ad46892a6
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000993)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.15657 (6 reqs/sec) | Rendering: 0.14281 (91%) | DB: 0.00099 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:11:26) [GET]
+  Session ID: fe98de61363295f1fd761649dfe6cec5
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000958)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.10882 (9 reqs/sec) | Rendering: 0.09886 (90%) | DB: 0.00096 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:14:45) [GET]
+  Session ID: 0b65d22becde6fcd612a184d7c226b42
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000672)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.02052 (48 reqs/sec) | Rendering: 0.00827 (40%) | DB: 0.00067 (3%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:18:13) [GET]
+  Session ID: 923d2fd4bf0cc2720feb3661883df646
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000828)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01219 (82 reqs/sec) | Rendering: 0.00477 (39%) | DB: 0.00083 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:20:14) [GET]
+  Session ID: b41fdf1f92b5c5c4c9cb4ef1e6ea4289
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000644)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01080 (92 reqs/sec) | Rendering: 0.00431 (39%) | DB: 0.00064 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:20:32) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000773)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01124 (88 reqs/sec) | Rendering: 0.00437 (38%) | DB: 0.00077 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:21:02) [GET]
+  Session ID: 0dd51e0d5923dacc56e22d9eacf4d06d
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000766)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01183 (84 reqs/sec) | Rendering: 0.00479 (40%) | DB: 0.00077 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:26:29) [GET]
+  Session ID: c4ebbbced9a5a451deffdc57311be8bb
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000706)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.15612 (6 reqs/sec) | Rendering: 0.00458 (2%) | DB: 0.00071 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:28:14) [GET]
+  Session ID: 9ce63f58e6fe765e930ff105e07ccf2c
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000641)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01413 (70 reqs/sec) | Rendering: 0.00413 (29%) | DB: 0.00064 (4%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:29:52) [GET]
+  Session ID: df4bb3e45cf54e0f4518e216fc1ab0f1
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000675)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01118 (89 reqs/sec) | Rendering: 0.00443 (39%) | DB: 0.00067 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:32:03) [GET]
+  Session ID: 7f7e4f0cfc3e29eaedf231799eda8cb4
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000651)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01137 (87 reqs/sec) | Rendering: 0.00468 (41%) | DB: 0.00065 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:39:11) [GET]
+  Session ID: 860c4154fc24bbb95b4879eaa449645e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000681)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01168 (85 reqs/sec) | Rendering: 0.00427 (36%) | DB: 0.00068 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 16:58:01) [GET]
+  Session ID: e190320e2ef57180c82531cb2f87787e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000780)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01102 (90 reqs/sec) | Rendering: 0.00434 (39%) | DB: 0.00078 (7%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:00:03) [GET]
+  Session ID: fe0cfc3862ecbfcdebac054cf2c8cfaf
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000652)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01112 (89 reqs/sec) | Rendering: 0.00436 (39%) | DB: 0.00065 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:05:38) [GET]
+  Session ID: 750dcdfb16885e5b3d05b6c1b90e9f67
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000658)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01093 (91 reqs/sec) | Rendering: 0.00436 (39%) | DB: 0.00066 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:09:04) [GET]
+  Session ID: 384b51a13fc8e606ad0715887bbd667f
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000635)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.13917 (7 reqs/sec) | Rendering: 0.00403 (2%) | DB: 0.00063 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:10:37) [GET]
+  Session ID: e73bad93a8b22dc8f36983d32e94ef76
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000658)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01114 (89 reqs/sec) | Rendering: 0.00440 (39%) | DB: 0.00066 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:14:23) [GET]
+  Session ID: 52236044e1b5432090fd130e188a4b11
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000674)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01170 (85 reqs/sec) | Rendering: 0.00435 (37%) | DB: 0.00067 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:19:02) [GET]
+  Session ID: a6a833b1e667a88f81b5ce6a639a7a80
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000642)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01110 (90 reqs/sec) | Rendering: 0.00429 (38%) | DB: 0.00064 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:19:59) [GET]
+  Session ID: cbd2c67ab2fb378d398d5f8e589c6f6a
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.026614)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.03694 (27 reqs/sec) | Rendering: 0.00428 (11%) | DB: 0.02661 (72%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:21:17) [GET]
+  Session ID: 47458f406d3e9eb778797fd8f2f64455
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000686)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01147 (87 reqs/sec) | Rendering: 0.00470 (40%) | DB: 0.00069 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:23:11) [GET]
+  Session ID: e0cd34f8994fc95e41a71da86d45f3ff
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000740)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01218 (82 reqs/sec) | Rendering: 0.00437 (35%) | DB: 0.00074 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:25:40) [GET]
+  Session ID: 1d0396b29b53669cb15f322976002ec1
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000661)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01094 (91 reqs/sec) | Rendering: 0.00440 (40%) | DB: 0.00066 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-13 17:28:48) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;judge&quot;, &quot;dog_id&quot;=&gt;&quot;7&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000219)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+
+
+NoMethodError (undefined method `dog_id=' for #&lt;Dog:0x3872d5c&gt;):
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:251:in `method_missing'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `send'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `attributes='
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `each'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `attributes='
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2261:in `update_attributes'
+    /app/controllers/dogs_controller.rb:63:in `update'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `call'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `respond_to'
+    /app/controllers/dogs_controller.rb:62:in `update'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /Library/Ruby/Gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `require'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /Library/Ruby/Gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:28:50) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000622)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01022 (97 reqs/sec) | Rendering: 0.00397 (38%) | DB: 0.00062 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:29:08) [GET]
+  Session ID: 38b6b2c08c0a1756b6ba48ea6820afab
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000625)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Rendering template within layouts/dogs
+Rendering dogs/index
+Completed in 0.04019 (24 reqs/sec) | Rendering: 0.03252 (80%) | DB: 0.00063 (1%) | 200 OK [http://localhost/dogs]
+
+
+Processing DogsController#show (for 127.0.0.1 at 2008-10-13 17:29:27) [GET]
+  Session ID: BAh7BzoMY3NyZl9pZCIlNjdiYjIxMGMyMzJkYzg4YjlkNTEzN2IxMDczMWI0
+OGUiCmZsYXNoSUM6J0FjdGlvbkNvbnRyb2xsZXI6OkZsYXNoOjpGbGFzaEhh
+c2h7AAY6CkB1c2VkewA=--21a6ddf94754b0d5772fd40e112a5bfc72504f97
+  Parameters: {&quot;action&quot;=&gt;&quot;show&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000210)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+Rendering template within layouts/dogs
+Rendering dogs/show
+Completed in 0.02229 (44 reqs/sec) | Rendering: 0.01548 (69%) | DB: 0.00021 (0%) | 200 OK [http://localhost/dogs/7]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:32:55) [GET]
+  Session ID: 2c53cb4a0ff14bb2c5c68ea86b146dad
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000668)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01385 (72 reqs/sec) | Rendering: 0.00527 (38%) | DB: 0.00067 (4%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 17:36:36) [GET]
+  Session ID: a46b326fac24b6c9ff02942e4147f177
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000695)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01140 (87 reqs/sec) | Rendering: 0.00418 (36%) | DB: 0.00069 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 19:40:31) [GET]
+  Session ID: 9ae3650b04aa92b2e2cba05f6c0be68c
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000953)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.16007 (6 reqs/sec) | Rendering: 0.14892 (93%) | DB: 0.00095 (0%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-13 19:41:08) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;judge&quot;, &quot;dog_id&quot;=&gt;&quot;7&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000237)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+
+
+NoMethodError (undefined method `dog_id=' for #&lt;Dog:0x36269b8&gt;):
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/attribute_methods.rb:251:in `method_missing'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `send'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2361:in `attributes='
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `each'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2360:in `attributes='
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/base.rb:2261:in `update_attributes'
+    /app/controllers/dogs_controller.rb:63:in `update'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `call'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/mime_responds.rb:106:in `respond_to'
+    /app/controllers/dogs_controller.rb:62:in `update'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `send'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:1162:in `perform_action_without_filters'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:580:in `call_filters'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:573:in `perform_action_without_benchmark'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/rescue.rb:201:in `perform_action_without_caching'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:13:in `perform_action'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
+    /Library/Ruby/Gems/1.8/gems/activerecord-2.1.0/lib/active_record/query_cache.rb:8:in `cache'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/caching/sql_cache.rb:12:in `perform_action'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `send'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:529:in `process_without_filters'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/filters.rb:569:in `process_without_session_management_support'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/session_management.rb:130:in `process'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/base.rb:389:in `process'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:149:in `handle_request'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:107:in `dispatch'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `synchronize'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:104:in `dispatch'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:120:in `dispatch_cgi'
+    /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/dispatcher.rb:35:in `dispatch'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:76:in `process'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `synchronize'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/../lib/mongrel/rails.rb:74:in `process'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:159:in `process_client'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `each'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:158:in `process_client'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `initialize'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `new'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:285:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `initialize'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `new'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel.rb:268:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:282:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `each'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/configurator.rb:281:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:128:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/lib/mongrel/command.rb:212:in `run'
+    /Library/Ruby/Gems/1.8/gems/mongrel-1.1.5/bin/mongrel_rails:281
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:502:in `load'
+    /Library/Ruby/Gems/1.8/gems/rails-2.1.0/lib/commands/servers/mongrel.rb:64
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `require'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:354:in `new_constants_in'
+    /Library/Ruby/Gems/1.8/gems/activesupport-2.1.0/lib/active_support/dependencies.rb:509:in `require'
+    /Library/Ruby/Gems/1.8/gems/rails-2.1.0/lib/commands/server.rb:39
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
+    /Library/Ruby/Site/1.8/rubygems/custom_require.rb:27:in `require'
+    script/server:3
+
+Rendering /Library/Ruby/Gems/1.8/gems/actionpack-2.1.0/lib/action_controller/templates/rescues/layout.erb (internal_server_error)
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 19:45:32) [GET]
+  Session ID: 15c122f031d17c68db31a8cd59f09963
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.003595)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.02252 (44 reqs/sec) | Rendering: 0.00485 (21%) | DB: 0.00359 (15%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 19:58:26) [GET]
+  Session ID: 6f8e840f9af8f17c5d0e3c4d7f2aed89
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000663)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01100 (90 reqs/sec) | Rendering: 0.00424 (38%) | DB: 0.00066 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 19:58:34) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000656)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01103 (90 reqs/sec) | Rendering: 0.00432 (39%) | DB: 0.00066 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-13 19:58:49) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;judge&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000251)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+Completed in 0.01206 (82 reqs/sec) | Rendering: 0.00030 (2%) | DB: 0.00025 (2%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 19:59:25) [GET]
+  Session ID: ce5a76e53e1e741d6a0f1b99f458e079
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000689)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01129 (88 reqs/sec) | Rendering: 0.00434 (38%) | DB: 0.00069 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 19:59:45) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000628)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01026 (97 reqs/sec) | Rendering: 0.00393 (38%) | DB: 0.00063 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-13 19:59:58) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;judge&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000675)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+Completed in 0.01222 (81 reqs/sec) | Rendering: 0.00035 (2%) | DB: 0.00067 (5%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:00:30) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGRg==--48c096ada76bfa6d736099b289c1ecc0694753b5
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000676)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01032 (96 reqs/sec) | Rendering: 0.00396 (38%) | DB: 0.00068 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-13 20:00:47) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGVA==--717819e3a1f5572f8b654a3365a8924bf061ac2e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;judge&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000231)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+Completed in 0.01011 (98 reqs/sec) | Rendering: 0.00036 (3%) | DB: 0.00023 (2%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:00:50) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGRg==--48c096ada76bfa6d736099b289c1ecc0694753b5
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000633)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01037 (96 reqs/sec) | Rendering: 0.00403 (38%) | DB: 0.00063 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:00:54) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGVA==--717819e3a1f5572f8b654a3365a8924bf061ac2e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000636)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01084 (92 reqs/sec) | Rendering: 0.00435 (40%) | DB: 0.00064 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:00:56) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000623)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01063 (94 reqs/sec) | Rendering: 0.00427 (40%) | DB: 0.00062 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:01:08) [GET]
+  Session ID: 92f50dc15b67d836cc2c77be22237ef4
+  Parameters: {&quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000633)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Rendering template within layouts/dogs
+Rendering dogs/index
+Completed in 0.03902 (25 reqs/sec) | Rendering: 0.03116 (79%) | DB: 0.00063 (1%) | 200 OK [http://localhost/dogs]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:01:54) [GET]
+  Session ID: b9f0895689dc46d2897f80e11788fdd1
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000846)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01153 (86 reqs/sec) | Rendering: 0.00462 (40%) | DB: 0.00085 (7%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:02:12) [GET]
+  Session ID: aea4f5483b72e8decb2f79ec579c363c
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000660)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01236 (80 reqs/sec) | Rendering: 0.00425 (34%) | DB: 0.00066 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-13 20:02:33) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;judge&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000348)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+Completed in 0.00961 (104 reqs/sec) | Rendering: 0.00032 (3%) | DB: 0.00035 (3%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:03:45) [GET]
+  Session ID: 04bf972976b9307fe875c089bdea5e6f
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000659)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01259 (79 reqs/sec) | Rendering: 0.00589 (46%) | DB: 0.00066 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#update (for 127.0.0.1 at 2008-10-13 20:03:58) [PUT]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;update&quot;, &quot;id&quot;=&gt;&quot;7&quot;, &quot;dog&quot;=&gt;{&quot;name&quot;=&gt;&quot;Goblin&quot;}, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000227)*[0m   *[0mSELECT * FROM &quot;dogs&quot; WHERE (&quot;dogs&quot;.&quot;id&quot; = 7) *[0m
+  *[4;36;1mDog Update (0.000465)*[0m   *[0;1mUPDATE &quot;dogs&quot; SET &quot;name&quot; = 'Goblin', &quot;updated_at&quot; = '2008-10-14 00:03:58' WHERE &quot;id&quot; = 7*[0m
+Completed in 0.01214 (82 reqs/sec) | Rendering: 0.00028 (2%) | DB: 0.00069 (5%) | 200 OK [http://localhost/dogs/7.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:04:07) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsGOgtub3RpY2UiIkRvZyB3YXMgc3VjY2Vzc2Z1bGx5IHVwZGF0ZWQu
+BjoKQHVzZWR7BjsGRg==--48c096ada76bfa6d736099b289c1ecc0694753b5
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000663)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01077 (92 reqs/sec) | Rendering: 0.00434 (40%) | DB: 0.00066 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:18:26) [GET]
+  Session ID: 2a50381072ed1563b65c2b764a18374e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.116828)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.76166 (1 reqs/sec) | Rendering: 0.19759 (25%) | DB: 0.11683 (15%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:18:36) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.001520)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.08518 (11 reqs/sec) | Rendering: 0.02122 (24%) | DB: 0.00152 (1%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:21:30) [GET]
+  Session ID: 3af94688ecdea58c763f0f35f874899e
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.003084)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.06097 (16 reqs/sec) | Rendering: 0.01056 (17%) | DB: 0.00308 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:21:45) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.003244)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.06877 (14 reqs/sec) | Rendering: 0.00933 (13%) | DB: 0.00324 (4%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:24:21) [GET]
+  Session ID: cb46781487b32fc38dd689ab4ce0647c
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.001588)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.09007 (11 reqs/sec) | Rendering: 0.02845 (31%) | DB: 0.00159 (1%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:24:31) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.001610)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.07833 (12 reqs/sec) | Rendering: 0.01415 (18%) | DB: 0.00161 (2%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:26:41) [GET]
+  Session ID: 9eef8d0ff2641573c8adac3f5d1a4f49
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.001398)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.05136 (19 reqs/sec) | Rendering: 0.01185 (23%) | DB: 0.00140 (2%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:26:52) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000635)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01085 (92 reqs/sec) | Rendering: 0.00424 (39%) | DB: 0.00064 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:27:25) [GET]
+  Session ID: d301a9f3f3b7b168335e110e1dd4687d
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000720)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01103 (90 reqs/sec) | Rendering: 0.00440 (39%) | DB: 0.00072 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:27:33) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000647)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01098 (91 reqs/sec) | Rendering: 0.00422 (38%) | DB: 0.00065 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:27:42) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000683)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01173 (85 reqs/sec) | Rendering: 0.00444 (37%) | DB: 0.00068 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:28:51) [GET]
+  Session ID: 4734cab8429e07a108b11c06756a369f
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000648)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01074 (93 reqs/sec) | Rendering: 0.00421 (39%) | DB: 0.00065 (6%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:28:59) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;36;1mDog Load (0.000644)*[0m   *[0;1mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01246 (80 reqs/sec) | Rendering: 0.00416 (33%) | DB: 0.00064 (5%) | 200 OK [http://localhost/dogs.xml?(null)]
+
+
+Processing DogsController#index (for 127.0.0.1 at 2008-10-13 20:29:09) [GET]
+  Session ID: BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNo
+SGFzaHsABjoKQHVzZWR7AA==--b153e522dc482325fda374199ab30ee4e4508970
+  Parameters: {&quot;format&quot;=&gt;&quot;xml&quot;, &quot;(null)&quot;=&gt;nil, &quot;action&quot;=&gt;&quot;index&quot;, &quot;controller&quot;=&gt;&quot;dogs&quot;}
+  *[4;35;1mDog Load (0.000645)*[0m   *[0mSELECT * FROM &quot;dogs&quot; *[0m
+Completed in 0.01085 (92 reqs/sec) | Rendering: 0.00429 (39%) | DB: 0.00065 (5%) | 200 OK [http://localhost/dogs.xml?(null)]</diff>
      <filename>sample_rails_app/log/development.log</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>1d320d51eb9b5bfcca3783af370fb19682c5a857</id>
    </parent>
  </parents>
  <author>
    <name>James Burka</name>
    <email>jjburka@burkabook.local</email>
  </author>
  <url>http://github.com/yfactorial/objectiveresource/commit/0c77860562a031ab3697ee40330b8c11fa38d884</url>
  <id>0c77860562a031ab3697ee40330b8c11fa38d884</id>
  <committed-date>2008-10-14T12:34:51-07:00</committed-date>
  <authored-date>2008-10-13T17:33:13-07:00</authored-date>
  <message>Added when building model puts the id in modelNameId and made normal toXml operation ignore it. Added Edit dog view
(cherry picked from commit 93d4695552cc69dfe7804a8bc5b1636112f998c4)</message>
  <tree>daac19519cc936475ae994cf773a699583359564</tree>
  <committer>
    <name>vickeryj</name>
    <email>vickeryj@j-macbook.local</email>
  </committer>
</commit>
